Skip to content

Commit

Permalink
Develop to master v2 (#7)
Browse files Browse the repository at this point in the history
* Boerderij#203

* Update docker compose to specify influxdb:1.8.4

* Update requirements to use urllib3==1.26.5

* updated to support Radarr and Sonarr V3 Api

* bump requirements for requests

* Fix Sonarr & Radarr V3 API /queue endpoint (Boerderij#220)

* Fix lint issues

* More lint fixes

* Update Sonarr structures

* Add Overseerr Support (Boerderij#210)

* Remove duplicate structures

* update changelog to reflect v1.7.7 changes

* Add IP data to tautulli Boerderij#202

* add missing ip address in tautulli

* Fixed: Streamlined API calls to Radarr and Sonarr (Boerderij#221)

* Fixed: Sonarr Data pull issues (Boerderij#222)

* Fix Sonarrr calendar

* Update lidarr structure (Boerderij#225)

Added missing arguments to Lidarr structure

Fixes Boerderij#223

* Clean up request totals. Upstream change sct/overseerr#2426

* Cleanup blank space

* Fix requested_date syntax.

* Fix requested_date for Overseerr tv and movie

* Fix overseerr config refernces

* Fix overseerr structures

* Update intparser to accommodate changes to config structure

* Cleanup overseerr data collection

* Fix SERVICES_ENABLED in varken.py to acomidate overseerr

* Fixed: Sonarr/Lidarr Queues (Boerderij#227)

* Change sonarr queue structures to str

* Fixed: Multipage queue fetching

* Update historical tautulli import (Boerderij#226)

* Fixed: Sonarr perams ordering

* Fixed: Proper warnings for missing data in sonarr and radarr

* Added: Overseerr ENVs to docker compose.

* Added: Logging to empty/no data returns

* Update Sonarr & Lidarr Structs to match latest API changes (Boerderij#231)

* Add support for estimatedCompletionTime in LidarrQueue

* Add support for tvdbId in SonarrEpisode struct

* Fix typo in docker yml

* Rename example url for overseerr in docker yml

* Update radarr structures to inclue originalLanguage

* Update radarr structures to include addOptions

* Update radarr structures to include popularity

* fix(ombi): Update structures.py (Boerderij#238)

* feat(docker): remove envs from example

* fix(logging): remove depreciation warning. Var for debug mode (Boerderij#240)

* fix(build): bump schedule version to 1.1

* fix(build): bump docker python version

* fix(dep): update requests and urllib3

* fix(sonarr): ensure invalid sonarr queue items are just skipped over - fixes Boerderij#239 (Boerderij#243)

* Update structures.py

watchedByRequestedUser error

* changed repo, changed maintainer, referenced original

* rename action

* Add runtime keyword to SonarrEpisode structure (Boerderij#251)

* Bump requests to 2.31.0

* Update structures.py for latest Ombi typeerror on playedByUsersCount and watchedByRequestedUser (Boerderij#256)

* Update action.yml

---------

Co-authored-by: mal5305 <[email protected]>
Co-authored-by: samwiseg0 <[email protected]>
Co-authored-by: Robin <[email protected]>
Co-authored-by: tigattack <[email protected]>
Co-authored-by: Stewart Thomson <[email protected]>
Co-authored-by: Cameron Stephen <[email protected]>
Co-authored-by: Nathan Adams <[email protected]>
Co-authored-by: wtf0722 <[email protected]>
Co-authored-by: Dir <[email protected]>
  • Loading branch information
10 people authored Aug 7, 2024
1 parent 3679c38 commit 357895e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/docker-target-image-list-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ inputs:
registries:
description: "Comma separated list of docker registries"
required: false
default: "docker.io,quay.io,ghcr.io"
# default: "docker.io,quay.io,ghcr.io"
default: "docker.io,ghcr.io"
images:
description: "Comma separated list of images"
required: true
Expand Down
2 changes: 2 additions & 0 deletions varken/structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ class OmbiMovieRequest(NamedTuple):
markedAsDenied: str = None
markedAsDenied4K: str = None
overview: str = None
playedByUsersCount: int = None
posterPath: str = None
qualityOverride: int = None
released: bool = None
Expand Down Expand Up @@ -258,6 +259,7 @@ class SonarrEpisode(NamedTuple):
hasFile: bool = None
id: int = None
monitored: bool = None
runtime: int = None
overview: str = None
seasonNumber: int = None
seriesId: int = None
Expand Down

0 comments on commit 357895e

Please sign in to comment.