diff --git a/.github/stale-dontuse.yml b/.github/stale-dontuse.yml new file mode 100644 index 0000000..6fd896d --- /dev/null +++ b/.github/stale-dontuse.yml @@ -0,0 +1,18 @@ +# Configuration for probot-stale - https://github.com/probot/stale + +# Number of days of inactivity before an Issue or Pull Request becomes stale +daysUntilStale: 31 +# Number of days of inactivity before a stale Issue or Pull Request is closed +daysUntilClose: 14 +# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) +onlyLabels: + - waiting for info + - wontfix + +# Label to use when marking as stale +staleLabel: inactive + +# Comment to post when marking as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as inactive because it has not had + recent activity. It will be closed if no further activity occurs. \ No newline at end of file diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..c299070 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +dist: xenial +language: python +python: 3.7 + +install: + - pip install kodi-addon-checker + +before_script: +- git config core.quotepath false + +# command to run our tests +script: + - kodi-addon-checker --branch=krypton --allow-folder-id-mismatch \ No newline at end of file diff --git a/README.md b/README.md index 053be07..60fd4c9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ # Backup Addon +[![Build Status](https://travis-ci.org/robweber/xbmcbackup.svg?branch=master)](https://travis-ci.org/robweber/xbmcbackup) + +__Kodi Version Compatibility:__ Kodi 17.x (Krypton) and greater __Kodi Version Compatibility:__ Kodi 17.x (Krypton) and greater diff --git a/addon.xml b/addon.xml index 1f44f0a..f1e7dbb 100644 --- a/addon.xml +++ b/addon.xml @@ -1,6 +1,6 @@  + name="Backup" version="1.5.0" provider-name="robweber"> diff --git a/changelog.txt b/changelog.txt index a0e6608..5fe992a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +Version 1.5.0 + +Overhaul of file selection and restore procedures. Breaking Change with previous versions PR117 + Version 1.1.3 added file chunk support for dropbox uploads diff --git a/resources/images/screenshot1.png b/resources/images/screenshot1.png new file mode 100644 index 0000000..268acda Binary files /dev/null and b/resources/images/screenshot1.png differ diff --git a/resources/images/screenshot2.png b/resources/images/screenshot2.png new file mode 100644 index 0000000..08ae592 Binary files /dev/null and b/resources/images/screenshot2.png differ diff --git a/resources/images/screenshot3.png b/resources/images/screenshot3.png new file mode 100644 index 0000000..2861573 Binary files /dev/null and b/resources/images/screenshot3.png differ diff --git a/resources/images/screenshot4.PNG b/resources/images/screenshot4.PNG index 7b09988..e8e32df 100644 Binary files a/resources/images/screenshot4.PNG and b/resources/images/screenshot4.PNG differ diff --git a/resources/images/screenshot4.png b/resources/images/screenshot4.png new file mode 100644 index 0000000..e8e32df Binary files /dev/null and b/resources/images/screenshot4.png differ diff --git a/resources/images/screenshot5.png b/resources/images/screenshot5.png new file mode 100644 index 0000000..0b7ccc8 Binary files /dev/null and b/resources/images/screenshot5.png differ diff --git a/resources/images/screenshot6.png b/resources/images/screenshot6.png new file mode 100644 index 0000000..1e33b0c Binary files /dev/null and b/resources/images/screenshot6.png differ diff --git a/resources/language/resource.language.en_gb/strings.po b/resources/language/resource.language.en_gb/strings.po index 2be2b52..1159d2d 100644 --- a/resources/language/resource.language.en_gb/strings.po +++ b/resources/language/resource.language.en_gb/strings.po @@ -518,7 +518,7 @@ msgid "Choose Sets to Restore" msgstr "" msgctxt "#30132" -msgid "Version 1.1.4 requires you to setup your file selections again - this is a breaking change" +msgid "Version 1.5.0 requires you to setup your file selections again - this is a breaking change" msgstr "" msgctxt "#30133" diff --git a/resources/settings.xml b/resources/settings.xml index 6867b3e..d45c3a2 100644 --- a/resources/settings.xml +++ b/resources/settings.xml @@ -4,7 +4,7 @@ - + @@ -14,8 +14,8 @@ - - + + diff --git a/scheduler.py b/scheduler.py index cf9adb1..0c5acb3 100644 --- a/scheduler.py +++ b/scheduler.py @@ -7,7 +7,7 @@ import resources.lib.utils as utils from resources.lib.croniter import croniter from resources.lib.backup import XbmcBackup -UPGRADE_INT = 1 #to keep track of any upgrade notifications +UPGRADE_INT = 2 #to keep track of any upgrade notifications class BackupScheduler: monitor = None