From fda4658e9230e7f6307391e8183421111f5c28f6 Mon Sep 17 00:00:00 2001 From: Bas Stottelaar Date: Mon, 10 Nov 2014 20:47:27 +0100 Subject: [PATCH 1/5] Fix for #1994 --- lib/pkg_resources.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/pkg_resources.py diff --git a/lib/pkg_resources.py b/lib/pkg_resources.py new file mode 100644 index 00000000..d82b7446 --- /dev/null +++ b/lib/pkg_resources.py @@ -0,0 +1,11 @@ +# Stub file. Not affiliated with the original 'pkg_resource.py' included in the +# 'setuptools' package. + +def iter_entry_points(group, name=None): + """ + Stub method to make APScheduler happy. This method is only imported in + 'lib/apscheduler/schedulers/base.py' to autodetect triggers, executors and + job stores. Headphones does not use this functionality, so it just returns + an iterator of an empty dict. + """ + return iter(dict()) \ No newline at end of file From 09c041056ef781d04d17ca5de83f0127fd67bb88 Mon Sep 17 00:00:00 2001 From: Bas Stottelaar Date: Mon, 10 Nov 2014 20:48:06 +0100 Subject: [PATCH 2/5] Improved the CHANGELOG --- CHANGELOG | 7 ---- CHANGELOG.md | 100 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 100 insertions(+), 7 deletions(-) delete mode 100644 CHANGELOG create mode 100644 CHANGELOG.md diff --git a/CHANGELOG b/CHANGELOG deleted file mode 100644 index 94103e14..00000000 --- a/CHANGELOG +++ /dev/null @@ -1,7 +0,0 @@ -v0.5 Released 10 Nov 2014 -------------------------- -- Several bug fixes (please retest your posted issues) -- Cue splitter -- Other improvements - - diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..0cfca3ea --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,100 @@ +# Changelog + +## v0.5 +Released 10 November 2014 + +Highlights: +* Added: CUE splitter +* Added: filter search result by MusicBrainz Release Group ID +* Added: follow symlinks while scanning library (#1953) +* Fixed: crash during post processing (#1897) +* Fixed: embedding lyrics (#1896) +* Fixed: HTTP errors with older versions of Python 2.6 +* Fixed: jump back to top of page (#1948) +* Improved: parse MusicBrainz RGID first when post processing (#1952) +* Improved: Growl unicode characters (#1695) +* Improved: search handling for PB and KAT +* Improved: Last.FM API support (#1877) +* Improved: upgraded CherryPy to version 3.6.0 +* Improved: upgraded Requests to version 2.4.1 +* Improved: upgraded APScheduler to version 3.0.1 +* Improved: lot of code refactoring + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.4...v0.5). + +## v0.4 +Released 20 September 2014 + +Highlights: +* Added: support for libav-tools (which replaces FFmpeg under Ubuntu) +* Added: option to freeze library when post processing +* Added: Songkick per area +* Added: rename original NFO file (#1797) +* Removed: removed dead search providers +* Fixed: removed left-overs of old packages +* Improved: rename by original folder (#1811) +* Improved: uTorrent fixes +* Improved: delayed loading of album art +* Improved: search result parser + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.4...v0.4). + +## v0.3.4 released +Released 15 May 2014 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.3...v0.3.4). + +## v0.3.3 released +Released 05 May 2014 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.2...v0.3.3). + +## v0.3.2 +Released 17 April 2014 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.1...v0.3.2). + +## v0.3.1 +Released 11 April 2014 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3...v0.3.1). + +## v0.3 +Released 09 April 2014 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2.3...v0.3). + +## v0.2.3 +Released 28 March 2014 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2.2...v0.2.3). + +## v0.2.2 +Released 15 January 2014 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2.1...v0.2.2). + +## v0.2.1 +Released 13 January 2014 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2...v0.2.1). + +## v0.2 +Released 13 January 2014 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.1.2...v0.2). + +## v0.1.2 +Released 11 October 2013 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.1.1...v0.1.2). + +## v0.1.1 +Released 26 August 2013 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.1...v0.1.1). + +## v0.1 +Released 05 August 2013 + +the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/2156e1341405d07c5bcfbe994f6b354b32d94cda...v0.1). \ No newline at end of file From 43f5fe421ba6e16c35a39caf1fc037317a83e1e0 Mon Sep 17 00:00:00 2001 From: Bas Stottelaar Date: Mon, 10 Nov 2014 20:48:43 +0100 Subject: [PATCH 3/5] Improved the CHANGELOG, part 2 --- CHANGELOG.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cfca3ea..b323d9cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ Highlights: * Improved: upgraded APScheduler to version 3.0.1 * Improved: lot of code refactoring -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.4...v0.5). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.4...v0.5). ## v0.4 Released 20 September 2014 @@ -33,68 +33,68 @@ Highlights: * Removed: removed dead search providers * Fixed: removed left-overs of old packages * Improved: rename by original folder (#1811) -* Improved: uTorrent fixes +* Improved: uTorrent fixess * Improved: delayed loading of album art * Improved: search result parser -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.4...v0.4). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.4...v0.4). ## v0.3.4 released Released 15 May 2014 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.3...v0.3.4). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.3...v0.3.4). ## v0.3.3 released Released 05 May 2014 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.2...v0.3.3). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.2...v0.3.3). ## v0.3.2 Released 17 April 2014 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.1...v0.3.2). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.1...v0.3.2). ## v0.3.1 Released 11 April 2014 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3...v0.3.1). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3...v0.3.1). ## v0.3 Released 09 April 2014 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2.3...v0.3). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2.3...v0.3). ## v0.2.3 Released 28 March 2014 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2.2...v0.2.3). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2.2...v0.2.3). ## v0.2.2 Released 15 January 2014 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2.1...v0.2.2). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2.1...v0.2.2). ## v0.2.1 Released 13 January 2014 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2...v0.2.1). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.2...v0.2.1). ## v0.2 Released 13 January 2014 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.1.2...v0.2). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.1.2...v0.2). ## v0.1.2 Released 11 October 2013 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.1.1...v0.1.2). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.1.1...v0.1.2). ## v0.1.1 Released 26 August 2013 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.1...v0.1.1). +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.1...v0.1.1). ## v0.1 Released 05 August 2013 -the full list of commits can be found [here](https://github.com/rembo10/headphones/compare/2156e1341405d07c5bcfbe994f6b354b32d94cda...v0.1). \ No newline at end of file +The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/2156e1341405d07c5bcfbe994f6b354b32d94cda...v0.1). \ No newline at end of file From 6cb283cdf28f3eca90d731685775760370d0014c Mon Sep 17 00:00:00 2001 From: Bas Stottelaar Date: Mon, 10 Nov 2014 20:49:30 +0100 Subject: [PATCH 4/5] Improved the CHANGELOG, part 3 --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b323d9cd..7814c771 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,12 +39,12 @@ Highlights: The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.4...v0.4). -## v0.3.4 released +## v0.3.4 Released 15 May 2014 The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.3...v0.3.4). -## v0.3.3 released +## v0.3.3 Released 05 May 2014 The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.3.2...v0.3.3). From d0baeec53db27893df5044ddb88fbd90845ced43 Mon Sep 17 00:00:00 2001 From: Bas Stottelaar Date: Mon, 10 Nov 2014 20:56:26 +0100 Subject: [PATCH 5/5] Fixed link to installation wiki --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb3a9b35..82e72e36 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ You are free to join the Headphones support community on IRC where you can ask q ## Installation and Notes -* [Installation page](../../wiki/Usage-guide) shows you how to install Headphones. +* [Installation page](../../wiki/Installation) shows you how to install Headphones. * [Usage guide](../../wiki/Usage-guide) introduces you to Headphones. * [Troubleshooting page](../../wiki/TroubleShooting) in the wiki can help you with common problems.