diff --git a/CHANGELOG b/CHANGELOG index ba77fc4a..0aaa7262 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,53 @@ +Version 0.2.8 +17 February 2018 + +Features: +--------- + +- Lastfm scrobbling (@rien333) (#758) +- `splaylist` and `suser` commands for Spotify (@ritiek) (#678) +- Autoplay support (@nikhilweee) (#594) +- `genpl` command (@nishanthkarthik) (#642) +- `video_format` configuration setting (@Vrihub) (#656) +- `live` command for live streams (@Razesdark) (#635) +- Add time column (@akaWolf) (#582) +- Add video ID column (@Razesdark) (#627) +- Allow filtering search by duration (@jas32096) (#548) +- Allow filtering search by date (@jas32096) (#553) +- Add `history recent` to display history without duplicates (@srvanrell) (#510) +- `--no-textart` to disable ascii art (for screenreaders) (@Gongreg) (#517) +- `set_title` option to disable setting window title (@ardrabczyk) (#498) +- Add `s` command for getting stream information (@ritiek) (#675) +- Add option to disable mpris (@hrnr) (#728) +- Generate playlist from video description (@Razesdark) (#649) + +Enhancements: +------------- +- Store playlists as m3u files instead of binary (@kraetzin) (#682) +- Show replies when displaying comments (@paulfertser) (#677) +- Use https urls for album art (@vszakats) (#574) +- When using "repeat" with mpv, keep player running (@ritiek) (#660) +- Display artist/album in mpris using lastfm (@vn-ki) (#739) +- Use channel.list API for user search (@Razesdark) (#628) +- Maintain volume across songs with mpv (@Razesdark) (#720) +- Prevent mpris from crashing the main process (@hrnr) (#728) + +Bug fixes: +---------- +- Fix mpris seeking with recent mpv vesions (@mg6) (#687) +- Fix removing video from multi-page playlist (@kraetzin) (#695) +- Skip unavailable tracks (@ritiek) (#734) +- Correctly display minutes/seconds (@Laxa) (#748) +- Handle `null` time-pos from mpv (@pritambaral) (#519) +- Fix da/dv command regex (@Vrihub) (#691) +- Skip channels in video/playlist searches (@ritiek) (#664) +- Fix divide by zero error (@ids1024) (#620) + +Use `git log v0.2.7.1..0.2.8` to see all changes, including various minor +fixes, documentation changes, etc. not included here. + +------------------------------------------------------------------------------- + Version 0.2.7.1 6 July 2016 diff --git a/VERSION b/VERSION index 3d8ae3a9..92ed4324 100644 --- a/VERSION +++ b/VERSION @@ -1,4 +1,4 @@ # This file is used by clients to check for updates -version 0.2.7.1 +version 0.2.8 diff --git a/mps_youtube/__init__.py b/mps_youtube/__init__.py index 2a7bcc8c..7ed57d69 100644 --- a/mps_youtube/__init__.py +++ b/mps_youtube/__init__.py @@ -1,5 +1,5 @@ -__version__ = "0.2.7.1" -__notes__ = "released 6 July 2016" +__version__ = "0.2.8" +__notes__ = "released 17 February 2018" __author__ = "np1" __license__ = "GPLv3" __url__ = "https://github.com/mps-youtube/mps-youtube" diff --git a/setup.py b/setup.py index 6bf2dc1e..6b1fd101 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ from setuptools import setup -VERSION = "0.2.7.1" +VERSION = "0.2.8" options = dict( name="mps-youtube",