Skip to content

Commit 31316f1

Browse files
Merge pull request #134 from Boerderij/develop
v1.7.1 Merge
2 parents a0c1cdf + d29b112 commit 31316f1

File tree

10 files changed

+17
-5
lines changed

10 files changed

+17
-5
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ko_fi: varken

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
# Change Log
22

3-
## [v1.7.0](https://github.com/Boerderij/Varken/tree/v1.7.0) (2019-05-05)
4-
[Full Changelog](https://github.com/Boerderij/Varken/compare/1.6.8...v1.7.0)
3+
## [v1.7.1](https://github.com/Boerderij/Varken/tree/v1.7.1) (2019-06-03)
4+
[Full Changelog](https://github.com/Boerderij/Varken/compare/1.7.0...v1.7.1)
5+
6+
**Fixed bugs:**
7+
8+
- \[BUG\] Sonarr Missing episodes column ordering is incorrect [\#133](https://github.com/Boerderij/Varken/pull/133) ([nicolerenee](https://github.com/nicolerenee))
9+
10+
**Merged pull requests:**
11+
12+
- v1.7.1 Merge [\#134](https://github.com/Boerderij/Varken/pull/134) ([DirtyCajunRice](https://github.com/DirtyCajunRice))
13+
14+
## [1.7.0](https://github.com/Boerderij/Varken/tree/1.7.0) (2019-05-06)
15+
[Full Changelog](https://github.com/Boerderij/Varken/compare/1.6.8...1.7.0)
516

617
**Implemented enhancements:**
718

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img width="800" src="https://bin.cajun.pro/images/varken_full_banner.png" alt="Logo Banner">
2+
<img width="800" src="https://raw.githubusercontent.com/Boerderij/Varken/develop/assets/varken_full_banner.jpg" alt="Logo Banner">
33
</p>
44

55
[![Build Status](https://jenkins.cajun.pro/buildStatus/icon?job=Varken/master)](https://jenkins.cajun.pro/job/Varken/job/master/)

assets/varken_full_banner.jpg

64.1 KB
Loading
110 KB
Loading
52.1 KB
Loading
38.8 KB
Loading

assets/varken_original.jpg

69.1 KB
Loading

varken/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION = "1.7.0"
1+
VERSION = "1.7.1"
22
BRANCH = 'master'

varken/sonarr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def get_calendar(self, query="Missing"):
5555
downloaded = 0
5656
if query == "Missing":
5757
if not downloaded:
58-
missing.append((show.series['title'], downloaded, sxe, show.airDateUtc, show.title, show.id))
58+
missing.append((show.series['title'], downloaded, sxe, show.title, show.airDateUtc, show.id))
5959
else:
6060
air_days.append((show.series['title'], downloaded, sxe, show.title, show.airDateUtc, show.id))
6161

0 commit comments

Comments
 (0)