Skip to content

Commit

Permalink
update to 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiko2k committed Nov 2, 2017
1 parent d6a7cf6 commit 8e6ee24
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 34 deletions.
17 changes: 9 additions & 8 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
21 changes: 3 additions & 18 deletions docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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

Expand Down
16 changes: 15 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h1><img id="icon" src="tmb-icon-v3.svg"> Tauon Music Box &nbsp; &nbsp;</h1>
</div>

<div class="extra-holder">
<div id="vers">v2.5.2</div>
<div id="vers">v2.6.0</div>
<a href="https://github.com/Taiko2k/tauonmb"<div id="g-link">View Github page</div></a>
</div>

Expand Down Expand Up @@ -55,7 +55,21 @@ <h1><img id="icon" src="tmb-icon-v3.svg"> Tauon Music Box &nbsp; &nbsp;</h1>

<div class="right-container">

<div class="feature-card">
<div class="desc"><p>NOVEMBER 2 - Version 2.6.0 Released<br><p></div>
<div class="news-block">
<p>Added new view switcher that replaces the existing view menu.
<br>Added button to show lyrics in track info box.</p>


<div class="dl-holder">
<a href="https://github.com/Taiko2k/tauonmb/releases/download/v2.6.0/Tauon.Music.Box.v2.6.0-64bit-Setup.exe"><div class="button" id="exe">.exe</div></a>
<div class="divider"></div>
<a href="https://aur.archlinux.org/packages/tauon-music-box/"><div class="button" id="aur">AUR</div></a>
</div>

</div>
</div>

<div class="feature-card">
<div class="desc"><p>OCTOBER 4 - Version 2.5.2 Released<br><p></div>
Expand Down
9 changes: 3 additions & 6 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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.
Expand All @@ -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```



2 changes: 1 addition & 1 deletion tauon.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8e6ee24

Please sign in to comment.