From 0e6f5acfb562f120f0388da506a931c3698b9713 Mon Sep 17 00:00:00 2001 From: robweber Date: Mon, 15 Jun 2020 20:44:41 -0500 Subject: [PATCH 1/9] added deploy script using kodi-addon-submitter --- .travis.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1096a49..7e05cfc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: python python: 3.7 install: - - pip install flake8 kodi-addon-checker + - pip install flake8 kodi-addon-checker git+https://github.com/romanvm/kodi-addon-submitter.git before_script: - git config core.quotepath false @@ -11,4 +11,10 @@ before_script: # command to run our tests script: - flake8 ./ --statistics --show-source --builtins=sys --ignore=E501,E722 --exclude=croniter.py # check python structure against flake8 tests, ignore long lines - - kodi-addon-checker --branch=matrix --allow-folder-id-mismatch \ No newline at end of file + - kodi-addon-checker --branch=matrix --allow-folder-id-mismatch + + deploy: + - provider: script + script: submit-addon -r repo-plugins -b matrix --push-branch script.xbmcbackup + on: + tags: true \ No newline at end of file From 90c458d4fc6c01328955bdae2c8acb9244273cbf Mon Sep 17 00:00:00 2001 From: robweber Date: Mon, 15 Jun 2020 20:46:39 -0500 Subject: [PATCH 2/9] updated changelog.md --- changelog.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/changelog.md b/changelog.md index ad856b4..902b1f6 100644 --- a/changelog.md +++ b/changelog.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +## [Version 1.6.3](https://github.com/robweber/xbmcbackup/compare/matrix-1.6.2...robweber:matrix-1.6.3) - 2020-06-15 + +### Changed + + - fixed validatePath error (issue #166) thanks (thanks @AnonTester) + ## [Version 1.6.2](https://github.com/robweber/xbmcbackup/compare/matrix-1.6.1...robweber:matrix-1.6.2) - 2019-04-09 ### Changed From 1264ab86b244007d18a66b3def10edf16408a55d Mon Sep 17 00:00:00 2001 From: robweber Date: Mon, 15 Jun 2020 20:48:15 -0500 Subject: [PATCH 3/9] space --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7e05cfc..ec8acd5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ script: - flake8 ./ --statistics --show-source --builtins=sys --ignore=E501,E722 --exclude=croniter.py # check python structure against flake8 tests, ignore long lines - kodi-addon-checker --branch=matrix --allow-folder-id-mismatch - deploy: +deploy: - provider: script script: submit-addon -r repo-plugins -b matrix --push-branch script.xbmcbackup on: From af999f7d046e6a65bebb0eed41dcd3fdc3ecded5 Mon Sep 17 00:00:00 2001 From: robweber Date: Mon, 15 Jun 2020 20:56:11 -0500 Subject: [PATCH 4/9] wrong rep --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ec8acd5..bb0cf46 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,6 @@ script: deploy: - provider: script - script: submit-addon -r repo-plugins -b matrix --push-branch script.xbmcbackup + script: submit-addon -r repo-scripts -b matrix --push-branch script.xbmcbackup on: tags: true \ No newline at end of file From 568c3758a43db1db579b64d614c3edb2935be805 Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Tue, 16 Jun 2020 14:54:15 -0500 Subject: [PATCH 5/9] add export-ignore files --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..4509144 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +*.pyo +*.pyc +.project +.pydevproject \ No newline at end of file From 92a9245bdce1174c3ae9c32c991bcb15ad17c075 Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Tue, 16 Jun 2020 15:02:21 -0500 Subject: [PATCH 6/9] added export ignore items --- .gitattributes | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitattributes b/.gitattributes index 4509144..33919ed 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,6 @@ -*.pyo -*.pyc -.project -.pydevproject \ No newline at end of file +.github/ export-ignore +.setting export-ignore +.gitignore export-ignore +.travis.yml export-ignore +README.md export-ignore +changelog.md export-ignore From 18b7f338c7c8337044330e1ac00f11baa45a34da Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Tue, 16 Jun 2020 15:07:16 -0500 Subject: [PATCH 7/9] added attributes file to export-ignore --- .gitattributes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 33919ed..5d247a8 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,6 @@ .github/ export-ignore -.setting export-ignore +.settings/ export-ignore +.gitattributes export-ignore .gitignore export-ignore .travis.yml export-ignore README.md export-ignore From db215873cf7dfab982663f19c94fe8f63c9b4a8b Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Wed, 17 Jun 2020 13:51:49 -0500 Subject: [PATCH 8/9] updated badge path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ff3099..308676e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Backup Addon -![Kodi Version](https://img.shields.io/endpoint?url=https%3A%2F%2Fweberjr.com%2Fkodi-shield%2Frobweber%2Fxbmcbackup%2Fmaster%2Ftrue%2Ftrue) [![Build Status](https://img.shields.io/travis/robweber/xbmcbackup/matrix)](https://travis-ci.org/robweber/xbmcbackup) [![License](https://img.shields.io/github/license/robweber/xbmcbackup)](https://github.com/robweber/xbmcbackup/blob/master/LICENSE.txt) [![PEP8](https://img.shields.io/badge/code%20style-pep8-orange.svg)](https://www.python.org/dev/peps/pep-0008/) +![Kodi Version](https://img.shields.io/endpoint?url=https%3A%2F%2Fweberjr.com%2Fkodi-shield%2Fversion%2Frobweber%2Fxbmcbackup%2Fmatrix%2Ftrue%2Ftrue) [![Build Status](https://img.shields.io/travis/robweber/xbmcbackup/matrix)](https://travis-ci.org/robweber/xbmcbackup) [![License](https://img.shields.io/github/license/robweber/xbmcbackup)](https://github.com/robweber/xbmcbackup/blob/master/LICENSE.txt) [![PEP8](https://img.shields.io/badge/code%20style-pep8-orange.svg)](https://www.python.org/dev/peps/pep-0008/) ## About From 2f19ec2b75aee478e318263d8806e51556f271b8 Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Thu, 18 Jun 2020 15:37:12 -0500 Subject: [PATCH 9/9] added download stats to README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 308676e..fe580c8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Backup Addon -![Kodi Version](https://img.shields.io/endpoint?url=https%3A%2F%2Fweberjr.com%2Fkodi-shield%2Fversion%2Frobweber%2Fxbmcbackup%2Fmatrix%2Ftrue%2Ftrue) [![Build Status](https://img.shields.io/travis/robweber/xbmcbackup/matrix)](https://travis-ci.org/robweber/xbmcbackup) [![License](https://img.shields.io/github/license/robweber/xbmcbackup)](https://github.com/robweber/xbmcbackup/blob/master/LICENSE.txt) [![PEP8](https://img.shields.io/badge/code%20style-pep8-orange.svg)](https://www.python.org/dev/peps/pep-0008/) +![Kodi Version](https://img.shields.io/endpoint?url=https%3A%2F%2Fweberjr.com%2Fkodi-shield%2Fversion%2Frobweber%2Fxbmcbackup%2Fmatrix%2Ftrue%2Ftrue) ![Total Downloads](https://img.shields.io/endpoint?url=https%3A%2F%2Fweberjr.com%2Fkodi-shield%2Fdownloads%2Fmatrix%2Fscript.xbmcbackup%2F1.6.2) [![Build Status](https://img.shields.io/travis/robweber/xbmcbackup/matrix)](https://travis-ci.org/robweber/xbmcbackup) [![License](https://img.shields.io/github/license/robweber/xbmcbackup)](https://github.com/robweber/xbmcbackup/blob/master/LICENSE.txt) [![PEP8](https://img.shields.io/badge/code%20style-pep8-orange.svg)](https://www.python.org/dev/peps/pep-0008/) ## About