diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 00000000..b23a4f64 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +ko_fi: varken diff --git a/CHANGELOG.md b/CHANGELOG.md index 310738ac..c93f2017 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,18 @@ # Change Log -## [v1.7.0](https://github.com/Boerderij/Varken/tree/v1.7.0) (2019-05-05) -[Full Changelog](https://github.com/Boerderij/Varken/compare/1.6.8...v1.7.0) +## [v1.7.1](https://github.com/Boerderij/Varken/tree/v1.7.1) (2019-06-03) +[Full Changelog](https://github.com/Boerderij/Varken/compare/1.7.0...v1.7.1) + +**Fixed bugs:** + +- \[BUG\] Sonarr Missing episodes column ordering is incorrect [\#133](https://github.com/Boerderij/Varken/pull/133) ([nicolerenee](https://github.com/nicolerenee)) + +**Merged pull requests:** + +- v1.7.1 Merge [\#134](https://github.com/Boerderij/Varken/pull/134) ([DirtyCajunRice](https://github.com/DirtyCajunRice)) + +## [1.7.0](https://github.com/Boerderij/Varken/tree/1.7.0) (2019-05-06) +[Full Changelog](https://github.com/Boerderij/Varken/compare/1.6.8...1.7.0) **Implemented enhancements:** diff --git a/README.md b/README.md index 2197e33f..9653cef7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@
- +
[![Build Status](https://jenkins.cajun.pro/buildStatus/icon?job=Varken/master)](https://jenkins.cajun.pro/job/Varken/job/master/) diff --git a/assets/varken_full_banner.jpg b/assets/varken_full_banner.jpg new file mode 100644 index 00000000..c937a3d9 Binary files /dev/null and b/assets/varken_full_banner.jpg differ diff --git a/assets/varken_full_banner_transparent.png b/assets/varken_full_banner_transparent.png new file mode 100644 index 00000000..6da913a5 Binary files /dev/null and b/assets/varken_full_banner_transparent.png differ diff --git a/assets/varken_head_only transparent.png b/assets/varken_head_only transparent.png new file mode 100644 index 00000000..1d559a0a Binary files /dev/null and b/assets/varken_head_only transparent.png differ diff --git a/assets/varken_head_only_primary_discord.png b/assets/varken_head_only_primary_discord.png new file mode 100644 index 00000000..3dd87a26 Binary files /dev/null and b/assets/varken_head_only_primary_discord.png differ diff --git a/assets/varken_original.jpg b/assets/varken_original.jpg new file mode 100644 index 00000000..102e1b77 Binary files /dev/null and b/assets/varken_original.jpg differ diff --git a/varken/__init__.py b/varken/__init__.py index 8b51e035..b906d409 100644 --- a/varken/__init__.py +++ b/varken/__init__.py @@ -1,2 +1,2 @@ -VERSION = "1.7.0" +VERSION = "1.7.1" BRANCH = 'master' diff --git a/varken/sonarr.py b/varken/sonarr.py index 426daf56..463b1ad2 100644 --- a/varken/sonarr.py +++ b/varken/sonarr.py @@ -55,7 +55,7 @@ def get_calendar(self, query="Missing"): downloaded = 0 if query == "Missing": if not downloaded: - missing.append((show.series['title'], downloaded, sxe, show.airDateUtc, show.title, show.id)) + missing.append((show.series['title'], downloaded, sxe, show.title, show.airDateUtc, show.id)) else: air_days.append((show.series['title'], downloaded, sxe, show.title, show.airDateUtc, show.id))