Skip to content

Commit

Permalink
Merge pull request #134 from Boerderij/develop
Browse files Browse the repository at this point in the history
v1.7.1 Merge
  • Loading branch information
dirtycajunrice authored Jun 4, 2019
2 parents a0c1cdf + d29b112 commit 31316f1
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ko_fi: varken
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:**

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<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>

[![Build Status](https://jenkins.cajun.pro/buildStatus/icon?job=Varken/master)](https://jenkins.cajun.pro/job/Varken/job/master/)
Expand Down
Binary file added assets/varken_full_banner.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/varken_full_banner_transparent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/varken_head_only transparent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/varken_head_only_primary_discord.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/varken_original.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion varken/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = "1.7.0"
VERSION = "1.7.1"
BRANCH = 'master'
2 changes: 1 addition & 1 deletion varken/sonarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down

0 comments on commit 31316f1

Please sign in to comment.