File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # 2022.12.0
2+
3+ - Bump Base Image to 13.0.0
4+ - extend connection debug messages #77
5+ - Logo #78
6+ - Add null option #83
7+
8+ ** Full Changelog** : https://github.com/ikifar2012/remote-backup-addon/compare/2022.9.4...2022.12.0
9+
110# 2022.9.4
211
312- Message typo fix #73
Original file line number Diff line number Diff line change 11squash : false
22build_from :
3- aarch64 : ghcr.io/hassio-addons/base/aarch64:12.2.3
4- amd64 : ghcr.io/hassio-addons/base/amd64:12.2.3
5- armhf : ghcr.io/hassio-addons/base/armhf:12.2.3
6- armv7 : ghcr.io/hassio-addons/base/armv7:12.2.3
7- i386 : ghcr.io/hassio-addons/base/i386:12.2.3
3+ aarch64 : ghcr.io/hassio-addons/base/aarch64:13.0.0
4+ amd64 : ghcr.io/hassio-addons/base/amd64:13.0.0
5+ armhf : ghcr.io/hassio-addons/base/armhf:13.0.0
6+ armv7 : ghcr.io/hassio-addons/base/armv7:13.0.0
7+ i386 : ghcr.io/hassio-addons/base/i386:13.0.0
88codenotary :
99 signer : cas@mathesonsteplock.ca
1010 base_image : codenotary@frenck.dev
Original file line number Diff line number Diff line change 11name : Remote Backup
2- version : " 2022.9.5 "
2+ version : " 2022.12.0 "
33slug : remote_backup
44description : Automatically create and transfer HA backups using SFTP (SCP), rsync, or rclone (experimental)
55image : ikifar/remote-backup-{arch}
@@ -56,7 +56,7 @@ schema:
5656 - match(^[A-Za-z0-9_\-\.\*\/\?\+\\ ]*$)?
5757 backup_exclude_addons :
5858 - str?
59- backup_keep_local : match(^(all|[+]?\d*)$)?
59+ backup_keep_local : match(^(all|null| [+]?\d*)$)?
6060 backup_password : str?
6161 ssh_enabled : bool
6262 ssh_remote_directory : str?
Original file line number Diff line number Diff line change @@ -286,7 +286,7 @@ function clone-to-remote {
286286}
287287
288288function delete-local-backup {
289- if bashio::config.equals " backup_keep_local" " all" ; then
289+ if bashio::config.equals " backup_keep_local" " all" || bashio::config.equals " backup_keep_local " " null " ; then
290290 bashio::log.debug " Keep all backups."
291291 return " ${__BASHIO_EXIT_OK} "
292292 fi
You can’t perform that action at this time.
0 commit comments