Merge pull request #134 from Boerderij/develop

v1.7.1 Merge
This commit is contained in:
Nicholas St. Germain 2019-06-03 19:46:51 -05:00 committed by GitHub
commit 5570721dd8
10 changed files with 17 additions and 5 deletions

1
.github/FUNDING.yml vendored Normal file
View file

@ -0,0 +1 @@
ko_fi: varken

View file

@ -1,7 +1,18 @@
# Change Log # Change Log
## [v1.7.0](https://github.com/Boerderij/Varken/tree/v1.7.0) (2019-05-05) ## [v1.7.1](https://github.com/Boerderij/Varken/tree/v1.7.1) (2019-06-03)
[Full Changelog](https://github.com/Boerderij/Varken/compare/1.6.8...v1.7.0) [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:** **Implemented enhancements:**

View file

@ -1,5 +1,5 @@
<p align="center"> <p align="center">
<img width="800" src="https://bin.cajun.pro/images/varken_full_banner.png" alt="Logo Banner"> <img width="800" src="https://raw.githubusercontent.com/Boerderij/Varken/develop/assets/varken_full_banner.jpg" alt="Logo Banner">
</p> </p>
[![Build Status](https://jenkins.cajun.pro/buildStatus/icon?job=Varken/master)](https://jenkins.cajun.pro/job/Varken/job/master/) [![Build Status](https://jenkins.cajun.pro/buildStatus/icon?job=Varken/master)](https://jenkins.cajun.pro/job/Varken/job/master/)

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
assets/varken_original.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

View file

@ -1,2 +1,2 @@
VERSION = "1.7.0" VERSION = "1.7.1"
BRANCH = 'master' BRANCH = 'master'

View file

@ -55,7 +55,7 @@ class SonarrAPI(object):
downloaded = 0 downloaded = 0
if query == "Missing": if query == "Missing":
if not downloaded: 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: else:
air_days.append((show.series['title'], downloaded, sxe, show.title, show.airDateUtc, show.id)) air_days.append((show.series['title'], downloaded, sxe, show.title, show.airDateUtc, show.id))