From 8e6ee24d8e99c09f1577b89bcf34c746dd2f3928 Mon Sep 17 00:00:00 2001 From: Taiko2k Date: Thu, 2 Nov 2017 18:00:43 +1300 Subject: [PATCH] update to 2.6.0 --- CHANGELOG.txt | 17 +++++++++-------- docs/features.md | 21 +++------------------ docs/index.html | 16 +++++++++++++++- docs/setup.md | 9 +++------ tauon.py | 2 +- 5 files changed, 31 insertions(+), 34 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4cc348c5b..37fe269dc 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -5,21 +5,22 @@ v2.6.0 - Added time cursor to seek bar on wheel click - Added sorting function for album duration - - Replaced view menu with new view box - - Replaced track info box's lyrics label to a button that shows lyrics in lyrics view - - Removed 'Return to standard' view function - - Changed behavior of search box to close on return + - Added new view switcher box - Moved 'copy lyrics' function to lyrics menu - Moved 'toggle breaks' function to tab menu - - Duplicated transcode folder function to folder menu - - Set gallery highlight to animate on 'show playing' + - Changed track info box's lyrics label to a button that shows lyrics in lyrics view + - Changed behavior of search box to close on return + - Changed folder menu to include the transcode folder function + - Changed gallery highlight to animate on 'show playing' - Removed detection of mp4 files - - Removed optional speedup module (No noticeable difference) + - Removed optional speedup module + - Removed 'Return to standard' view function - Fixed scrollbar scrolling past bottom panel - Fixed track box attribute hit boxes being slightly off - Fixed show playing in Art+Tracks view having incorrect alignment on last album - Fixed drag mode being activated on track menu click in Art+Track view - - [Linux[ Fixed some errors that were reported on console + - Fixed art+tracks view crashing if the play queue was empty + - [Linux] Fixed some errors that were reported on console - [Linux] Fixed crash on start on Openbox - [Linux] Fixed gstreamer mode not advancing tracks diff --git a/docs/features.md b/docs/features.md index 38f310428..5b4a8046a 100644 --- a/docs/features.md +++ b/docs/features.md @@ -20,17 +20,6 @@ | MOD | | | | -### UI and Layouts - - - Theme files for changing UI colours (not all elements customisable) - - Track list - - Album art - - Album gallery - - Basic spectrum visualization and level meter - - Custom columns with sorting - - Lyrics display - - High DPI (2x) - ### External service integration - Last.fm scrobbling @@ -68,7 +57,7 @@ - Cross fade (only) - Replay gain (Track and Album gain from metadata only) -## Other common player features not implemented: +## Other common player features not featured: - Codecs: ALAC, Musepack, TAK, MOD - Folder monitoring / auto update @@ -85,12 +74,8 @@ - Auto DJ - Timer / Alarm - Genre filtering - -## Won't implement / Refused - - - Expanded support for proprietary formats (such as WMA) - - Per track ratings - - Folder tree view + - Per track ratings + - Folder tree view ## Out of scope diff --git a/docs/index.html b/docs/index.html index 479289cf5..28561ecad 100644 --- a/docs/index.html +++ b/docs/index.html @@ -23,7 +23,7 @@

Tauon Music Box    

-
v2.5.2
+
v2.6.0
View Github page
@@ -55,7 +55,21 @@

Tauon Music Box    

+
+

NOVEMBER 2 - Version 2.6.0 Released

+
+

Added new view switcher that replaces the existing view menu. +
Added button to show lyrics in track info box.

+ + +
+
.exe
+
+
AUR
+
+
+

OCTOBER 4 - Version 2.5.2 Released

diff --git a/docs/setup.md b/docs/setup.md index 6a4d37a77..e661ba934 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -2,10 +2,10 @@ ## Setup release on Windows Program should work after running setup installer exe. Otherwise ensure Visual C++ Runtime 2015 and DirectX are installed. - + ## Dependencies for manual setup -Take special note of the bolded entires as currently the versions avaliable in many distros are not sufficient. +Take special note of the entires with bolded version numbers meaning they specifically require the newer versions of those libraries. Italicized entires are included in the releasae zip package. @@ -38,7 +38,7 @@ Italicized entires are included in the releasae zip package. - *Python pysdl2* - *Python pyxhook* (Linux only, optional) - *Python pylyrics* - + ## Development setup on Arch Linux 1. Install from AUR or install dependencies manually such as listed in the PKGBUILD. @@ -58,6 +58,3 @@ Something like this: 3. Download or clone hsaudiotag https://github.com/hsoft/hsaudiotag and copy inner "hsaudiotag" folder to extracted tauon-music-box folder 4. Download or clone stagger https://github.com/lorentey/stagger and copy inner "stagger" folder to extracted tauon-music-box folder 5. Finally, run from extracted tauon-music-box directory using ```python3 tauon.py``` - - - diff --git a/tauon.py b/tauon.py index a30788432..3e53c30e4 100644 --- a/tauon.py +++ b/tauon.py @@ -11172,7 +11172,7 @@ def force_album_view(): def switch_showcase(index=-1): - if pctl.playing_object().index == index: + if pctl.playing_object() is None or pctl.playing_object().index == index: pass else: gui.force_showcase_index = index