Skip to content

Commit 73b9927

Browse files
authored
Merge pull request #80 from ikifar2012/dev
2022.12.0
2 parents 11c6f85 + 17d9c1d commit 73b9927

4 files changed

Lines changed: 17 additions & 8 deletions

File tree

remote-backup/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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

remote-backup/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
squash: false
22
build_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
88
codenotary:
99
signer: cas@mathesonsteplock.ca
1010
base_image: codenotary@frenck.dev

remote-backup/config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Remote Backup
2-
version: "2022.9.5"
2+
version: "2022.12.0"
33
slug: remote_backup
44
description: Automatically create and transfer HA backups using SFTP (SCP), rsync, or rclone (experimental)
55
image: 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?

remote-backup/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ function clone-to-remote {
286286
}
287287

288288
function 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

0 commit comments

Comments
 (0)