diff --git a/.gitchangelog.rc b/.gitchangelog.rc deleted file mode 100644 index 863287d9e..000000000 --- a/.gitchangelog.rc +++ /dev/null @@ -1,305 +0,0 @@ -# -*- coding: utf-8; mode: python -*- -## -## Format -## -## ACTION: [AUDIENCE:] COMMIT_MSG [!TAG ...] -## -## Description -## -## ACTION is one of 'chg', 'fix', 'new' -## -## Is WHAT the change is about. -## -## 'chg' is for refactor, small improvement, cosmetic changes... -## 'fix' is for bug fixes -## 'new' is for new features, big improvement -## -## AUDIENCE is optional and one of 'dev', 'usr', 'pkg', 'test', 'doc' -## -## Is WHO is concerned by the change. -## -## 'dev' is for developpers (API changes, refactors...) -## 'usr' is for final users (UI changes) -## 'pkg' is for packagers (packaging changes) -## 'test' is for testers (test only related changes) -## 'doc' is for doc guys (doc only changes) -## -## COMMIT_MSG is ... well ... the commit message itself. -## -## TAGs are additionnal adjective as 'refactor' 'minor' 'cosmetic' -## -## They are preceded with a '!' or a '@' (prefer the former, as the -## latter is wrongly interpreted in github.) Commonly used tags are: -## -## 'refactor' is obviously for refactoring code only -## 'minor' is for a very meaningless change (a typo, adding a comment) -## 'cosmetic' is for cosmetic driven change (re-indentation, 80-col...) -## 'wip' is for partial functionality but complete subfunctionality. -## -## Example: -## -## new: usr: support of bazaar implemented -## chg: re-indentend some lines !cosmetic -## new: dev: updated code to be compatible with last version of killer lib. -## fix: pkg: updated year of licence coverage. -## new: test: added a bunch of test around user usability of feature X. -## fix: typo in spelling my name in comment. !minor -## -## Please note that multi-line commit message are supported, and only the -## first line will be considered as the "summary" of the commit message. So -## tags, and other rules only applies to the summary. The body of the commit -## message will be displayed in the changelog without reformatting. - - -## -## ``ignore_regexps`` is a line of regexps -## -## Any commit having its full commit message matching any regexp listed here -## will be ignored and won't be reported in the changelog. -## -ignore_regexps = [ - r'@minor', r'!minor', - r'@cosmetic', r'!cosmetic', - r'@refactor', r'!refactor', - r'@wip', r'!wip', - r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[p|P]kg:', - r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[d|D]ev:', - r'^(.{3,3}\s*:)?\s*[fF]irst commit.?\s*$', - r'^$', ## ignore commits with empty messages -] - - -## ``section_regexps`` is a list of 2-tuples associating a string label and a -## list of regexp -## -## Commit messages will be classified in sections thanks to this. Section -## titles are the label, and a commit is classified under this section if any -## of the regexps associated is matching. -## -## Please note that ``section_regexps`` will only classify commits and won't -## make any changes to the contents. So you'll probably want to go check -## ``subject_process`` (or ``body_process``) to do some changes to the subject, -## whenever you are tweaking this variable. -## -section_regexps = [ - ('**New features**', [ - r'^[aA]dded?\s*:?\s*((dev|use?r|pkg|test|doc)\s*:\s*)?(.*)$', - r'^[uU]pdated?\s*:?\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$', - r'^[cC]hanged?\s*:?\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$', - r'^[nN]ew?\s*:?\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$', - ]), - ('**Fixes**', [ - r'^(?![mM]erge\s*)' - ] - ), - -] - - -## ``body_process`` is a callable -## -## This callable will be given the original body and result will -## be used in the changelog. -## -## Available constructs are: -## -## - any python callable that take one txt argument and return txt argument. -## -## - ReSub(pattern, replacement): will apply regexp substitution. -## -## - Indent(chars=" "): will indent the text with the prefix -## Please remember that template engines gets also to modify the text and -## will usually indent themselves the text if needed. -## -## - Wrap(regexp=r"\n\n"): re-wrap text in separate paragraph to fill 80-Columns -## -## - noop: do nothing -## -## - ucfirst: ensure the first letter is uppercase. -## (usually used in the ``subject_process`` pipeline) -## -## - final_dot: ensure text finishes with a dot -## (usually used in the ``subject_process`` pipeline) -## -## - strip: remove any spaces before or after the content of the string -## -## - SetIfEmpty(msg="No commit message."): will set the text to -## whatever given ``msg`` if the current text is empty. -## -## Additionally, you can `pipe` the provided filters, for instance: -#body_process = Wrap(regexp=r'\n(?=\w+\s*:)') | Indent(chars=" ") -#body_process = Wrap(regexp=r'\n(?=\w+\s*:)') -#body_process = noop -body_process = ReSub(r'((^|\n)[A-Z]\w+(-\w+)*: .*(\n\s+.*)*)+$', r'') | strip - - -## ``subject_process`` is a callable -## -## This callable will be given the original subject and result will -## be used in the changelog. -## subject_process = (strip | -## ReSub(r'^([aA]dd(ed?)?|[nN]ew)(\s?:?\s)(.*)$', r'![New](https://img.shields.io/badge/-- -New-brightgreen.svg?style=flat-square) \4') | -## ReSub(r'^([cC]hang(ed?)?)(\s?:?\s)(.*)$', r'![Changed](https://img.shields.io/badge/-- -Changed-orange.svg?style=flat-square) \4') | -## ReSub(r'^([fF]ix(ed?)?)(\s?:?\s)(.*)$', r'![Fixed](https://img.shields.io/badge/-- -Fixed-red.svg?style=flat-square) \4') | -## ReSub(r'^([uU]pdat(ed?)?)(\s?:?\s)(.*)$', r'![Updated](https://img.shields.io/badge/-- -Updated-blue.svg?style=flat-square) \4') | -## ReSub(r'#(\d{3,4})', r'[#\1](https://github.com/Radarr/Radarr/issues/\1)') | -## SetIfEmpty("No commit message.") | ucfirst | final_dot) - -## Available constructs are those listed in ``body_process`` doc. -subject_process = (strip | - ReSub(r'^([aA]dd(ed?)?|[nN]ew)(\s?:?\s)(.*)$', r'![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) \4') | - ReSub(r'^([cC]hang(ed?)?)(\s?:?\s)(.*)$', r'![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) \4') | - ReSub(r'^([fF]ix(ed?)?)(\s?:?\s)(.*)$', r'![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) \4') | - ReSub(r'^([uU]pdat(ed?)?)(\s?:?\s)(.*)$', r'![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) \4') | - ReSub(r'#(\d{3,4})', r'[#\1](https://github.com/Radarr/Radarr/issues/\1)') | - SetIfEmpty("No commit message.") | ucfirst | final_dot) - - -## ``tag_filter_regexp`` is a regexp -## -## Tags that will be used for the changelog must match this regexp. -## -tag_filter_regexp = r'^v[0]+\.[2-9]+\.[0-9]+\.[0-9]{3,4}$' - - -## ``unreleased_version_label`` is a string or a callable that outputs a string -## -## This label will be used as the changelog Title of the last set of changes -## between last valid tag and HEAD if any. -unreleased_version_label = "(unreleased)" - - -## ``output_engine`` is a callable -## -## This will change the output format of the generated changelog file -## -## Available choices are: -## -## - rest_py -## -## Legacy pure python engine, outputs ReSTructured text. -## This is the default. -## -## - mustache() -## -## Template name could be any of the available templates in -## ``templates/mustache/*.tpl``. -## Requires python package ``pystache``. -## Examples: -## - mustache("markdown") -## - mustache("restructuredtext") -## -## - makotemplate() -## -## Template name could be any of the available templates in -## ``templates/mako/*.tpl``. -## Requires python package ``mako``. -## Examples: -## - makotemplate("restructuredtext") -## -#output_engine = rest_py -#output_engine = mustache("restructuredtext") -output_engine = mustache("changelog.tpl") -#output_engine = makotemplate("restructuredtext") - - -## ``include_merge`` is a boolean -## -## This option tells git-log whether to include merge commits in the log. -## The default is to include them. -include_merge = False - - -## ``log_encoding`` is a string identifier -## -## This option tells gitchangelog what encoding is outputed by ``git log``. -## The default is to be clever about it: it checks ``git config`` for -## ``i18n.logOutputEncoding``, and if not found will default to git's own -## default: ``utf-8``. -#log_encoding = 'utf-8' - - -## ``publish`` is a callable -## -## Sets what ``gitchangelog`` should do with the output generated by -## the output engine. ``publish`` is a callable taking one argument -## that is an interator on lines from the output engine. -## -## Some helper callable are provided: -## -## Available choices are: -## -## - stdout -## -## Outputs directly to standard output -## (This is the default) -## -## - FileInsertAtFirstRegexMatch(file, pattern, idx=lamda m: m.start()) -## -## Creates a callable that will parse given file for the given -## regex pattern and will insert the output in the file. -## ``idx`` is a callable that receive the matching object and -## must return a integer index point where to insert the -## the output in the file. Default is to return the position of -## the start of the matched string. -## -## - FileRegexSubst(file, pattern, replace, flags) -## -## Apply a replace inplace in the given file. Your regex pattern must -## take care of everything and might be more complex. Check the README -## for a complete copy-pastable example. -## -# publish = FileInsertIntoFirstRegexMatch( -# "CHANGELOG.rst", -# r'/(?P[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n/', -# idx=lambda m: m.start(1) -# ) -#publish = stdout - -def write_to_file(content): - with open("CHANGELOG.md", "w+") as f: - for chunk in content: - f.write(chunk) - -publish = write_to_file - - -## ``revs`` is a list of callable or a list of string -## -## callable will be called to resolve as strings and allow dynamical -## computation of these. The result will be used as revisions for -## gitchangelog (as if directly stated on the command line). This allows -## to filter exaclty which commits will be read by gitchangelog. -## -## To get a full documentation on the format of these strings, please -## refer to the ``git rev-list`` arguments. There are many examples. -## -## Using callables is especially useful, for instance, if you -## are using gitchangelog to generate incrementally your changelog. -## -## Some helpers are provided, you can use them:: -## -## - FileFirstRegexMatch(file, pattern): will return a callable that will -## return the first string match for the given pattern in the given file. -## If you use named sub-patterns in your regex pattern, it'll output only -## the string matching the regex pattern named "rev". -## -## - Caret(rev): will return the rev prefixed by a "^", which is a -## way to remove the given revision and all its ancestor. -## -## Please note that if you provide a rev-list on the command line, it'll -## replace this value (which will then be ignored). -## -## If empty, then ``gitchangelog`` will act as it had to generate a full -## changelog. -## -## The default is to use all commits to make the changelog. -#revs = ["^1.0.3", ] -#revs = [ -# Caret( -# FileFirstRegexMatch( -# "CHANGELOG.rst", -# r"(?P[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n")), -# "HEAD" -#] -revs = ["v0.2.0.134..."] diff --git a/.gitchangelog.rc.release b/.gitchangelog.rc.release deleted file mode 100644 index 56c23fc62..000000000 --- a/.gitchangelog.rc.release +++ /dev/null @@ -1,311 +0,0 @@ -# -*- coding: utf-8; mode: python -*- -## -## Format -## -## ACTION: [AUDIENCE:] COMMIT_MSG [!TAG ...] -## -## Description -## -## ACTION is one of 'chg', 'fix', 'new' -## -## Is WHAT the change is about. -## -## 'chg' is for refactor, small improvement, cosmetic changes... -## 'fix' is for bug fixes -## 'new' is for new features, big improvement -## -## AUDIENCE is optional and one of 'dev', 'usr', 'pkg', 'test', 'doc' -## -## Is WHO is concerned by the change. -## -## 'dev' is for developpers (API changes, refactors...) -## 'usr' is for final users (UI changes) -## 'pkg' is for packagers (packaging changes) -## 'test' is for testers (test only related changes) -## 'doc' is for doc guys (doc only changes) -## -## COMMIT_MSG is ... well ... the commit message itself. -## -## TAGs are additionnal adjective as 'refactor' 'minor' 'cosmetic' -## -## They are preceded with a '!' or a '@' (prefer the former, as the -## latter is wrongly interpreted in github.) Commonly used tags are: -## -## 'refactor' is obviously for refactoring code only -## 'minor' is for a very meaningless change (a typo, adding a comment) -## 'cosmetic' is for cosmetic driven change (re-indentation, 80-col...) -## 'wip' is for partial functionality but complete subfunctionality. -## -## Example: -## -## new: usr: support of bazaar implemented -## chg: re-indentend some lines !cosmetic -## new: dev: updated code to be compatible with last version of killer lib. -## fix: pkg: updated year of licence coverage. -## new: test: added a bunch of test around user usability of feature X. -## fix: typo in spelling my name in comment. !minor -## -## Please note that multi-line commit message are supported, and only the -## first line will be considered as the "summary" of the commit message. So -## tags, and other rules only applies to the summary. The body of the commit -## message will be displayed in the changelog without reformatting. - - -## -## ``ignore_regexps`` is a line of regexps -## -## Any commit having its full commit message matching any regexp listed here -## will be ignored and won't be reported in the changelog. -## -ignore_regexps = [ - r'@minor', r'!minor', - r'@cosmetic', r'!cosmetic', - r'@refactor', r'!refactor', - r'@wip', r'!wip', - r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[p|P]kg:', - r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[d|D]ev:', - r'^(.{3,3}\s*:)?\s*[fF]irst commit.?\s*$', - r'^$', ## ignore commits with empty messages -] - - -## ``section_regexps`` is a list of 2-tuples associating a string label and a -## list of regexp -## -## Commit messages will be classified in sections thanks to this. Section -## titles are the label, and a commit is classified under this section if any -## of the regexps associated is matching. -## -## Please note that ``section_regexps`` will only classify commits and won't -## make any changes to the contents. So you'll probably want to go check -## ``subject_process`` (or ``body_process``) to do some changes to the subject, -## whenever you are tweaking this variable. -## -section_regexps = [ - ('**New features:**', [ - r'^[aA]dded?\s*:?\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$', - r'^[uU]pdated?\s*:?\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$', - r'^[cC]hanged?\s*:?\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$', - r'^[nN]ew?\s*:?\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$', - ]), - ('**Fixes:**', [ - r'^(?![mM]erge\s*)' - ] - ), - -] - - -## ``body_process`` is a callable -## -## This callable will be given the original body and result will -## be used in the changelog. -## -## Available constructs are: -## -## - any python callable that take one txt argument and return txt argument. -## -## - ReSub(pattern, replacement): will apply regexp substitution. -## -## - Indent(chars=" "): will indent the text with the prefix -## Please remember that template engines gets also to modify the text and -## will usually indent themselves the text if needed. -## -## - Wrap(regexp=r"\n\n"): re-wrap text in separate paragraph to fill 80-Columns -## -## - noop: do nothing -## -## - ucfirst: ensure the first letter is uppercase. -## (usually used in the ``subject_process`` pipeline) -## -## - final_dot: ensure text finishes with a dot -## (usually used in the ``subject_process`` pipeline) -## -## - strip: remove any spaces before or after the content of the string -## -## - SetIfEmpty(msg="No commit message."): will set the text to -## whatever given ``msg`` if the current text is empty. -## -## Additionally, you can `pipe` the provided filters, for instance: -#body_process = Wrap(regexp=r'\n(?=\w+\s*:)') | Indent(chars=" ") -#body_process = Wrap(regexp=r'\n(?=\w+\s*:)') -#body_process = noop -body_process = ReSub(r'((^|\n)[A-Z]\w+(-\w+)*: .*(\n\s+.*)*)+$', r'') | strip - - -## ``subject_process`` is a callable -## -## This callable will be given the original subject and result will -## be used in the changelog. -## subject_process = (strip | -## ReSub(r'^([aA]dd(ed?)?|[nN]ew)(\s?:?\s)(.*)$', r'![New](https://img.shields.io/badge/-- -New-brightgreen.svg?style=flat-square) \4') | -## ReSub(r'^([cC]hang(ed?)?)(\s?:?\s)(.*)$', r'![Changed](https://img.shields.io/badge/-- -Changed-orange.svg?style=flat-square) \4') | -## ReSub(r'^([fF]ix(ed?)?)(\s?:?\s)(.*)$', r'![Fixed](https://img.shields.io/badge/-- -Fixed-red.svg?style=flat-square) \4') | -## ReSub(r'^([uU]pdat(ed?)?)(\s?:?\s)(.*)$', r'![Updated](https://img.shields.io/badge/-- -Updated-blue.svg?style=flat-square) \4') | -## ReSub(r'#(\d{3,4})', r'[#\1](https://github.com/Radarr/Radarr/issues/\1)') | -## SetIfEmpty("No commit message.") | ucfirst | final_dot) - -## Available constructs are those listed in ``body_process`` doc. -subject_process = (strip | - ReSub(r'^([aA]dd(ed?)?|[nN]ew)(\s?:?\s)(.*)$', r'\4') | - ReSub(r'^([cC]hang(ed?)?)(\s?:?\s)(.*)$', r'\4') | - ReSub(r'^([fF]ix(ed?)?)(\s?:?\s)(.*)$', r'\4') | - ReSub(r'^([uU]pdat(ed?)?)(\s?:?\s)(.*)$', r'\4') | - ReSub(r'#(\d{3,4})', r'Issue #\1') | - SetIfEmpty("No commit message.") | ucfirst | final_dot) - - -## ``tag_filter_regexp`` is a regexp -## -## Tags that will be used for the changelog must match this regexp. -## -tag_filter_regexp = r'^v[0]+\.[2-9]+\.[0-9]+\.[0-9]+$' - - -## ``unreleased_version_label`` is a string or a callable that outputs a string -## -## This label will be used as the changelog Title of the last set of changes -## between last valid tag and HEAD if any. -unreleased_version_label = "(unreleased)" - - -## ``output_engine`` is a callable -## -## This will change the output format of the generated changelog file -## -## Available choices are: -## -## - rest_py -## -## Legacy pure python engine, outputs ReSTructured text. -## This is the default. -## -## - mustache() -## -## Template name could be any of the available templates in -## ``templates/mustache/*.tpl``. -## Requires python package ``pystache``. -## Examples: -## - mustache("markdown") -## - mustache("restructuredtext") -## -## - makotemplate() -## -## Template name could be any of the available templates in -## ``templates/mako/*.tpl``. -## Requires python package ``mako``. -## Examples: -## - makotemplate("restructuredtext") -## -#output_engine = rest_py -#output_engine = mustache("restructuredtext") -output_engine = mustache("changelog_release.tpl") -#output_engine = makotemplate("restructuredtext") - - -## ``include_merge`` is a boolean -## -## This option tells git-log whether to include merge commits in the log. -## The default is to include them. -include_merge = False - - -## ``log_encoding`` is a string identifier -## -## This option tells gitchangelog what encoding is outputed by ``git log``. -## The default is to be clever about it: it checks ``git config`` for -## ``i18n.logOutputEncoding``, and if not found will default to git's own -## default: ``utf-8``. -#log_encoding = 'utf-8' - - -## ``publish`` is a callable -## -## Sets what ``gitchangelog`` should do with the output generated by -## the output engine. ``publish`` is a callable taking one argument -## that is an interator on lines from the output engine. -## -## Some helper callable are provided: -## -## Available choices are: -## -## - stdout -## -## Outputs directly to standard output -## (This is the default) -## -## - FileInsertAtFirstRegexMatch(file, pattern, idx=lamda m: m.start()) -## -## Creates a callable that will parse given file for the given -## regex pattern and will insert the output in the file. -## ``idx`` is a callable that receive the matching object and -## must return a integer index point where to insert the -## the output in the file. Default is to return the position of -## the start of the matched string. -## -## - FileRegexSubst(file, pattern, replace, flags) -## -## Apply a replace inplace in the given file. Your regex pattern must -## take care of everything and might be more complex. Check the README -## for a complete copy-pastable example. -## -# publish = FileInsertIntoFirstRegexMatch( -# "CHANGELOG.rst", -# r'/(?P[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n/', -# idx=lambda m: m.start(1) -# ) -publish = stdout - -#def write_to_file(content): -# with open("CHANGELOG.md", "w+") as f: -# for chunk in content: -# f.write(chunk) - -#publish = write_to_file - - -## ``revs`` is a list of callable or a list of string -## -## callable will be called to resolve as strings and allow dynamical -## computation of these. The result will be used as revisions for -## gitchangelog (as if directly stated on the command line). This allows -## to filter exaclty which commits will be read by gitchangelog. -## -## To get a full documentation on the format of these strings, please -## refer to the ``git rev-list`` arguments. There are many examples. -## -## Using callables is especially useful, for instance, if you -## are using gitchangelog to generate incrementally your changelog. -## -## Some helpers are provided, you can use them:: -## -## - FileFirstRegexMatch(file, pattern): will return a callable that will -## return the first string match for the given pattern in the given file. -## If you use named sub-patterns in your regex pattern, it'll output only -## the string matching the regex pattern named "rev". -## -## - Caret(rev): will return the rev prefixed by a "^", which is a -## way to remove the given revision and all its ancestor. -## -## Please note that if you provide a rev-list on the command line, it'll -## replace this value (which will then be ignored). -## -## If empty, then ``gitchangelog`` will act as it had to generate a full -## changelog. -## -## The default is to use all commits to make the changelog. -#revs = ["^1.0.3", ] -#revs = [ -# Caret( -# FileFirstRegexMatch( -# "CHANGELOG.rst", -# r"(?P[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n")), -# "HEAD" -#] -# Gets the latest annoted tag and uses that as a base for new changes. - -import subprocess - -proc = subprocess.Popen(["git", "describe", "--abbrev=0", "--tags"], stdout=subprocess.PIPE) -out = str(proc.communicate()[0].strip(), "utf-8") -revs = [out+"..."] diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index e8727da57..000000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,1096 +0,0 @@ -# Changelog - -## (unreleased) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Tags support to NetImport (Lists) ([#3127](https://github.com/Radarr/Radarr/issues/3127)) [Ricardo Amaral] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Improved templates for h264 & h265 custom formats ([#3432](https://github.com/Radarr/Radarr/issues/3432)) [RhinoRhys] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Logo-256.png to a transparent version so it looks better in Android notifications. ([#3479](https://github.com/Radarr/Radarr/issues/3479)) [jwildman16] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Radarr_Download_Id and Radarr_Download_Client to the environment ([#3276](https://github.com/Radarr/Radarr/issues/3276)) [Logan] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Allow CheckForFinishedDownloadInterval to be set from the UI ([#3233](https://github.com/Radarr/Radarr/issues/3233)) [Steven Crouchman] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Added support for Gotify notifications ([#3474](https://github.com/Radarr/Radarr/issues/3474)) [stephanrenggli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Remote poster and fanart references to Kodi metadata file ([#2837](https://github.com/Radarr/Radarr/issues/2837)) ([#3302](https://github.com/Radarr/Radarr/issues/3302)) [RobinQ124274] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Support Krypton Kodi Unique Ids ([#3388](https://github.com/Radarr/Radarr/issues/3388)) [Qstick] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Adjust Max Slider Value for Qualities ([#3393](https://github.com/Radarr/Radarr/issues/3393)) [Qstick] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) README.md ([#3409](https://github.com/Radarr/Radarr/issues/3409)) [hotio] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Nzb Validation and Nzbget/SAB URLBase ([#3380](https://github.com/Radarr/Radarr/issues/3380)) [Qstick] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) README.md. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) docker link in README. [hotio] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Solve ambiguous naming ([#3417](https://github.com/Radarr/Radarr/issues/3417)) [Viserius] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Copy to clipboard not working with calendar feed ([#3495](https://github.com/Radarr/Radarr/issues/3495)) [Michael Poutre] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Edition Tags Not Showing in UI ([#3389](https://github.com/Radarr/Radarr/issues/3389)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Support new feed url format IPTorrents ([#573](https://github.com/Radarr/Radarr/issues/573)) ([#3390](https://github.com/Radarr/Radarr/issues/3390)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) MediaCovers Race condition which leads to fanart not being downloaded. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Cannot Add ITA or ITALIAN custom format ([#3385](https://github.com/Radarr/Radarr/issues/3385)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) OsInfo for real this time. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Error in unicode cleanup code removing most non-latin characters instead of just invalid ones. ([#3383](https://github.com/Radarr/Radarr/issues/3383)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Forced Subs not parsed by SubtitleLanguageRegex ([#3384](https://github.com/Radarr/Radarr/issues/3384)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) OsInfo being renamed to PlatformInfo. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Word Boundary on Edition ([#3382](https://github.com/Radarr/Radarr/issues/3382)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Mis-classification of releases as being Czech ([#3378](https://github.com/Radarr/Radarr/issues/3378)) [Václav Slavík] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Match MBluray releases ([#3358](https://github.com/Radarr/Radarr/issues/3358)) [Pieter Janssens] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Mono bug causing memory leakage when http connections use gzip compression. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Build errors due to dotnet library. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Emby library update ([#3318](https://github.com/Radarr/Radarr/issues/3318)) [hatharry] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Prevent NullRef in CustomScript on Grab for Indexer ([#3323](https://github.com/Radarr/Radarr/issues/3323)) [tobsen987] - - -## v0.2.0.1293 (2019-01-10) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Use APIKey & APIUser for authenticating to PassThePopcorn. ([#3264](https://github.com/Radarr/Radarr/issues/3264)) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Support for forcedUP status ([#3277](https://github.com/Radarr/Radarr/issues/3277)) [Swizzy] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) rTorrent - Don't start download automatically ([#3222](https://github.com/Radarr/Radarr/issues/3222)) [lps-rocks] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Remove Pre, postbot, xpost suffixes from release groups ([#3220](https://github.com/Radarr/Radarr/issues/3220)) [Qstick] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Secure URLs for Links and Services ([#3219](https://github.com/Radarr/Radarr/issues/3219)) [Qstick] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Hopefully fixed sqlite errors when finding by title. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Another IDisposable leak when lazy loading properties. [Taloth Saldono] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) MediaCoverService tests and stupidly forgetting to open the database connection for logging. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) MediaCovers resizing potentially leaking memory when concurrently executing. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Stream leakage inside CurlHttpDispatcher. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Apparently Microsoft thinks that you should cast to IDisposable first. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Invalid SQLite cache size. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Resource leakage inside HttpClient. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Typo that could probably lead to an infinite loop. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Resource leakage inside ManagedHttpDispatcher. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Leaking of objects when logging something to the database. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) DataMapper potentially leaking stuff when being disposed. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) DataMapper not being disposed, leading to resource leakage. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Memory leak due to unmanaged Bitmaps leaking. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Unable to parse movies from 1800s. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) OSX Packages not getting correct version info. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) npm start not working with node 10. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Hopefully fixed issue where a null downloadId or title would cause no downloads to be tracked. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Bump default version to prevent update running from source ([#3199](https://github.com/Radarr/Radarr/issues/3199)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) MediaInfo Unit Test Failing due to AudioAdditionalFeatures ([#3221](https://github.com/Radarr/Radarr/issues/3221)) [Qstick] - - -## v0.2.0.1216 (2018-11-07) - -### **New features** -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) 64bit mediainfo.dll to 32bit to resolve issue: https://github.com/Radarr/Radarr/issues/3138. [geogolem] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Refactor MediaInfo tokens (fixes old tokens adds new stuff) ([#3058](https://github.com/Radarr/Radarr/issues/3058)) [Ricardo Amaral] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Don't hide custom formats behind advanced settings when editing quality. [Leonardo Galli] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Upped rate at which we scan the download client. Should reduce cpu and ram usage as well as decrease pressure on download clients. [Leonardo Galli] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Improve model and UI handling for lists. Should finally fix root folder errors. ([#3133](https://github.com/Radarr/Radarr/issues/3133)) [Ricardo Amaral] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Don't return unmapped folders on rootfolder API call. Massively improves loading time. ([#3116](https://github.com/Radarr/Radarr/issues/3116)) [Justin Kromlinger] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Support for Homebrew-installed mono ([#3090](https://github.com/Radarr/Radarr/issues/3090)) [Jeff Byrnes] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) mk3d file format ([#2795](https://github.com/Radarr/Radarr/issues/2795)) [Qstick] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) "Add Paused" option to Deluge and Transmission ([#3038](https://github.com/Radarr/Radarr/issues/3038)) [cookandy] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) All-around small improvements ([#3032](https://github.com/Radarr/Radarr/issues/3032)) [Ricardo Amaral] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Czech Language ([#2948](https://github.com/Radarr/Radarr/issues/2948)) [halali] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Fallback to Bitrate_Nominal for MediaInfo ([#2886](https://github.com/Radarr/Radarr/issues/2886)) [Qstick] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) All new custom formats 9000! (Rescan old files, delete formats, polish UI, etc. See discord for full changes): [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Upgrade MediaInfo to 17.10 (Windows/macOS) [Mark McDowall] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) The ability to set the number of threads (NOT SUPPORTED!) to use for tasks using THREAD_LIMIT environment variable. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Adds unmonitored filter option in index and editor ([#2888](https://github.com/Radarr/Radarr/issues/2888)) [Qstick] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Monitor Toggle on Movies Editor Page ([#2887](https://github.com/Radarr/Radarr/issues/2887)) [Qstick] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) "importing an episode" to "importing a movie file" ([#2829](https://github.com/Radarr/Radarr/issues/2829)) [Travis Boss] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Fallback to 'VideoCodec' if 'VideoFormat' is unavailable ([#3142](https://github.com/Radarr/Radarr/issues/3142)) [Ricardo Amaral] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Read video 'BitRate_Nominal' if 'BitRate' is empty ([#3144](https://github.com/Radarr/Radarr/issues/3144)) [Ricardo Amaral] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) UpdateMovieQualityService Tests. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Ignore "special drives" from System » Disk Space ([#3050](https://github.com/Radarr/Radarr/issues/3050)) [Ricardo Amaral] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Tweak style of movie path template on "add movies" screen ([#3108](https://github.com/Radarr/Radarr/issues/3108)) [Ricardo Amaral] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Unable to update custom formats for releases with bad Source Titles. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Do not search movie if unmonitored ([#3131](https://github.com/Radarr/Radarr/issues/3131)) [Ricardo Amaral] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Quality badges not being shown on bulk import. ([#3121](https://github.com/Radarr/Radarr/issues/3121)) [Ricardo Amaral] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Trim filename from Kodi movie path before sending library scan request. ([#3097](https://github.com/Radarr/Radarr/issues/3097)) [Lawrence] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Hopefully fixed bulk import not showing files. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) MPEG-2 remuxes being detected as "Raw-HD" quality. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Allow directory to be parsed similar to past implementation ([#3057](https://github.com/Radarr/Radarr/issues/3057)) [Ricardo Amaral] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Class names on the 'add movies screen' ([#3047](https://github.com/Radarr/Radarr/issues/3047)) [Ricardo Amaral] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Use proper cursor for text and linked labels ([#3041](https://github.com/Radarr/Radarr/issues/3041)) [Ricardo Amaral] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Donate button requiring two clicks to actually work. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Templates for custom format using wrong modifiers. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Profiles always failing validation. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) ImdbIds not being padded with zeroes, which messes up matching. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Issue with custom formats when profile was saved with non existing formats. Also you now don't have to refresh your browser for them to appear / disappear. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Migration would add double underscores for format tags without modifiers. Also fixed Radarr misparsing those tags and added migration to correct this. [Leonardo Galli] -- [WIP] Additions to custom formats, such as rescanning old files. ([#2949](https://github.com/Radarr/Radarr/issues/2949)) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Unnecessary housekeeping commands consuming a lot of memory. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Annoying [renamemoviesfolder] Completed popup for no reason. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Concurrent manual imports silently failing. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Files that cannot be parsed, kill bulk import. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Absolutely Required Format Tag modifier being ignored when multiple modifiers were present. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Error when valid movie file id is around, but movie file is not loaded. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Movies not being unmonitored when using clean library and lists. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Also scan media info when file is being imported (i.e. not an existing file) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Invalid qualities messing up the release module and other stuff. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Languages not showing up correctly. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Null exception due to resharper refactoring. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) No media info causing an error when importing files. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Saving IndexerSettings into DB which confuses the datamapper. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Not using correct info for determining state! [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Ability to add custom formats, working similar to qualities. ([#2669](https://github.com/Radarr/Radarr/issues/2669)) [Leonardo Galli] -- Create reaction.yml. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) .vtt files treated as subtitles ([#2885](https://github.com/Radarr/Radarr/issues/2885)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Debug log Series reference in QualityAllowedByProfile spec ([#2899](https://github.com/Radarr/Radarr/issues/2899)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Multiple UI Fixes and Additions ([#2894](https://github.com/Radarr/Radarr/issues/2894)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Multiline in table view on two lines ([#2870](https://github.com/Radarr/Radarr/issues/2870)) [hotio] - - -## v0.2.0.1120 (2018-05-27) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) AHD_Internal and G_Scene indexer flags. Also linked a wiki page with more information about indexer flags. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) indexer flags to the list of environmental variable for customs scripts (on grab) ([#2801](https://github.com/Radarr/Radarr/issues/2801)) [bobbintb] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) issue templates. [Leonardo Galli] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) AwesomeHD failing on an empty imdbid. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Rare timing issue on first-use causing duplicate naming config ([#2790](https://github.com/Radarr/Radarr/issues/2790)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Qbittorrent state and eta fixes ([#2789](https://github.com/Radarr/Radarr/issues/2789)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Purge alt titles on movie delete ([#2796](https://github.com/Radarr/Radarr/issues/2796)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Don’t allow profiles in use by lists to be deleted ([#2797](https://github.com/Radarr/Radarr/issues/2797)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Throwing error when indexer doesn't support a category. Now only warns the user. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Broken Newznab testing. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Omgwtfnzbs API categories (UHD, Full BR and Other) ([#2764](https://github.com/Radarr/Radarr/issues/2764)) [jusher00] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Indexers that do not support movie search should give better error messages. Radarr now also complains if an indexer does not support certain categories. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) RSS Feeds with no description failing to be added. [Leonardo Galli] - - -## v0.2.0.1067 (2018-04-17) - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Radarr not loading with an invalid sort key. [Leonardo Galli] - - -## v0.2.0.1066 (2018-04-16) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) More logging for strange PTP errors. Please report them immediately when you see them. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Setting for Colon Replacement Format ([#2711](https://github.com/Radarr/Radarr/issues/2711)) [Qstick] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Enable Download Client Priorities ([#2699](https://github.com/Radarr/Radarr/issues/2699)) [Qstick] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Radarr now stores cookies for PTP beyond restarts. Should limit active sessions correctly. ([#2643](https://github.com/Radarr/Radarr/issues/2643)) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Setting for absolute maximum size for a release ([#2662](https://github.com/Radarr/Radarr/issues/2662)) [Qstick] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) A Huge Cleanup of old Series Code. (Let's pray nothing breaks :P) ([#2589](https://github.com/Radarr/Radarr/issues/2589)) [Qstick] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) stale.yml. [AeonLucid] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Register as Radarr to avoid issues with Sonarr ([#2715](https://github.com/Radarr/Radarr/issues/2715)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Handling of unknown status types in DownloadStation and Import from torrent Download Station should move since DS maintains an internal copy for seeding. ([#2420](https://github.com/Radarr/Radarr/issues/2420)) [Marcelo Castagna] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Misc Extra File Improvements (This changes mapping of backdrop images to Fanart instead of Banner) ([#2642](https://github.com/Radarr/Radarr/issues/2642)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Multiple Calendar Issues, Other UI Fixes ([#2685](https://github.com/Radarr/Radarr/issues/2685)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Cutoff Unmet Sorting by Downloaded Quality not working. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Add form param before submitting request ([#2674](https://github.com/Radarr/Radarr/issues/2674)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Don't add category when removing torrent from qBittorrent ([#2661](https://github.com/Radarr/Radarr/issues/2661)) [Qstick] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) underscore to host part of URI regex ([#2633](https://github.com/Radarr/Radarr/issues/2633)) [mueslo] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) ICS malformed in a lot of cases. Also events are now all day. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Set category when adding torrent to qBittorrent ([#2649](https://github.com/Radarr/Radarr/issues/2649)) [themagicbullet] -- Create support.yml. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Incorrect Kodi nfo date format ([#2605](https://github.com/Radarr/Radarr/issues/2605)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Sort by Downloaded not working. [Leonardo Galli] - - -## v0.2.0.995 (2018-03-04) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Copy & Paste now triggers search ([#2587](https://github.com/Radarr/Radarr/issues/2587)) [Paul Kozlovitch] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) console logging in case NLog fails to initialize. [Taloth Saldono] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Changes in http redirect logic causing failed grabs and >25% cpu usage. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) http->https redirects do not use the tls1.2 curl fallback. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Dates before 1970 causing an exception. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Browser not updating on Movie File Imported. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Movies not getting unmonitored when folder gets deleted ([#2588](https://github.com/Radarr/Radarr/issues/2588)) [Simon Chapman] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) NLog causing a crash under mono 5.10. [Leonardo Galli] -- Revert "Fixed: Updated NLog to 4.5 RC6 to handle mono 5.10" [Leonardo Galli] -- Revert "Fixed: Messed up merge from Cherry pick" [Leonardo Galli] -- Revert "Fixed: Appveyor build." [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Appveyor build. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Messed up merge from Cherry pick. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Updated NLog to 4.5 RC6 to handle mono 5.10. [Leonardo Galli] -- Revert "Fixed: NLog causing a crash under mono 5.10" [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Pin cake and addin versions. [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Temp Workaround for Appveyor Cake Issue. [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) NLog causing a crash under mono 5.10. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Poster sliding issues ([#2570](https://github.com/Radarr/Radarr/issues/2570)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Multiple History Issues ([#2571](https://github.com/Radarr/Radarr/issues/2571)) [Qstick] - - -## v0.2.0.980 (2018-02-21) - -### **New features** -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Metadata links are now better readable. Also fixed links in the poster view. ([#2562](https://github.com/Radarr/Radarr/issues/2562)) [thezoggy] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Handle ctrl-c more gracefully. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Device names for Join notifications ([#2544](https://github.com/Radarr/Radarr/issues/2544)) [Qstick] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Same File Size MediaFile Specification ([#2532](https://github.com/Radarr/Radarr/issues/2532)) [Qstick] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) NLog to version 4.4.12. Should fix [#2218](https://github.com/Radarr/Radarr/issues/2218) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Importing extra files from downloaded movies and generate metadata such as .nfo ([#2506](https://github.com/Radarr/Radarr/issues/2506)) [Qstick] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Quotes around alternative titles ([#2522](https://github.com/Radarr/Radarr/issues/2522)) [Qstick] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Backup improvements from Sonarr ([#2513](https://github.com/Radarr/Radarr/issues/2513)) [Qstick] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) NzbDrone references in FirewallAdapter.cs ([#2504](https://github.com/Radarr/Radarr/issues/2504)) [Qstick] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Another Delete modal is fixed. ([#2560](https://github.com/Radarr/Radarr/issues/2560)) [thezoggy] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Messed up movie deletion modal ([#2552](https://github.com/Radarr/Radarr/issues/2552)) [thezoggy] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Remove sorting on Monitor/Profile columns to prevent unexpected results until sorting can properly be handled. Quick Fix for [#2540](https://github.com/Radarr/Radarr/issues/2540) ([#2553](https://github.com/Radarr/Radarr/issues/2553)) [thezoggy] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) OSX app has bundle name of Sonarr ([#2555](https://github.com/Radarr/Radarr/issues/2555)) [thezoggy] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Alt Titles from TMDB not getting added when mappings server throws 404. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Unable to execute custom scripts if IMDB ID is null ([#2543](https://github.com/Radarr/Radarr/issues/2543)) [Qstick] -- Cleanup TV related code in API ([#2530](https://github.com/Radarr/Radarr/issues/2530)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Omgwtfnbs parsing being too greedy. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Help icon not centered ([#2531](https://github.com/Radarr/Radarr/issues/2531)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Radarr Changes every file due to timezones ([#2533](https://github.com/Radarr/Radarr/issues/2533)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Filters not working. Fuck you backbone. [Leonardo Galli] -- Cleanup Series Code from UI ([#2525](https://github.com/Radarr/Radarr/issues/2525)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Apostrophe getting replaced by an empty string causing no search results. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Integration Unit Tests ([#2500](https://github.com/Radarr/Radarr/issues/2500)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) XSS vulnerability in the navbar search. ([#2505](https://github.com/Radarr/Radarr/issues/2505)) [Scott] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) StartNzbDroneService.cs unit test ([#2499](https://github.com/Radarr/Radarr/issues/2499)) [Qstick] -- SelectAll and deselectAll MovieEditor buttons. [geogolem] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) build problem on windows. [geogolem] -- Revert "Fixed: Removed hebrew ISO, since english movies are still in english. ([#1922](https://github.com/Radarr/Radarr/issues/1922))" [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Error with deluge when it doesn’t report a Hash. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Logging error when accessing mount point. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Invalid runtime from CP causing issues importing. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Typo in TMDB Settings. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Hopefully fixed errors with Delay Profiles. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Error when importing files and old folder doesn’t exist. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Zooqle torrents not getting added, since their torrent file is messed up. [Leonardo Galli] - - -## v0.2.0.935 (2018-02-06) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Include total space with root folders. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Manual Import now adds year after movie title for filtering. This should help finding movies such as IT. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Option to require indexer flags per indexer. (e.g. only download freeleech torrents from a private tracker) ([#2460](https://github.com/Radarr/Radarr/issues/2460)) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Files downloaded with different quality than grabbed will get rejected. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) TMDbSettings.cs to allow pipe for or for genre ids ([#2389](https://github.com/Radarr/Radarr/issues/2389)) [crhammock] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Dynamic paths cleanup old folders now! [Leonardo Galli] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) No Physical Release Date causing exception when setting last write time. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Movies not getting unmonitored when folder gets deleted. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Rare case of null quality causing issues with manual import. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Manual Import not automatically choosing right movie. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Rare case of RequiredIndexerFlags failing with old Newznab indexers. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Folder name getting messed up when adding movies via a list. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Error when adding an already excluded movie to the exclusion list. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Last commit still not compiling (whoops squared) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Last commit not compiling (whoops) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Clean Library being to agressive when lists are having failures. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Error when nno quality was associated with a movie file. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Allowing in use Profiles to be Deleted. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Error when Movie has no imdbid when searching Rargb. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Rargb failing when imdbid is not found. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) {Original Filename} not allowed in Movie Filename. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Look for changes to package.json before using old build cache ([#2445](https://github.com/Radarr/Radarr/issues/2445)) [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) HistoryDetailsLayoutTemplate.hbs ([#2361](https://github.com/Radarr/Radarr/issues/2361)) [Pieter Janssens] - - -## v0.2.0.910 (2017-12-13) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Separate naming tags for AudioLanguage and SubtitleLanguage ([#2261](https://github.com/Radarr/Radarr/issues/2261)) (Fixes [#2257](https://github.com/Radarr/Radarr/issues/2257)) [fhscholl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Include APFS disks in disk space calculation. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Upgrade MediaInfo to 17.10 (Windows/macOS) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Support for VF2 french tag. ([#2291](https://github.com/Radarr/Radarr/issues/2291)) (Fixes [#2290](https://github.com/Radarr/Radarr/issues/2290)) [kriegalex] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Customize Slack Channel ([#2308](https://github.com/Radarr/Radarr/issues/2308)) (Fixes [#2298](https://github.com/Radarr/Radarr/issues/2298)) [grokdesigns] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) SceneName to MovieFile API output ([#2250](https://github.com/Radarr/Radarr/issues/2250)) (Fixes [#2245](https://github.com/Radarr/Radarr/issues/2245)) [fhscholl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Functionality to XBMC and Plex to update indivdual titles. Also: Notification Cleanup ([#2240](https://github.com/Radarr/Radarr/issues/2240)) [fhscholl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) FolderPath to the Movie Webhook ([#2230](https://github.com/Radarr/Radarr/issues/2230)) [adnanklink] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Download_Id to On Download/On Upgrade ([#2229](https://github.com/Radarr/Radarr/issues/2229)) [adnanklink] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Movie_Quality to onGrab ([#2221](https://github.com/Radarr/Radarr/issues/2221)) (Fixes [#1833](https://github.com/Radarr/Radarr/issues/1833)) [fhscholl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) Webhook Improvements ([#2220](https://github.com/Radarr/Radarr/issues/2220)) (Fixes [#1751](https://github.com/Radarr/Radarr/issues/1751)) [fhscholl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Message about adblockers preventing the log table from loading ([#2213](https://github.com/Radarr/Radarr/issues/2213)) (Fixes [#2209](https://github.com/Radarr/Radarr/issues/2209)) [James White] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Sabnzbd Update test cases and rename to MovieCategory ([#2212](https://github.com/Radarr/Radarr/issues/2212)) [James White] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Nzbget Rename TvCategory references to MovieCategory ([#2211](https://github.com/Radarr/Radarr/issues/2211)) [James White] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) default port of qBittorrent download client config ([#2187](https://github.com/Radarr/Radarr/issues/2187)) [James White] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Initial state for torrents added to qBittorrent ([#2176](https://github.com/Radarr/Radarr/issues/2176)) [James White] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Adjust ambiguous date options ([#2165](https://github.com/Radarr/Radarr/issues/2165)) [James White] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) a default name for Radarr.ics ([#2163](https://github.com/Radarr/Radarr/issues/2163)) [James White] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) MediaCover endpoint. [Taloth Saldono] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Don't handle content requests in IndexHtmlMapper. [Mark McDowall] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Movies parsed from lists with no year and only title getting added mutliple times. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Security Vulnerabilities allowing authentication to be bypassed (discovered by Kyle Neideck) [Taloth Saldono] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Movie Editor Path screwed up. Might also fix some other movie editor issues. (Fixes [#2170](https://github.com/Radarr/Radarr/issues/2170)) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Tags disappearing (Fixes [#2204](https://github.com/Radarr/Radarr/issues/2204)) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) moment.js deprecated zone and add functions (Fixes [#2232](https://github.com/Radarr/Radarr/issues/2232)) (Fixes [#2231](https://github.com/Radarr/Radarr/issues/2231)) ([#2264](https://github.com/Radarr/Radarr/issues/2264)) [Fish2] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) CPU locking at a 100% in certain instances. ([#2258](https://github.com/Radarr/Radarr/issues/2258)) (Fixes [#2218](https://github.com/Radarr/Radarr/issues/2218)) [Mike] -- Revert "Fixed: moment.js deprecated zone and Added: and lossless compression of images ([#2232](https://github.com/Radarr/Radarr/issues/2232)) (Fixes [#2231](https://github.com/Radarr/Radarr/issues/2231))" [Fish2] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) moment.js deprecated zone and Added: and lossless compression of images ([#2232](https://github.com/Radarr/Radarr/issues/2232)) (Fixes [#2231](https://github.com/Radarr/Radarr/issues/2231)) [Fish2] -- Fixes [#2218](https://github.com/Radarr/Radarr/issues/2218). ([#2254](https://github.com/Radarr/Radarr/issues/2254)) [Mike] -- Minor error message tweak ([#1778](https://github.com/Radarr/Radarr/issues/1778)) [Oliver Rivett-Carnac] -- UTorrent initial state feature ([#2192](https://github.com/Radarr/Radarr/issues/2192)) [James White] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) IsUpgrade and related deleted file paths for CustomScript ([#2205](https://github.com/Radarr/Radarr/issues/2205)) [fhscholl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) typo on margin-bottom ([#2182](https://github.com/Radarr/Radarr/issues/2182)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Manual Import. Fixes [#2160](https://github.com/Radarr/Radarr/issues/2160) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Remove unit on zero values ([#2178](https://github.com/Radarr/Radarr/issues/2178)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Jackett apikey cleaned from log again. ([#2177](https://github.com/Radarr/Radarr/issues/2177)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Manual Movie Page Filtering. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) MediaInfo not getting read when quality isn't Bluray, Web-dl or HDTV. Fixes [#1465](https://github.com/Radarr/Radarr/issues/1465). Fixes [#1572](https://github.com/Radarr/Radarr/issues/1572). [Leonardo Galli] - - -## v0.2.0.870 (2017-10-09) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) new codec HEVC with ID=5 for HDBits ([#2146](https://github.com/Radarr/Radarr/issues/2146)) [Wyall] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Option to omit year from indexer searches when searching by title. Also added option to force a movie search by title instead of imdb id. Fixes [#1912](https://github.com/Radarr/Radarr/issues/1912) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Last round of optimisation. Large libraries should load around 2x faster again compared to the last version. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Improved load times of very large libraries again (around x5) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Movie files are now eager loaded. This should speed up the loading process a lot as well as RSS Sync and other tasks. It should also prevent some other bugs. [Leonardo Galli] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Alignment and buttons position of Trakt Auth ([#2153](https://github.com/Radarr/Radarr/issues/2153)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) SUBBED in release name not recognized as hardcoded subs. Fixes [#1520](https://github.com/Radarr/Radarr/issues/1520) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) 1080i not correctly recognized as 1080p. Fixes [#1622](https://github.com/Radarr/Radarr/issues/1622) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Releases with UHD not getting correct resolution label. Fixes [#2134](https://github.com/Radarr/Radarr/issues/2134) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) WebDL gets marked as Remux. Fixes [#1954](https://github.com/Radarr/Radarr/issues/1954) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Parsing of TSRip and HDTSRip. Fixes [#1998](https://github.com/Radarr/Radarr/issues/1998) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) unclosed tag on BulkImportView ([#2110](https://github.com/Radarr/Radarr/issues/2110)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Change to correct provider of search results ([#2113](https://github.com/Radarr/Radarr/issues/2113)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Icon not being hidden on Discover New Movies button in X-Small breakpoint ([#2114](https://github.com/Radarr/Radarr/issues/2114)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Font folder case fix ([#2066](https://github.com/Radarr/Radarr/issues/2066)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Add space in confirmation message ([#2101](https://github.com/Radarr/Radarr/issues/2101)) [Adam Dangoor] -- Create LICENSE. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Alternative Titles appearing multiple times. Duplicate alt titles will be deleted. Fixes [#2040](https://github.com/Radarr/Radarr/issues/2040) [Leonardo Galli] - - -## v0.2.0.852 (2017-09-10) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) WOFF2 fonts for better performance in supported browsers ([#1994](https://github.com/Radarr/Radarr/issues/1994)) [James White] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Tweak NavbarLayoutTemplate.hbs ([#1996](https://github.com/Radarr/Radarr/issues/1996)) [James White] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Scripts should be included before closing body tag ([#1995](https://github.com/Radarr/Radarr/issues/1995)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Allow toolbar buttons to be full width on x-small and small breakpoints ([#1972](https://github.com/Radarr/Radarr/issues/1972)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Alt titles with less than 4 votes being used. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Cleanup of unused alt titles. [Leonardo Galli] - - -## v0.2.0.846 (2017-08-27) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Ability to force download movies that could not be mapped correctly. This also shares these mappings with other users, so everyone can profit :) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Display breakpoint name in browser window in debug mode ([#1968](https://github.com/Radarr/Radarr/issues/1968)) [James White] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Ability to delete multiple movies at once via the movie editor. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Deprecation warning about Drone Factory to front end ([#1938](https://github.com/Radarr/Radarr/issues/1938)) [James White] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Package-lock.json for npm 5 ([#1939](https://github.com/Radarr/Radarr/issues/1939)) [James White] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) FontAwesome to 4.7.0 ([#1928](https://github.com/Radarr/Radarr/issues/1928)) [James White] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Hebrew language ([#1909](https://github.com/Radarr/Radarr/issues/1909)) [Rotem] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Run tests through powershell. ([#1903](https://github.com/Radarr/Radarr/issues/1903)) [Mike] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Alternative Titles are now also pulled from mappings.radarr.video. [Leonardo Galli] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Alternative Titles were reworked greatly. This should speed up RSS Sync massively, especially for large libraries (up to 4x). [Leonardo Galli] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Refresh movie failing. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Refresh movie failing for most movies. (Fixes [#2007](https://github.com/Radarr/Radarr/issues/2007)) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) A few issues with the new alternative titles feature. ([#2008](https://github.com/Radarr/Radarr/issues/2008)) (Fixes [#1919](https://github.com/Radarr/Radarr/issues/1919), [#1927](https://github.com/Radarr/Radarr/issues/1927) and [#1917](https://github.com/Radarr/Radarr/issues/1917)) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) A lot of small ui errors (e.g. More not showing) (Revert of [#1959](https://github.com/Radarr/Radarr/issues/1959)) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Adjust Sonarr references to Radarr ([#1977](https://github.com/Radarr/Radarr/issues/1977)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Rename movie not working ([#1970](https://github.com/Radarr/Radarr/issues/1970)) (Fixes [#1908](https://github.com/Radarr/Radarr/issues/1908)) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Error with CP Import when no info is present. Fixes [#1792](https://github.com/Radarr/Radarr/issues/1792) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Movie files & folders will actually get deleted now ([#1966](https://github.com/Radarr/Radarr/issues/1966)) (Fixes [#694](https://github.com/Radarr/Radarr/issues/694)) [Tom] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Bulk UI cleanup, fixes and consistency improvements ([#1959](https://github.com/Radarr/Radarr/issues/1959)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Parser error when using `(year) name` folder ([#1956](https://github.com/Radarr/Radarr/issues/1956)) (Fixes [#1951](https://github.com/Radarr/Radarr/issues/1951)) [MangaValk] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Missing icon preventing detailed explanation validation errors explanations from appearing. ([#1944](https://github.com/Radarr/Radarr/issues/1944)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Mask-icon and other resources when UrlBase is in use ([#1933](https://github.com/Radarr/Radarr/issues/1933)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Slack/Mattermost notifications improvements from Sonarr ([#1930](https://github.com/Radarr/Radarr/issues/1930)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) fontawesome path (Icons disappearing) ([#1929](https://github.com/Radarr/Radarr/issues/1929)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Charset and meta in index.html and login.html ([#1926](https://github.com/Radarr/Radarr/issues/1926)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Removed hebrew ISO, since english movies are still in english. ([#1922](https://github.com/Radarr/Radarr/issues/1922)) [Rotem] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Adjust column sizes relative to size of dropdown values ([#1923](https://github.com/Radarr/Radarr/issues/1923)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Additional jshint warnings ([#1921](https://github.com/Radarr/Radarr/issues/1921)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Minor issues on MoreInfoViewTemplate.hbs ([#1916](https://github.com/Radarr/Radarr/issues/1916)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) gulp jshint warnings ([#1873](https://github.com/Radarr/Radarr/issues/1873)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Replace GitHub wiki references to Radarr's wiki URL ([#1914](https://github.com/Radarr/Radarr/issues/1914)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Hanging form-group div ([#1911](https://github.com/Radarr/Radarr/issues/1911)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Migration failing and thus making Radarr unable to start. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Task name of PreDB Sync task ([#1875](https://github.com/Radarr/Radarr/issues/1875)) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Check that Quality Profile is not in use before deleting it. [Qstick] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Category not setting with qBitTorrent 3.3.14 and other api errors. (upstream from Sonarr) [James White] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Non-Freeleech torrents showing as freeleech for AHD. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Older movies (released more than 30 days ago) are now not refreshed as often anymore (every 30 days) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) (Hopefully) Bug where movie file was not correctly linked to movie. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) No API Key required with SignalR connections. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Guard agains null reference exception with newznab capabilities. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Update Info.plist to avoid conflict with Sonarr ([#1783](https://github.com/Radarr/Radarr/issues/1783)) [Marc Runkel] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Relax SingleInstancePolicy when using a custom data directory Fixes [#1765](https://github.com/Radarr/Radarr/issues/1765) ([#1782](https://github.com/Radarr/Radarr/issues/1782)) [Richard Schwab] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Lists are fetched much more efficiently. (Up to 40x loading time improvement with large lists!) [Leonardo Galli] -- Revert "Fixed: Support for Mono 5.x with the newer BoringTLS provider." [Taloth Saldono] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Support for Mono 5.x with the newer BoringTLS provider. [Taloth Saldono] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Old Plex ValidationFailure message ([#1770](https://github.com/Radarr/Radarr/issues/1770)) [Sandro Stikić] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) BDRemux not recognized as such and BDRips without resolution recognized as DVD. Fixes [#1755](https://github.com/Radarr/Radarr/issues/1755) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) A as part of an acronym being removed from clean title. Fixes [#1747](https://github.com/Radarr/Radarr/issues/1747) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Folder in List settings appearing blank in some browsers. Fixes [#1711](https://github.com/Radarr/Radarr/issues/1711) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Minimum Seeders not saving for Torznab indexer. Fixes [#1736](https://github.com/Radarr/Radarr/issues/1736) [Leonardo Galli] - - -## v0.2.0.778 (2017-06-20) - -### **New features** -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) Radarr API url now points to new v2 version. [Leonardo Galli] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Name of Radarr Lists. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) More detailed descriptions why a movie was not able to be mapped. ([#1696](https://github.com/Radarr/Radarr/issues/1696)) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Options to make parsing more lenient. (Adds support for some german and french releasegroups) ([#1692](https://github.com/Radarr/Radarr/issues/1692)) [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) Bootstrap Tags Input ([#1674](https://github.com/Radarr/Radarr/issues/1674)) [Mitchell Cash] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Include css files in minification ([#1672](https://github.com/Radarr/Radarr/issues/1672)) [Mitchell Cash] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Upgrade to Bootstrap 3.3.7 ([#1673](https://github.com/Radarr/Radarr/issues/1673)) [Mitchell Cash] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Allow minimum seeders to be set on a per indexer basis. Pulled from Sonarr Upstream ([#1624](https://github.com/Radarr/Radarr/issues/1624)) [Leonardo Galli] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Remove redundant IE meta tag as we use http header instead ([#1655](https://github.com/Radarr/Radarr/issues/1655)) [Mitchell Cash] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Use cleancss for minification ([#1654](https://github.com/Radarr/Radarr/issues/1654)) [Mitchell Cash] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Ability to see TMDB and lists going through the Radarr API on the discovery page. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Search 5 alternative titles as well. This should help with french as well as movies with very different titles. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) [Radarr] tag for Twitter Notifications ([#1558](https://github.com/Radarr/Radarr/issues/1558)) [Jason Costomiris] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Custom Class for Radarr API requests. Also implements new error handling present on staging server. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) HDBits Category, Codec, and Medium Filtering Capability ([#1458](https://github.com/Radarr/Radarr/issues/1458)) [randellhodges] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) radarr api url. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) TaskManager.cs. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) LogEntries token again :) [Leonardo Galli] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) migration. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Redirect calls missing URL Base ([#1668](https://github.com/Radarr/Radarr/issues/1668)) [Mitchell Cash] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Twitter oAuth callback URL ([#1669](https://github.com/Radarr/Radarr/issues/1669)) [Mitchell Cash] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Error when processing manual import decisions ([#1670](https://github.com/Radarr/Radarr/issues/1670)) [Mitchell Cash] -- Create README.md. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) license. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Urls missing from multiple indexers after latest nightly update. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Follow 301 redirects when fetching torrents ([#1653](https://github.com/Radarr/Radarr/issues/1653)) [Mitchell Cash] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Ensure an API Key is set when starting Radarr ([#1652](https://github.com/Radarr/Radarr/issues/1652)) [Mitchell Cash] -- Minimum availability is now working similarely to profile when adding a movie. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Forgot to include some js files in the last commit. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) error when we get invalid datetime from our api. [Leonardo Galli] -- Lossless compression of images saved 92KB ([#1620](https://github.com/Radarr/Radarr/issues/1620)) [Fish2] -- Mostly fixes UI glitches for list settings. [Leonardo Galli] -- Refresh IsDuplicate in bulk import when the tmdbId changes ([#1570](https://github.com/Radarr/Radarr/issues/1570)) [Sentir101] -- Encourage Torznab use with Jackett ([#1559](https://github.com/Radarr/Radarr/issues/1559)) [flightlevel] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) PTP indexer being disabled if no results are found for a movie. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) basic naming settings. [Leonardo Galli] -- Discovery of upcoming movies points to our server now. [Leonardo Galli] -- Most likely fixed [#745](https://github.com/Radarr/Radarr/issues/745) now. [Mike] -- Chmod osx file as executable. ([#1539](https://github.com/Radarr/Radarr/issues/1539)) [Mike] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) IMDB URL to notifications ([#1531](https://github.com/Radarr/Radarr/issues/1531)) [tsubus] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) design calendar css bug ([#1527](https://github.com/Radarr/Radarr/issues/1527)) [Levi Wilcox] -- Correct Program Name ([#1524](https://github.com/Radarr/Radarr/issues/1524)) [Luke Anderson] -- Correct Program Name ([#1523](https://github.com/Radarr/Radarr/issues/1523)) [Luke Anderson] -- Osx updater now updates plist file to point to the correct executable binary. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Using our own logentries token now. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) osx updater failing. [Leonardo Galli] - - -## v0.2.0.696 (2017-05-12) - -### **New features** -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) TaskManager.cs. [Leonardo Galli] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) test. [Leonardo Galli] -- Movies with same name but different year being downloaded regardlessly is now fixed! [Leonardo Galli] - - -## v0.2.0.692 (2017-05-11) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) ability to discover new movies based on upcoming blurays as well as popular movies (borrowed from steven lu :)) [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) Kodi icon, fixes [#1464](https://github.com/Radarr/Radarr/issues/1464) ([#1492](https://github.com/Radarr/Radarr/issues/1492)) [hotio] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) initial migration. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) trailer links to the discovery page. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) discovery tab based on tmdb recommendations based on your existing movies. ([#1450](https://github.com/Radarr/Radarr/issues/1450)) [Leonardo Galli] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) default page size to 250. Should help with safari timeouts. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) multiple new editions such as FanEdit, Anniversary and 2in1. [Leonardo Galli] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) design issue when deleting css bug ([#1480](https://github.com/Radarr/Radarr/issues/1480)) Fixes [#1475](https://github.com/Radarr/Radarr/issues/1475) [Levi Wilcox] -- 10 Movies are now shown on discover as well as search results. [Leonardo Galli] -- Hotfix for when ignored movies would appear again after clicking on show more. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) appveyor build. [Leonardo Galli] -- Completely overhauled how import exclusions work. [Leonardo Galli] -- Hopefully more logging to catch errors better. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) A small bug fix for items loading as undefined in organize modal. Movie titles should now show up correctly. ([#1424](https://github.com/Radarr/Radarr/issues/1424)) [PatrickGHanna] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) error when language is present in title, but has dots instead of spaces. For example The.Danish.Girl.2015. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Final in titles parsing as an edition. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Radarr not importing torrents in Vuze if the torrent already finished seeding and was stopped ([#1471](https://github.com/Radarr/Radarr/issues/1471)) [Mitchell Cash] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Incorrect imports with Vuze when torrent contains a single file. ([#1470](https://github.com/Radarr/Radarr/issues/1470)) [Mitchell Cash] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Sonarr UI Authentication cookie should be placed on path (UrlBase) instead of domain alone. Fixes #[#1451](https://github.com/Radarr/Radarr/issues/1451) [Mitchell Cash] -- Use Post for tmdbids request, to avoid too long URIs. [Leonardo Galli] -- Tidy up layout of buttons on the Add Movies page for mobile/tablet ([#1454](https://github.com/Radarr/Radarr/issues/1454)) [David Pooley] -- Rename Sonarr to Radarr for OSX App. [morberg] -- Minor text fixes. [Leonardo Galli] -- Enable automatic renaming, according to naming scheme, of movie folder after creation of the movie. ([#1349](https://github.com/Radarr/Radarr/issues/1349)) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) for error when clicking Rescan Drone Folder. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) for error when trying to manually import. [Leonardo Galli] - - -## v0.2.0.654 (2017-04-18) - -### **New features** -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) smtp.google.com to smtp.gmail.com ([#1410](https://github.com/Radarr/Radarr/issues/1410)) [Donald Webster] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) debug movie title to include Year. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) Series reference to Movies, should fix [#1399](https://github.com/Radarr/Radarr/issues/1399) ([#1402](https://github.com/Radarr/Radarr/issues/1402)) [hotio] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) test for fix in last commit. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) branch. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) packages.sh some more. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) package.sh script. [Leonardo Galli] - -### **Fixes** -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) PTP_Approved turning into HDBits Internal. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) ptp tests. [Leonardo Galli] -- AHD, PTP and HDB support the new indexer flags too now! Indexer flags can be preferred over other releases. [Leonardo Galli] -- Movies with Umlauts are now correctly matched and have correct CleanTitles. [Leonardo Galli] -- Minor Text fixes. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) error when MinimumAvailability was Announced and Delay was negative. [Leonardo Galli] -- Disable PreDB sync for now. [Leonardo Galli] -- Stats are now sent to our server instead of Sonarr's :) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) for sql error. Did not think everything through exactly. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) when MovieTitle is the empty string (should not occur, but what evs) [Leonardo Galli] -- Fixes Movie Size not showing correctly. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) an issue where movies which were labelled with an alternative title could not be found. [Leonardo Galli] -- Indexer flags implementation. ([#1377](https://github.com/Radarr/Radarr/issues/1377)) Will be further finalized over the next few weeks with Freelech, preferring of certain flags, etc. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) default runtime when runtime info of tmdb says 0. [Leonardo Galli] -- Fixes an issue where the semicolon and space afterwards was replaced. [Leonardo Galli] -- Final tweak for package.sh. [Leonardo Galli] -- This should finally fix all packaging stuff. [Leonardo Galli] -- Test fixes. [Leonardo Galli] -- More test debugging. [Leonardo Galli] -- Remote Test debugging yey! [Leonardo Galli] -- Remove unecessary test. [Leonardo Galli] -- Using NUnit.Runners so that teamcity build works. [Leonardo Galli] -- Turn installer back on. [Leonardo Galli] -- Disabled installer being picked up, causes error with update api. [Leonardo Galli] -- Now artifacts get pushed even if tests fail. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) package script for Teamcity. [Leonardo Galli] -- Log if ParsedMovieInfo is NULL. [Leonardo Galli] -- Catching predb.me errors hopefully. [Leonardo Galli] - - -## v0.2.0.596 (2017-04-10) - -### **New features** -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) nzbdrone.iss. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) appveyor.yml. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) build-appveyor.cake. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) appveyor.yml. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) appveyor.yml. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) nzbdrone.iss. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) build-appveyor.cake. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) build-appveyor.cake. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) appveyor.yml. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) build-appveyor.cake. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) appveyor.yml. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) nzbdrone.iss. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) nzbdrone.iss. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) README.md. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) "Additional Parameters Field" for Trakt RSS Feed ([#1308](https://github.com/Radarr/Radarr/issues/1308)) [rmangahas-coupa] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) movie search ([#1212](https://github.com/Radarr/Radarr/issues/1212)) [thejacer87] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) ISSUE_TEMPLATE.md. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) ISSUE_TEMPLATE.md. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) ISSUE_TEMPLATE.md. [Devin Buhl] - -### **Fixes** -- Just getting Appveyor to build. [Leonardo Galli] -- Installer should be built too now. [Leonardo Galli] -- Text fixes and got pending releases finally fully working. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) searching for movie after it is added from a list. [Leonardo Galli] -- Specific Subtitle tags (such as nlsub) can now be whitelisted and will be downloaded. [Leonardo Galli] -- Allow Hardcoded subs to be downloaded still. [Leonardo Galli] -- Catching HTTP Errors when adding movies from a list. [Leonardo Galli] -- SABnzbd 2.0 API compatibility ([#1339](https://github.com/Radarr/Radarr/issues/1339)) [Mitchell Cash] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Zero length file causes MediaInfo hanging in 100% cpu load. ([#1340](https://github.com/Radarr/Radarr/issues/1340)) [Mitchell Cash] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Newznab default capabilities erroneously cached if indexer is unavailable. ([#1341](https://github.com/Radarr/Radarr/issues/1341)) [Mitchell Cash] -- Cleanup on mapping logic. Movies with up to 4500 parts are now supported! [Rusk85] -- Released icon is back. [geogolem] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) spelling mistake. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) an error when searching for movies with no imdbid. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) DownloadStation api client for DSM 5.x. ([#1259](https://github.com/Radarr/Radarr/issues/1259)) [Marcelo Castagna] -- Should fix covers not being local. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) error when downloading a movie. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) only one movie appearing when list does not give us a tmdbid. [Leonardo Galli] -- This should fix all imdbid problems with indexers. [Leonardo Galli] -- Revert "Move up IMDB logic in ParsingService, should help with the mismatched movies" [Devin Buhl] -- Move up IMDB logic in ParsingService, should help with the mismatched movies. [Devin Buhl] -- Clean up jsHint warnings ([#1225](https://github.com/Radarr/Radarr/issues/1225)) [Zach] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) pending release service, HDBits, also the release deduper. Clean up housekeeping ([#1211](https://github.com/Radarr/Radarr/issues/1211)) [Devin Buhl] -- Patch/onedr0p 3 16 17 ([#1200](https://github.com/Radarr/Radarr/issues/1200)) [Devin Buhl] -- Revert "Small changes to list sync ([#1179](https://github.com/Radarr/Radarr/issues/1179))" [Devin Buhl] -- Small changes to list sync ([#1179](https://github.com/Radarr/Radarr/issues/1179)) [Devin Buhl] -- Patch/onedr0p 3 14 17 ([#1171](https://github.com/Radarr/Radarr/issues/1171)) [Devin Buhl] -- Maybe fix PTP? Don't have an account, so cannot test. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) for editing quality of movie files. [Leonardo Galli] -- Patch/onedr0p 3 13 17 ([#1166](https://github.com/Radarr/Radarr/issues/1166)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) issue where 1080p Telesyncs get tagged as 1080p Blurays. [Leonardo Galli] - - -## v0.2.0.535 (2017-03-12) - -### **New features** -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) blacklist to work with movies ([#1089](https://github.com/Radarr/Radarr/issues/1089)) [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) README.md. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) error to include Radarr instead of Sonarr ([#1069](https://github.com/Radarr/Radarr/issues/1069)) [flightlevel] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) wiki link for sorting and renaming ([#1045](https://github.com/Radarr/Radarr/issues/1045)) [aptalca] - -### **Fixes** -- Grammar check HelpText for CouchPotato lists ([#1142](https://github.com/Radarr/Radarr/issues/1142)) [James White] -- Preliminary Fix for downloaded error in Wanted section. [Leonardo Galli] -- Fixes banners when searching for new movies. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) issue where searching for new movies is not possible. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) helptext for Jackett API key ([#1121](https://github.com/Radarr/Radarr/issues/1121)) [Mathew Giljum] -- Better method to obtain the folderName. [geogolem] -- Keep the current page the same after clicking Save. [geogolem] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Parsing headers that have a trailing semi-colon ([#1117](https://github.com/Radarr/Radarr/issues/1117)) [Mitchell Cash] -- PreDB Integration. Update Library is advisable. [Leonardo Galli] -- QOL changes to PTP logic ([#1114](https://github.com/Radarr/Radarr/issues/1114)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) for VS for Mac. [Leonardo Galli] -- Ammend to previous commit. [Leonardo Galli] -- Hopefully fix all issues with unlinked movie files. [Leonardo Galli] -- This needs to match with the property forclient mode. [geogolem] -- CP list hotfix. [Devin Buhl] -- Incorrect check for imdbId prefix. [geogolem] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) regression for missing libgdiplus ([#1073](https://github.com/Radarr/Radarr/issues/1073)) [SWu] -- Refactor so that filteringExpressions are constructed in one place less code duplication, easier to manage moving forward. [geogolem] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) filters were added, but they werent being handled via the API. [geogolem] -- Allow larger trakt lists than 500. [geogolem] -- Restructeured readme and added a new logo asset ([#1088](https://github.com/Radarr/Radarr/issues/1088)) [Matthew Treadwell] -- Onedr0p/3 8 17 ([#1087](https://github.com/Radarr/Radarr/issues/1087)) [Devin Buhl] -- Ensure drone factory runs on its specificed interval ([#1067](https://github.com/Radarr/Radarr/issues/1067)) [Tim Turner] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) hotio's nightly docker image. ([#1084](https://github.com/Radarr/Radarr/issues/1084)) [Donald Webster] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Installation, Docker and Setup Guide to new Install section and add Feathub and Wiki to Support ([#1083](https://github.com/Radarr/Radarr/issues/1083)) [Donald Webster] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) the parser for movies with A. [Leonardo Galli] -- Loads only request movie first into full collection. Should fix things. ([#1046](https://github.com/Radarr/Radarr/issues/1046)) [Leonardo Galli] -- Addressing jshint warnings ([#1050](https://github.com/Radarr/Radarr/issues/1050)) [Bill Szeliga] -- Correct DownloadDescisionMaker to use ImdbId, and update the ui a little. ([#1068](https://github.com/Radarr/Radarr/issues/1068)) [Devin Buhl] -- Deluge 1.3.14 API support due to changed json-rpc checks. [Devin Buhl] -- Reverting a change made yesterday regarding sorting the change fixed sorting titles of newly added movies without a refresh however, people have noticed it broke sorting of "In Cinemas" column in general. i commented out the change; but also added a special case in the comment, that would fix the case in question, without breaking the others; however, more investigating is needed because there is an issue with sorting newly added movies in general and the fix this reverts was never good enough anyway. [geogolem] -- Oops -- this was a fix from the last merge - sorry. [geogolem] -- URLEncode the string for searching ([#1055](https://github.com/Radarr/Radarr/issues/1055)) [Mihai Blaga] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) client mode fetching.. only setPageSize when necessary. [geogolem] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) error with weirdly formatted audioChannelPositions on MediaInfo. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) a couple typos ([#1049](https://github.com/Radarr/Radarr/issues/1049)) [Greg Fitzgerald] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) tests. [Devin Buhl] -- Patch/onedr0p ([#1048](https://github.com/Radarr/Radarr/issues/1048)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) all tests and even added some new ones :) ([#835](https://github.com/Radarr/Radarr/issues/835)) [Leonardo Galli] -- Fixes issue where quality settings wont save due to no pagesize. [Leonardo Galli] -- Fixes sorting after adding movies. [geogolem] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) most paging issues on first load. [Leonardo Galli] -- /movies without pagesize or page gives back the old format. [Leonardo Galli] -- This seems to make it more stable. [geogolem] -- Im not too sure why this fixes the problem but now the filterState is respected when returning from another page. [geogolem] -- Use href instead of hostname+port. [geogolem] -- Improve RSS parsing for movies without year. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) ReplaceGermanUmlauts method. [Devin Buhl] - - -## v0.2.0.453 (2017-03-05) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) new TestCase for Parser and fixed spelling error. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) FindByAlternativeTitle in MovieRepo. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) debug messages to check quality. [Leonardo Galli] -- Needed to pass the filterType, received the filterType and handle the filterType. [geogolem] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) more filters to the movie editor ([#905](https://github.com/Radarr/Radarr/issues/905)) [geogolem] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) parsing french movies ([#899](https://github.com/Radarr/Radarr/issues/899)) [Devin Buhl] - -### **Fixes** -- Try to add year to release titles that have no year (foriegn release groups) ([#1028](https://github.com/Radarr/Radarr/issues/1028)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Delay profiles are no longer hidden under advanced settings ([#1019](https://github.com/Radarr/Radarr/issues/1019)) [Mitchell Cash] -- Revert "Added FindByAlternativeTitle in MovieRepo." [Devin Buhl] -- Use http request builder (aided by onedrop) [geogolem] -- Improve indexer health check messages ([#1015](https://github.com/Radarr/Radarr/issues/1015)) [Mitchell Cash] -- Clean RSS feed before detecting type ([#1014](https://github.com/Radarr/Radarr/issues/1014)) [Mitchell Cash] -- Store titleSlug in tags for exclusions and always use TMDBID. [geogolem] -- Also use TMDBID on list sync. [geogolem] -- Always check exclusions with tmdbid. [geogolem] -- An updated radarrAPI has been deployed --> this commit makes trakt authentication ready to be merged to the develop branch. [geogolem] -- Fully functional traktAuthentication using api.couchpota.to with comments for when updated RadarrAPI is deployed. [geogolem] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) error with null dates. [Devin Buhl] -- Patch/more updates ([#1009](https://github.com/Radarr/Radarr/issues/1009)) [Devin Buhl] -- Revert.. [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) "wrong" quality being detected. Scan will be slower though. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) for wrong qualities showing up. Will be slower to load though. [Leonardo Galli] -- Patch/onedr0p 3 4 2017 ([#1006](https://github.com/Radarr/Radarr/issues/1006)) [Devin Buhl] -- Respect the page when initializing the layout. [geogolem] -- Patch/onedr0p updates ([#998](https://github.com/Radarr/Radarr/issues/998)) [Devin Buhl] -- The movie was not being printed correctly, and i believe this was also causing movies to be added when they shouldnt have been... [geogolem] -- Clean up the fetching on loading of MovieEditor and MovieIndex once and for all. [geogolem] -- I dont know why i was doing this inside the for loop... It did not scale well ! fixed. [geogolem] -- Use clone so that we only detect empty collection when collectio is empty.. not when current filter is empty but collectionis not. [geogolem] -- I believe these are old code that is not needed since pagination.. [geogolem] -- Default Wanted and Cutoff to be 50 movies per page, added filtering options to Cutoff and a Search all ([#984](https://github.com/Radarr/Radarr/issues/984)) [Devin Buhl] -- Empty string case should not be only for the contains case. [geogolem] -- Reset filters on save.. [geogolem] -- Possible fix for Custom script ([#973](https://github.com/Radarr/Radarr/issues/973)) [Devin Buhl] -- Hotfix when importing movie ([#971](https://github.com/Radarr/Radarr/issues/971)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) infinite loop. Added default destination test when adding client ([#968](https://github.com/Radarr/Radarr/issues/968)) [Marcelo Castagna] -- Date added in Movie List & Possible Fix for Importing Movies. ([#969](https://github.com/Radarr/Radarr/issues/969)) [Devin Buhl] -- Ensure collection is synced before opening movieDetails. [Tim Turner] -- Revert some changes -- use FullCollection (maybe just for now) [geogolem] -- Just show imdbid or tmdbid for now in exclusions. [geogolem] -- MovieIndexPage Stability + MovieEditor fix ([#925](https://github.com/Radarr/Radarr/issues/925)) [geogolem] -- Patch/galileo fixes ([#951](https://github.com/Radarr/Radarr/issues/951)) [Devin Buhl] -- Patch/updates onedr0p ([#946](https://github.com/Radarr/Radarr/issues/946)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) problem with TMDb list when Year is null, Revert using UrlPathEncode on newznab requests ([#937](https://github.com/Radarr/Radarr/issues/937)) [Devin Buhl] -- Expose more information to the Webhook notification ([#935](https://github.com/Radarr/Radarr/issues/935)) [Ross Valler] -- Fix/implement Webhook notifications ([#901](https://github.com/Radarr/Radarr/issues/901)) [Ross Valler] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) remux 1080p and 2160p as qualities ([#900](https://github.com/Radarr/Radarr/issues/900)) [Devin Buhl] -- NZBGet delete:scan treated as failure ([#898](https://github.com/Radarr/Radarr/issues/898)) [Mitchell Cash] -- Small changes. [Devin Buhl] -- Hotfix. [Devin Buhl] -- List sync with removal ([#656](https://github.com/Radarr/Radarr/issues/656)) [geogolem] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) the footer to show correct information and refresh when FullCollection changes ([#893](https://github.com/Radarr/Radarr/issues/893)) [geogolem] -- Increase fullCollection page size, update Refresh Library command. [Tim Turner] -- Patch/updates ([#887](https://github.com/Radarr/Radarr/issues/887)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) poster placeholder height on small screens ([#883](https://github.com/Radarr/Radarr/issues/883)) [hotio] -- Small UI fixes ([#882](https://github.com/Radarr/Radarr/issues/882)) [hotio] -- Me = idiot. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) an issue where an unloaded movie could case linking to fail. [Leonardo Galli] -- Maybe fix issue with imported files not being linked to the movie? [Leonardo Galli] -- Search is now fixed too. [Leonardo Galli] -- Should fix most issues with paging. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) first steps of paging to movie editor. [Leonardo Galli] -- HDBits prefer/require internal release ([#584](https://github.com/Radarr/Radarr/issues/584)) ([#881](https://github.com/Radarr/Radarr/issues/881)) [Devin Buhl] -- Ignore Deleted Movies ([#755](https://github.com/Radarr/Radarr/issues/755)) ([#879](https://github.com/Radarr/Radarr/issues/879)) [Devin Buhl] -- First fixes for Movie Editor. Testing to see if this approach could work. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) missing showing downloaded instead. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) issue where details page wont load. [Leonardo Galli] -- Paging for movies :) ([#861](https://github.com/Radarr/Radarr/issues/861)) [Leonardo Galli] -- Bug fixes ([#874](https://github.com/Radarr/Radarr/issues/874)) [Devin Buhl] -- The Search All Missing button ([#860](https://github.com/Radarr/Radarr/issues/860)) [geogolem] -- Cleanup min availability ([#846](https://github.com/Radarr/Radarr/issues/846)) [geogolem] -- Some minor cleanup + changed filter on wanted/missing ([#845](https://github.com/Radarr/Radarr/issues/845)) [geogolem] -- Min availability ([#816](https://github.com/Radarr/Radarr/issues/816)) [geogolem] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) NZB Station for Synology ([#841](https://github.com/Radarr/Radarr/issues/841)) [Devin Buhl] -- Patch/filter trakt ([#838](https://github.com/Radarr/Radarr/issues/838)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) language parsing of movies with language in movie name. [Leonardo Galli] - - -## v0.2.0.375 (2017-02-22) - -### **New features** -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) .travis.yml. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) notification logos ([#804](https://github.com/Radarr/Radarr/issues/804)) [hotio] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) ISSUE_TEMPLATE.md. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) PULL_REQUEST_TEMPLATE.md. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) dl-clients ([#732](https://github.com/Radarr/Radarr/issues/732)) [Devin Buhl] -- NetImport - Do not allow TV Series / Mini-Series (works with IMDb) [#699](https://github.com/Radarr/Radarr/issues/699) ([#727](https://github.com/Radarr/Radarr/issues/727)) [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) ISSUE_TEMPLATE.md. [Devin Buhl] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) sort options to match UI ([#707](https://github.com/Radarr/Radarr/issues/707)) [zductiv] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) test for ! [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) parser tests. [Leonardo Galli] - -### **Fixes** -- Patch/bulk import tests ([#833](https://github.com/Radarr/Radarr/issues/833)) [Tim Turner] -- Patch/bulk import qol ([#785](https://github.com/Radarr/Radarr/issues/785)) [Tim Turner] -- URL Encode for newznab query strings, closes [#818](https://github.com/Radarr/Radarr/issues/818) ([#819](https://github.com/Radarr/Radarr/issues/819)) [Mihai Blaga] -- Rename Sonarr to Radarr in DownloadStation client ([#812](https://github.com/Radarr/Radarr/issues/812)) [Mitchell Cash] -- Fixes error message for MovieExistsValidator to state the movie doesn't exist ([#723](https://github.com/Radarr/Radarr/issues/723)) ([#808](https://github.com/Radarr/Radarr/issues/808)) [Ryan Matthews] -- Set PROWL application to Radarr ([#770](https://github.com/Radarr/Radarr/issues/770)) ([#807](https://github.com/Radarr/Radarr/issues/807)) [Ryan Matthews] -- TMDb Lists should be working now :) ([#775](https://github.com/Radarr/Radarr/issues/775)) [Devin Buhl] -- Roll back some code on Net Import ([#772](https://github.com/Radarr/Radarr/issues/772)) [Devin Buhl] -- Check to see if output path is right when DownloadClient.Test is invoked ([#768](https://github.com/Radarr/Radarr/issues/768)) [Marcelo Castagna] -- TMDb Filtering Options: Rating, Min Votes, Min Vote Ave, Original Language, TMDb Genre Ids (CSV), ([#765](https://github.com/Radarr/Radarr/issues/765)) [Devin Buhl] -- Small consistancy updates to PTP and AwesomeHD ([#758](https://github.com/Radarr/Radarr/issues/758)) [Devin Buhl] -- Patch/onedr0p ([#757](https://github.com/Radarr/Radarr/issues/757)) [Devin Buhl] -- Handle download data diskstation ([#744](https://github.com/Radarr/Radarr/issues/744)) [Marcelo Castagna] -- When refreshing movie, refresh Files tab. [Tim Turner] -- Feature/Add TMDb Functionality ([#739](https://github.com/Radarr/Radarr/issues/739)) [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) downloaded quality column to movie editor ([#738](https://github.com/Radarr/Radarr/issues/738)) [zductiv] -- Clean up Trakt a little ([#735](https://github.com/Radarr/Radarr/issues/735)) [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Synology Download Station ([#725](https://github.com/Radarr/Radarr/issues/725)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) pending release table. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Hardcoded .DKSubs. ([#726](https://github.com/Radarr/Radarr/issues/726)) [Devin Buhl] -- Patch/re add ghost migrations ([#724](https://github.com/Radarr/Radarr/issues/724)) [Devin Buhl] -- Patch/onedr0p ([#716](https://github.com/Radarr/Radarr/issues/716)) [Devin Buhl] -- Increase timeout when waiting for rTorrent to finish adding torrent ([#721](https://github.com/Radarr/Radarr/issues/721)) [Mitchell Cash] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) RescanMovie command for single movie. [Tim Turner] -- Hopefully fixes a lot of null reference bugs in BulkImport. [Leonardo Galli] -- Should fix blacklist items disappearing. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) manual import for when downloaded movies are in a folder. [Leonardo Galli] -- Search all missing movie works - missing tab only ([#710](https://github.com/Radarr/Radarr/issues/710)) [zductiv] -- Limit TMDb requests when importing via IMDBid ([#703](https://github.com/Radarr/Radarr/issues/703)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) parsing with lower bluray qualities. [Leonardo Galli] -- Fixes issue with movies with same name but different years being downloaded. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) a few parser issues. Also added some tests. [Leonardo Galli] -- Cutoff tab actually working now. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) trakt links for movies (like sonarr for shows) ([#690](https://github.com/Radarr/Radarr/issues/690)) [geogolem] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Sorting In Wanted and Cutoff ([#693](https://github.com/Radarr/Radarr/issues/693)) [Devin Buhl] -- Pass at seeing if this works on linux now ([#692](https://github.com/Radarr/Radarr/issues/692)) [Devin Buhl] -- Small UI changes ([#691](https://github.com/Radarr/Radarr/issues/691)) [zductiv] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) required flag for PTP ([#688](https://github.com/Radarr/Radarr/issues/688)) [Devin Buhl] -- Wanted & Missing ([#687](https://github.com/Radarr/Radarr/issues/687)) [Devin Buhl] -- * Make Missing/Wanted Work again ([#686](https://github.com/Radarr/Radarr/issues/686)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) MovieMissingModule failed while processing [MovieDownloadedEvent] [Devin Buhl] -- UI Enhancements for Manual Import ([#681](https://github.com/Radarr/Radarr/issues/681)) [Tim Turner] -- May be fix loading view? Idk. [Leonardo Galli] -- Display loading view when changing page size. [Tim Turner] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) ordering in PTP, should prefer GP releases ([#667](https://github.com/Radarr/Radarr/issues/667)) [Devin Buhl] -- Patch/onedr0p updates ([#664](https://github.com/Radarr/Radarr/issues/664)) [Devin Buhl] -- Make Movie Title and Status sortable on Wanted tab ([#662](https://github.com/Radarr/Radarr/issues/662)) [schumi2004] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) paging breaking in bulk import. [Leonardo Galli] -- Bulk Import. ([#583](https://github.com/Radarr/Radarr/issues/583)) [Leonardo Galli] - - -## v0.2.0.299 (2017-02-07) - -### **New features** -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) notif list warning when importing from a list ([#648](https://github.com/Radarr/Radarr/issues/648)) [Devin Buhl] - -### **Fixes** -- Wait 5 seconds before getting the next 35 movies from TMDb using X-RateLimit-Remaining ([#647](https://github.com/Radarr/Radarr/issues/647)) [Devin Buhl] -- Correct the Kickass migration ([#649](https://github.com/Radarr/Radarr/issues/649)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) movies not showing up in Queue when downloading ([#640](https://github.com/Radarr/Radarr/issues/640)) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Movie link in history tab ([#637](https://github.com/Radarr/Radarr/issues/637)) [Devin Buhl] -- Clean up download clients to use radarr as label, fix hoduken, and blackhole. ([#635](https://github.com/Radarr/Radarr/issues/635)) [Devin Buhl] -- Use Movie Name-TmdbId for slug, update toUrlSlug ([#629](https://github.com/Radarr/Radarr/issues/629)) [Devin Buhl] -- Removed Wombles and Kickass, updated torrentpotato and torznab ([#625](https://github.com/Radarr/Radarr/issues/625)) [Devin Buhl] -- Various ui text fixes ([#620](https://github.com/Radarr/Radarr/issues/620)) [Abzie] -- Delay Profile: Fix for when preferred words is null. ([#618](https://github.com/Radarr/Radarr/issues/618)) [vertigo235] - - -## v0.2.0.288 (2017-02-05) - -### **New features** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) 'Case Insensitive.' to preferred tags info to help-inline. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) more options to trakt, popular movies, upcoming, anticipated etc.. [Devin Buhl] - -### **Fixes** -- Preferredcount -> preferredCount. [vertigo235] -- Delay Profile: Require preferred word to skip delay. [vertigo235] -- Delay Profile: Delay for at least 1 preferred word. [vertigo235] -- Delay Profile: Upgradable Check Fix. [vertigo235] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) ical ics file ([#603](https://github.com/Radarr/Radarr/issues/603)) [schumi2004] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) issue where quality weight was mapped wrongly. Fixes [#597](https://github.com/Radarr/Radarr/issues/597) [Leonardo Galli] -- Runtime error fix. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) runtime issues. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) glaringly obvious mistake that caused RSS Sync to fail. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) warning for docker users when switching branch. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) plain "ES" audioProfile. ([#569](https://github.com/Radarr/Radarr/issues/569)) [Chris Allen] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) delay specification when delay is not set to zero. [Leonardo Galli] -- Use shorter format Profile string. ([#561](https://github.com/Radarr/Radarr/issues/561)) [Chris Allen] -- Use movieFile instead of episodeFile. ([#560](https://github.com/Radarr/Radarr/issues/560)) [Chris Allen] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) expanded DTS audio codecs to FileNameBuilder and fix up Atmos TrueHD audioCodec string. ([#559](https://github.com/Radarr/Radarr/issues/559)) [Chris Allen] -- Don't display mapped movies in import list. [Tim Turner] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Delete modal when adding movie. [Tim Turner] -- Delete files now works. Fixes [#127](https://github.com/Radarr/Radarr/issues/127) [Leonardo Galli] -- First pass regarding delete. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) error for movies with less than 4 characters. Fixes [#507](https://github.com/Radarr/Radarr/issues/507) [Leonardo Galli] - - -## v0.2.0.267 (2017-01-30) - -### **New features** -- Updates to ptp, and using caching for cookie. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) the regex in Parser, Add workprint and telesync, change R5 to regional allow for R[0-9]{1}, changed the weights. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) weights. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) new qualities, added new qualities to profile class. Left to do: write migration, and tests. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) Fetch List button style. [Tim Turner] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) options for watched, and watchlist, and customlist to trakt. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) HDBits to work with Radarr. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) taskscheduler when config is saved with netimportsynccommand. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) Synology Indexer For Movies ([#486](https://github.com/Radarr/Radarr/issues/486)) [vertigo235] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) option to specify preferred words in quality profile. ([#462](https://github.com/Radarr/Radarr/issues/462)) [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) GeneralViewTemplate.hbs. [Jordan] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) lang in UI to what profile / lang they choose when they add a movie. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) JoinProxy.cs. [hotio] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) Plex Movie Sections. [vertigo235] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) slack for movies. [vertigo235] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) README.md. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) to favicon section, according to ([#416](https://github.com/Radarr/Radarr/issues/416)) [hotio] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) default sort order ([#429](https://github.com/Radarr/Radarr/issues/429)) [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) ico files. [hotio] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) UI logos. [hotio] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) localstorage key prefixes. [Tim Turner] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Forms Auth Cookie. Fixes [#285](https://github.com/Radarr/Radarr/issues/285) [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) Files tab when movie renamed. [Tim Turner] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) Rename Preview to support folder renaming. [Tim Turner] -- Net Import UI Updates. [Tim Turner] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) trakt user list importing. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) easy to use List Selection for manual import use later. The place where this resides will change. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Base URL. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) couchpotato, and added a test. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) README.md. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) MovieModule. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) ISSUE_TEMPLATE.md. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) sizing information in settings tab. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) height of posters to accomodate additional labels. [Tim Turner] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) SkyHookProxy.cs. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) Test Files for AddPaused to NZBGET. [vertigo235] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Upgraded SQLite binares for macOS. [Keivan] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Upgraded SQLite binaries for Windows (3.16.0) [Keivan Beigi] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) website and donation links. [Leonardo Galli] -- ![Changed](https://img.shields.io/badge/--%20-Changed-orange.svg?style=flat-square) Scheduled Refresh Series to Refresh Movie. Fixes [#301](https://github.com/Radarr/Radarr/issues/301) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) movie studio to movie details page ([#262](https://github.com/Radarr/Radarr/issues/262)) [Vlad Ilies] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) NewznabRequestGenerator.cs. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) README.md. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) trailer link to movie links ([#255](https://github.com/Radarr/Radarr/issues/255)) ([#282](https://github.com/Radarr/Radarr/issues/282)) [Vlad Ilies] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) HttpNetImporterBase. Still needs work to correctly handle failures. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) some abstraction for settings. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Qualties to Settings. [Devin Buhl] -- Updates and compile-able. [Devin Buhl] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) README.md. [Leonardo Galli] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) .gitignore and remove Thumbs.db files ([#276](https://github.com/Radarr/Radarr/issues/276)) [hotio] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) README.md ([#271](https://github.com/Radarr/Radarr/issues/271)) [hotio] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) README.md. [hotio] -- ![Updated](https://img.shields.io/badge/--%20-Updated-blue.svg?style=flat-square) README.md. [hotio] -- Updates. [Devin Buhl] - -### **Fixes** -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) importfromlist abck. [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) the filter modes on the movie list xD. [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) issues with different languages than english when adding alternative titles. [Leonardo Galli] -- Use username, password and passkey for passthepopcorn. [Devin Buhl] -- Migration migraine-tion. [Devin Buhl] -- Ensure qualities don't overflow profile card. [Tim Turner] -- Migration. [Devin Buhl] -- Migration. [Devin Buhl] -- Make DVDR not unlimited. [Devin Buhl] -- Set Drone Factory Interval default to 0 ([#515](https://github.com/Radarr/Radarr/issues/515)) [Tim Turner] -- Make year nullable for trakt. [Devin Buhl] -- Make year nullable, and rmember the profileid. [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Proper port validation for download clients and connections. [Mark McDowall] -- Make NetImport sync interval work (needs some testing) [Devin Buhl] -- Allow Duplicate Preferred Words ([#484](https://github.com/Radarr/Radarr/issues/484)) [vertigo235] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) for movies without an imdbid. Fixes 176. [Leonardo Galli] -- Quality of an existing movie file can now be edited. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) recognition of 4k Movies upon import. [Leonardo Galli] -- This should hopefully fix the error that decisions were not ordered correctly and therefore just the first release was grabbed. [Leonardo Galli] -- Remove confusing warning about file not being loaded. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) movie year to NotificationService ([#496](https://github.com/Radarr/Radarr/issues/496)) [Tim Turner] -- Revert "Merge branch 'rename-existing-folder' into develop" [Tim Turner] -- Revert "Add movie year to NotificationService ([#489](https://github.com/Radarr/Radarr/issues/489))" [Tim Turner] -- Revert "Ensure the movie isn't delete when the folder isn't renamed ([#491](https://github.com/Radarr/Radarr/issues/491))" [Tim Turner] -- Ensure the movie isn't delete when the folder isn't renamed ([#491](https://github.com/Radarr/Radarr/issues/491)) [Tim Turner] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) movie year to NotificationService ([#489](https://github.com/Radarr/Radarr/issues/489)) [Tim Turner] -- Kodi Update Fix: OldFiles -> OldMovieFiles ([#483](https://github.com/Radarr/Radarr/issues/483)) [vertigo235] -- More Notification Updates ([#482](https://github.com/Radarr/Radarr/issues/482)) [vertigo235] -- Moviefile, what movie file? ([#466](https://github.com/Radarr/Radarr/issues/466)) [vertigo235] -- Remove mofilefile id for now ([#464](https://github.com/Radarr/Radarr/issues/464)) [vertigo235] -- Download Movie Quality & Formatting. [vertigo235] -- Custom Script Fix: Parse movie not episode. [vertigo235] -- Fixes issue [#447](https://github.com/Radarr/Radarr/issues/447) (Notification Icon for Join) [hotio] -- Only use internal for RSS Sync. [Devin Buhl] -- Include only internal for AHD. [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) new rss-sync threshold. [schumi2004] -- "fixed" error message. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) link to Activity -> History Tab ([#408](https://github.com/Radarr/Radarr/issues/408)) [Tim Turner] -- Allow renaming of movies that don't have an "Edition" ([#432](https://github.com/Radarr/Radarr/issues/432)) [Tim Turner] -- [#292](https://github.com/Radarr/Radarr/issues/292) - Allow longer threshold for RSS Sync ([#428](https://github.com/Radarr/Radarr/issues/428)) [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) year to search ([#425](https://github.com/Radarr/Radarr/issues/425)) [Devin Buhl] -- Initial Notification Updates and Support ([#401](https://github.com/Radarr/Radarr/issues/401)) [vertigo235] -- Fixes an issue where movies with (year) at the beginning were recognized with a title of "(" [Leonardo Galli] -- Blind fix to support seperator in movie tags. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) issue with certain audio streams. Should fix [#404](https://github.com/Radarr/Radarr/issues/404) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) {Tags} to renaming options. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) when libgdiplus isn't present. [Leonardo Galli] -- Proper ico and favicon. [hotio] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) issue where monitored movies were still downloaded. Fixes [#326](https://github.com/Radarr/Radarr/issues/326) [Leonardo Galli] -- Fixes issue when multiple audio channels are present. Fixes [#315](https://github.com/Radarr/Radarr/issues/315) Fixes [#294](https://github.com/Radarr/Radarr/issues/294) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) duplicate key prefixing. [Tim Turner] -- Prefix localstorage keys with "Radarr" [Tim Turner] -- Optimized logo ([#375](https://github.com/Radarr/Radarr/issues/375)) [hotio] -- Set update interval to 30 minutes if on nightly. [Leonardo Galli] -- Prefix Keys with "Radarr" [Tim Turner] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) more filter options to movie list. [Devin Buhl] -- Search selected button in wanted tab works. [Vlad Ilies] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) [#228](https://github.com/Radarr/Radarr/issues/228) - Fix Drone Factory interval input not saving. [Tim Turner] -- Remove old folder and all contents. [Tim Turner] -- Movie reference properly updates UI now. [Tim Turner] -- Be more proper about Ensuring the folder exists. [Tim Turner] -- Undo unecessary changes. [Tim Turner] -- Move folder on rename; event doesn't fire yet. [Tim Turner] -- Only show "Display Existing Movies" toggle after selecting a folder. [Tim Turner] -- Clean up settings UI. [Tim Turner] -- Manual Import works now! [Leonardo Galli] -- Only wanted is default for CP. [Devin Buhl] -- Manual importing almost done. Needs fixing for mapping movies. [Leonardo Galli] -- Nullable all the fields.. [Devin Buhl] -- Rephrase wording. [Devin Buhl] -- Monitored to false for movies already downloaded on CP. [Devin Buhl] -- Allow null value for seed time. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) basic ui of manual import. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) importing for StevenLu. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) StevenLu to csproj. [Devin Buhl] -- First pass at ui for manually importing from lists. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) import from http://movies.stevenlu.com/ [Devin Buhl] -- Movies can now be added monitored or unmonitored. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Ability to set RootFolderPath for Net Import List. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) netimport search and add NetImportSyncCommand. [Leonardo Galli] -- Remove duplicate code. [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) movies being clobbered when a new list is sent thru. [Devin Buhl] -- Implement NetImportSearchService. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) urlBase option to CP settings. [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) media info parsing of multiple audio channels. Fixes [#315](https://github.com/Radarr/Radarr/issues/315) Fixes [#294](https://github.com/Radarr/Radarr/issues/294) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) styling. Fixed definitions not being returned. [Leonardo Galli] -- Rethought about where certain things are stored. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) stuff regarding the ordering of Fields. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) migration to include ConfigContract and EnableAuto. Also fixed redirects on lists. [Leonardo Galli] -- Second UI Pass, Testing now works and other little things. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) up presets. [Leonardo Galli] -- Make presets work for RSS Import :) [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) CP list class. [Leonardo Galli] -- Migration migrainetion. [Devin Buhl] -- Couchpotato API classes. [Devin Buhl] -- WIP UI Update for adding lists. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Corruped Media Cover Images. [Leonardo Galli] -- Should fix 4K releases not getting parsed. [Leonardo Galli] -- Adds 'Movie Title, The' filename option ([#359](https://github.com/Radarr/Radarr/issues/359)) [Krystian Charubin] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) issue when movie file is null. [Leonardo Galli] -- Should fix upgrading of existing movie files. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) tests for 4K quality. [Leonardo Galli] -- Hopefully a fix for corrupt media covers. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) blacklist being ignored by download decision maker. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) helptext to nzbget "add paused" settings. ([#363](https://github.com/Radarr/Radarr/issues/363)) [vertigo235] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) year to quick search results. [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) issue with reimporting on movie fresh ([#357](https://github.com/Radarr/Radarr/issues/357)) [Tim Turner] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) MediaCoversUpdatedEvent broadcast. [Tim Turner] -- Bug fix for 15 movie wanted tab ([#348](https://github.com/Radarr/Radarr/issues/348)) [Vlad Ilies] -- Blacklisting works now. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) pushover priority values. [vertigo235] -- Hopefully fix issue when importing. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) download status to poster view. [Tim Turner] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) IMDb ID to file naming. [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) build. [Vlad Ilies] -- Basic implementation of the wanted tab (#31) [Vlad Ilies] -- Revert DownloadedMovieScanCommand to DownloadedEpisodesScanCommand. [Devin Buhl] -- Turn off scene mapping task [#329](https://github.com/Radarr/Radarr/issues/329), update TaskManager to use 'DownloadedMovieScanCommand' [Devin Buhl] -- Revert "Sonarr/sqlite updates" [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) "Add Paused" option for NZBGET downloader. [vertigo235] -- Upgraded System.Data.SQLite to 1.0.104.0. [Keivan Beigi] -- Revert "Upgraded System.Data.SQLite to 1.0.104.0" [Keivan Beigi] -- Remove series references. [Leonardo Galli] -- Hopefully fix download ordering. [Leonardo Galli] -- Maybe this will solve the error. [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Issue when adding some movies. [Devin Buhl] -- Hopefully fix RSSSync. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) publish date [#239](https://github.com/Radarr/Radarr/issues/239) [Devin Buhl] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Issue #91 - "Search All Missing" wording. [Aenima99x] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Support for changing file date to either cinema or physical release. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) for movies with . in title when importing them. Fixes [#268](https://github.com/Radarr/Radarr/issues/268) [Leonardo Galli] -- Remove - as replacement for : [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) only one movie showing. Fix more button not showing up. [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) Audiochannels just being added together. [Leonardo Galli] -- Clean up rename preview & organize. [Tim Turner] -- Disambiguate Movie from Episode Renaming. [Tim Turner] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) for hardcoded subs regex. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) Calendar Tab back. Fixes #32. [Leonardo Galli] -- Removed duplicate PublishDate. [Devin Buhl] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) support section to README ([#281](https://github.com/Radarr/Radarr/issues/281)) [hotio] -- First pass at hiding existing movies upon import. [Tim Turner] -- 95% done with hiding existing movies. [Tim Turner] -- Basis of UI Update. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) base for netimport api. Still nothing on the UI side. [Leonardo Galli] -- Imdbid parsing works now from url. [Leonardo Galli] -- Big Abstraction for IMDBWatchlist -> RSSImport (With a test) [Leonardo Galli] -- Whoops, only parse title once. [Devin Buhl] -- Reworked README ([#280](https://github.com/Radarr/Radarr/issues/280)) [hotio] -- Move Travis builds to container-based infrastructure ([#273](https://github.com/Radarr/Radarr/issues/273)) [Mitchell Cash] -- Adding only original title is now allowed. Fixes [#272](https://github.com/Radarr/Radarr/issues/272) [Leonardo Galli] -- ![Fixed](https://img.shields.io/badge/--%20-Fixed-red.svg?style=flat-square) for special characters when searching with title in Newznab. Fixes #97. [Leonardo Galli] -- ![New](https://img.shields.io/badge/--%20-New-brightgreen.svg?style=flat-square) {Original Title} to FileNameBuilder. Fixes [#103](https://github.com/Radarr/Radarr/issues/103) [Leonardo Galli] -- Release Group should now be available for renamer to use. [Leonardo Galli] -- Cleanup README. [Mitchell Cash] -- Few changes. [Devin Buhl] -- Initial autoimporter commit. [Devin Buhl] - - diff --git a/changelog.tpl b/changelog.tpl deleted file mode 100644 index 24e32051d..000000000 --- a/changelog.tpl +++ /dev/null @@ -1,14 +0,0 @@ -# Changelog - -{{#versions}} -## {{{label}}} - -{{#sections}} -### {{{label}}} -{{#commits}} -- {{{subject}}} [{{{author}}}] -{{/commits}} - -{{/sections}} - -{{/versions}} diff --git a/changelog_release.tpl b/changelog_release.tpl deleted file mode 100644 index f4eb2c1ba..000000000 --- a/changelog_release.tpl +++ /dev/null @@ -1,15 +0,0 @@ -**To receive further Pre-Release updates, please change the branch to develop. (Settings -> General (Show Advanced Settings) -> Updates -> Branch)** - -{{#versions}} - -{{#sections}} -{{{label}}} -{{#commits}} -- {{{subject}}} [{{{author}}}] -{{/commits}} - -{{/sections}} - -{{/versions}} - -**Note**: The OSX version does not automatically launch the browser. You have to go to http://localhost:7878 by yourself in a browser of your choice.