Skip to content

Commit

Permalink
Merge remote-tracking branch 'rembo10/develop'
Browse files Browse the repository at this point in the history
* rembo10/develop:
  Fixed link to installation wiki
  Improved the CHANGELOG, part 3
  Improved the CHANGELOG, part 2
  Improved the CHANGELOG
  Fix for #1994
  • Loading branch information
basilfx committed Nov 10, 2014
2 parents 9968bb2 + d0baeec commit 13f34a1
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 8 deletions.
7 changes: 0 additions & 7 deletions CHANGELOG

This file was deleted.

100 changes: 100 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 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).

## 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 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).
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
11 changes: 11 additions & 0 deletions lib/pkg_resources.py
Original file line number Diff line number Diff line change
@@ -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())

0 comments on commit 13f34a1

Please sign in to comment.