Skip to content

Commit

Permalink
Version 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ids1024 committed Jan 1, 2016
1 parent f7ee349 commit 6f1bc54
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 9 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
Version 0.2.6
1 January 2016

Features:
- Add browserplay command to play video in browser (rjvani) (#355 #390)
- Make url command support multiple url, and allow loading urls from file
(paulnicolet) (#90 #391)
- Make youtube id available to download command (ids1024) (#375)
- Make pagination work properly for all lists of songs (local playlists, etc.)
and make them all support the dump command (ids1024) (#201)
- Show warning when adding duplicate track to playlist (BensonQiu) (#374 #383)

Bug fixes:
- Support playlists longer than 200 items (ids1024) (#192)
- Make dapl download complete playlist (JKatzwinkel) (#294 #325)
- Use pyperclip instead of xerox, fixing clipboard on linux (ids1024) (#311)
- Fix error message on windows when video title has & (ids1024) (#321)
- Run notifier command in background (hrnr) (#339)
- Correctly handle -v option of play (TimoDritschler) (#352)
- Make it possible to use a pager with --help (livingBEEF) (#349)
- Allow mplayer for https streams if version is new enough
(ids1024 Evidlo paddatrapper) (#315 #336 #317)
- Use mpv.com instead of mpv.exe on windows (ids1024)

Internal API changes:
- Split code into several files (still a work in progress) (ids1024) (#208)
- Use a python decorator to declare commands (ids1024)
- Create a paginatesongs() function for handling the pagination and dump
command uniformly as mentioned in features (#399) (ids1024)
- Various others

There have been various other small bug fixes and internal API changes. Use
`git log v0.2.5..0.2.6` to see all of them.

-------------------------------------------------------------------------------

Version 0.2.5
1 June 2015

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is used by clients to check for updates

version 0.2.5
version 0.2.6

13 changes: 8 additions & 5 deletions mps_youtube/helptext.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,16 +234,19 @@ def helptext():
""".format(c.ul, c.w, c.y)),

("new", "New Features", """
{0}New Features in v0.2.2{1}
{0}New Features in v0.2.6{1}
- Display playing resolution / bitrate in status line (Brebiche38)
- Add browserplay command to play video in browser (rjvani)
- Skip to previously played item (ids1024)
- Make url command support multiple url, and allow loading urls from file
(paulnicolet)
- Enable custom keymap using mplayer/mpv input.conf file (ids1024)
- Make youtube id available to download command (ids1024)
- Enable custom downloader application (ids1024 & np1){2}
- Make pagination work properly for all lists of songs (local playlists,
etc.) and make them all support the dump command (ids1024)
- Show warning when adding duplicate track to playlist (BensonQiu){2}
""".format(c.ul, c.w, c.y))]


Expand Down
4 changes: 2 additions & 2 deletions mps_youtube/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"""

__version__ = "0.2.6-dev"
__notes__ = "development version"
__version__ = "0.2.6"
__notes__ = "released 1 January 2016"
__author__ = "np1"
__license__ = "GPLv3"
__url__ = "http://github.com/np1/mps-youtube"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

options = dict(
name="mps-youtube",
version="0.2.5",
version="0.2.6",
description="Terminal based YouTube player and downloader",
keywords=["video", "music", "audio", "youtube", "stream", "download"],
author="np1",
Expand Down

0 comments on commit 6f1bc54

Please sign in to comment.