Skip to content

Commit

Permalink
Merge pull request #10685 from pymedusa/release/release-v1.0.0
Browse files Browse the repository at this point in the history
Release/release v1.0.0
  • Loading branch information
p0psicles authored May 31, 2022
2 parents e4870f8 + dff114c commit 1c62acd
Show file tree
Hide file tree
Showing 138 changed files with 2,935 additions and 1,913 deletions.
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

0 comments on commit 1c62acd

Please sign in to comment.