Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/release v1.0.0 #10685

Merged
merged 37 commits into from
May 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
4bec720
Update changelog
p0psicles Apr 12, 2022
51d22a6
Yarn dev
p0psicles Apr 12, 2022
589857e
Merge pull request #10494 from pymedusa/merge-master-dev
p0psicles Apr 12, 2022
9fe760e
Reduce the amount of expected titles created. (#10493)
p0psicles Apr 12, 2022
92f22b8
Add option to use the guessit parser, uncached (#10496)
p0psicles Apr 13, 2022
3cc5211
Fix Plex metadata creation. (#10497)
p0psicles Apr 13, 2022
c286b8c
Feature/trakt json errors (#10498)
p0psicles Apr 15, 2022
c5e1bd6
Feature/debug guessit (#10504)
p0psicles Apr 18, 2022
0b5e9b6
Add logo for ABEMA (#10505)
reconman Apr 18, 2022
3cbc100
Add network logos for Wowow Prime (#10506)
reconman Apr 18, 2022
b77f31f
Run docker container as non-root (#9726)
reconman Apr 18, 2022
de1e6d0
Feature/remove warning plexmatch (#10510)
p0psicles Apr 19, 2022
661a2b4
Fix docker running with and without PUID/PGID (#10515)
p0psicles Apr 20, 2022
b036338
Add option to mass-update the info language. (#10516)
p0psicles Apr 20, 2022
b5b4167
Simplify default values for PUID and PGUID (#10517)
reconman Apr 20, 2022
aff50a3
Optimize docker build pipeline (#10518)
reconman Apr 22, 2022
35d4104
Fix the runs_in_docker flag. (#10522)
p0psicles Apr 22, 2022
ebe1a20
Always overwrite app.BRANCH when we have a commit_branch_env. (#10523)
p0psicles Apr 22, 2022
a94ddce
Fix isoFormat on None. (#10524)
p0psicles Apr 22, 2022
4e6f151
Fix adding older shows. With releases without a startYear. (#10525)
p0psicles Apr 22, 2022
45e697d
Add more logging to parsing (#10528)
p0psicles Apr 23, 2022
445d1e5
Improve test, if we're running in docker (#10531)
p0psicles Apr 24, 2022
cf816bc
Disable guessit cache for postprocessing (#10532)
p0psicles Apr 24, 2022
1d7dd55
Feature/rule for anime season ep (#10534)
p0psicles Apr 27, 2022
ab15a56
Don't overwrite already arhived episodes when postprocessing. (#10533)
p0psicles Apr 29, 2022
dc4dff6
Add config setting to allow overriding xem url. (#10541)
p0psicles Apr 30, 2022
485abc7
Minor typo fix for pymediainfo error output (#10554)
zerojay May 7, 2022
0634044
Changed warning to info. (#10565)
p0psicles May 10, 2022
05bf99c
Strip tt from Imdb ID for Eztv provider (#10578)
medariox May 18, 2022
7a3599e
Feature/fix early wanted (#10668)
p0psicles May 25, 2022
2061388
Fix setting an imdb_id from None or ''. (#10669)
p0psicles May 25, 2022
6da7bfa
Feature/bump mediainfo (#10564)
p0psicles May 31, 2022
4d4b919
Bring back visual indicators for searching, queued and finished. (#10…
p0psicles May 31, 2022
f2494a4
Fix prowlarr typo (#10561)
simonc56 May 31, 2022
f38f377
Feature/remove fallback tmdb (#10684)
p0psicles May 31, 2022
fe1ad2e
Bump version and changelog
p0psicles May 31, 2022
dff114c
yarn build
p0psicles May 31, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ cache/
Dockerfile
dredd/
hooks/
runscripts/
tests/
themes-default/
venv/
Expand Down
33 changes: 0 additions & 33 deletions .github/workflows/docker-image-develop.yml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/docker-image-master.yml

This file was deleted.

57 changes: 57 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Docker Image CI

on:
push:
branches: [ master, develop ]

env:
PLATFORMS: linux/amd64,linux/arm/v7,linux/arm64

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: ${{ env.PLATFORMS }}
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
install: true
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ github.repository_owner }}/medusa
# tag with master or develop
tags: |
type=ref,event=branch
# also tag master as latest
flavor: latest=${{ github.ref_name == 'master' }}
- name: Log into Dockerhub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build Docker image
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
platforms: ${{ env.PLATFORMS }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true
pull: true
build-args: |
GIT_COMMIT=${{ github.sha }}
GIT_BRANCH=${{ github.ref_name }}
BUILD_DATE=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 1.0.0 (31-05-2022)

#### New Features
- Add option to mass-update the info language ([10516](https://github.com/pymedusa/Medusa/pull/10516))

#### Improvements
- Multiple UI fixes / enhancements ([10566](https://github.com/pymedusa/Medusa/pull/10566))
- Add config setting to allow overriding xem url ([10541](https://github.com/pymedusa/Medusa/pull/10541))
- Increase addic7ed http request timeout ([10565](https://github.com/pymedusa/Medusa/pull/10565))
- Improve anime title parsing for `Title Season 2 - 01` ([10534](https://github.com/pymedusa/Medusa/pull/10534))
- Improve detection of commit / branch when run in docker ([10531](https://github.com/pymedusa/Medusa/pull/10531))
- Improve guessit parsing for shows with numbers in them like `9-1-1` ([10493](https://github.com/pymedusa/Medusa/pull/10493))
- Bump Knowit + pymediainfo to version 0.4.0 and 5.1.0 ([10564](https://github.com/pymedusa/Medusa/pull/10564))

#### Fixes
- Fix malformed imdb id's when imdb id not available ([10669](https://github.com/pymedusa/Medusa/pull/10669))
- Fix shows being searched 2 days early for tvmaze shows ([10668](https://github.com/pymedusa/Medusa/pull/10668))
- Disable guessit cache for postprocessing ([10532](https://github.com/pymedusa/Medusa/pull/10532))
- Fix .plexmatch file misread as xml causing warnings ([10510](https://github.com/pymedusa/Medusa/pull/10510))

## 0.5.29 (11-04-2022)

#### New Features
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ EXPOSE 8081
VOLUME /config /downloads /tv /anime

WORKDIR /app/medusa
CMD [ "python", "start.py", "--nolaunch", "--datadir", "/config" ]
CMD [ "runscripts/init.docker" ]
14 changes: 3 additions & 11 deletions ext/knowit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
# -*- coding: utf-8 -*-
"""Know your media files better."""
from __future__ import unicode_literals

__title__ = 'knowit'
__version__ = '0.3.0-dev'
__version__ = '0.4.0'
__short_version__ = '.'.join(__version__.split('.')[:2])
__author__ = 'Rato AQ2'
__license__ = 'MIT'
__copyright__ = 'Copyright 2016-2017, Rato AQ2'
__copyright__ = 'Copyright 2016-2021, Rato AQ2'
__url__ = 'https://github.com/ratoaq2/knowit'

#: Video extensions
Expand All @@ -19,9 +16,4 @@
'.omf', '.ps', '.qt', '.ram', '.rm', '.rmvb', '.swf', '.ts', '.vfw', '.vid', '.video', '.viv',
'.vivo', '.vob', '.vro', '.webm', '.wm', '.wmv', '.wmx', '.wrap', '.wvx', '.wx', '.x264', '.xvid')

try:
from collections import OrderedDict
except ImportError: # pragma: no cover
from ordereddict import OrderedDict

from .api import KnowitException, know
from knowit.api import KnowitException, know
Loading