diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 456021773..cea440d35 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,12 +1,11 @@ ### Welcome -Thanks for your interest in Tauon Music Box. With your help we might be able to make this an actually good player, but its a bit of a long shot. -As it is you'd probably be better off contributing to an actual worthwhile project, haha. +Thanks for your interest in Tauon Music Box. With your help we might be able to make this an actually good player. ### Bug reports -Currently, releases are only a small step above development screenshots in terms of stability and undergo little testing, -so encountering issues are likely. If you would like to submit a bug report, you can use the issue tracker here on the github page. +Currently, releases are only a small step above development screenshots in terms of stability and undergo little testing, +so encountering issues are likely. If you would like to submit a bug report, you can use the issue tracker here on the Github page. This is a small project so no need to be too formal, though it would be helpful to include the following: @@ -14,13 +13,14 @@ This is a small project so no need to be too formal, though it would be helpful 2) Description of the issue 3) Steps to reproduce the issue if applicable -If the issue is a crash it would be super helpful if you could also get the error message / traceback from running from the terminal. +If the issue is a crash and you're running in Linux, it would be super helpful if you could also get the error message / traceback from running from the terminal. +(e.g. run using "python3 /opt/tauon-music-box/tauon.py") ### Feature requests Feel free to use the issue tracker for these as well. Although I don't guarantee it will be accepted. -To help pose a stronger argument, try to describe the specific use case surounding the requested feature. +To help pose a stronger argument, try to describe the specific use case surrounding the requested feature. ### Feedback / Suggestions / Other @@ -33,9 +33,7 @@ Trying to understand it from scratch would be a nightmare. But if you realllyyy want to contribute, the following could be helpful. Best to talk to me about it first. - - Concepts (like for the user interface etc, though, try to understand the design direction of the exesting one first) + - Concepts (like for the user interface etc, though, try to understand the design direction of the existing one first) - Site design / branding and graphics - - Gstreamer experts (It might be nice to bring the gstreamer backend to feature palarity with the current BASS backend to make the program fully free software) + - Gstreamer experts (It might be nice to bring the gstreamer backend to feature parity with the current BASS backend to make the program fully free software) - Themes (if you made a good one) - - diff --git a/docs/features.md b/docs/features.md index 71371306c..8e6b5491b 100644 --- a/docs/features.md +++ b/docs/features.md @@ -37,13 +37,13 @@ ### Other file formats - XSPF (import and export) (cross-app compatibility not tested) - - CUE sheets targeting single files (import only) (automaticly read when importing) + - CUE sheets targeting single files (import only) (automatically read when importing) ### Player features - Multiple tabbed playlists - Quick search -- Filter from seach to new playlist +- Filter from search to new playlist - Play count - Sorting to new playlist - Web interface (basic playback control) @@ -88,7 +88,6 @@ - A-B repreat - Bookmarks - Various playlist formats - - Radio station list - Audio CD - Auto DJ - Timer / Alarm diff --git a/docs/guide.md b/docs/guide.md index 17e5e2adf..b0c7b0f9a 100644 --- a/docs/guide.md +++ b/docs/guide.md @@ -107,8 +107,6 @@ The resulting path structure will then be ***/folder_with_music(hopefully)/artis WARNING: The entire source directory will be copied/moved, so make sure it only contains folders and files you want to transfer. -NOTE: Did I make it clear this could be dangerous? Just.. just don't do something like copy a single track to your OS's system directory, run the program as admin and attempt to use the move function. That's just asking for trouble. - ### Modifying Album Art diff --git a/docs/index.html b/docs/index.html index f0626c2dc..002f09861 100644 --- a/docs/index.html +++ b/docs/index.html @@ -29,9 +29,9 @@

Tauon Music Box

Screeshot:

screenshot -

Install on Arch Linux via the AUR: v2.4.1 +

Install on Arch Linux via the AUR: v2.5.0

-

Download for Windows: v2.4.1 Installer 64bit +

Download for Windows: v2.5.0 Installer 64bit (Requires Visual C++ 2015 Redistributable)

View on GitHub

diff --git a/docs/style.css b/docs/style.css index 68f6677e1..23aaea3d1 100644 --- a/docs/style.css +++ b/docs/style.css @@ -1,8 +1,7 @@ body { - - background-color: rgb(20, 20, 20); - color: rgb(207, 207, 207); + background-color: rgb(18, 18, 18); + color: rgb(220, 220, 220); font-family: sans-serif; } diff --git a/tauon.py b/tauon.py index f27d5c523..93c75f3fd 100644 --- a/tauon.py +++ b/tauon.py @@ -643,6 +643,7 @@ def __init__(self): self.set_old = 0 self.pl_st = [['Artist', 156, False], ['Title', 188, False], ['T', 40, True], ['Album', 153, False], ['P', 28, True], ['Starline', 86, True], ['Date', 48, True], ['Codec', 55, True], ['Time', 53, True]] + self.panelBY = 51 * self.scale self.panelY = 30 * self.scale @@ -13428,7 +13429,7 @@ def render(self): gui.pl_update = 1 # Draw the background - draw.rect_r((0, self.ty, window_size[0], self.height), colours.top_panel_background, True) + draw.rect_r((0, 0, window_size[0], self.height + self.ty), colours.top_panel_background, True) # ? if self.tab_hold: @@ -15587,6 +15588,14 @@ def update_layout_do(): bottom_bar1.update() + # if system != 'windows': + # if draw_border: + # gui.panelY = 30 * gui.scale + 3 * gui.scale + # top_panel.ty = 3 * gui.scale + # else: + # gui.panelY = 30 * gui.scale + # top_panel.ty = 0 + if gui.set_bar: gui.playlist_top = gui.playlist_top_bk + gui.set_height - 6 else: @@ -19288,6 +19297,8 @@ def mouse(self): corner_icon.render(window_size[0] - corner_icon.w, window_size[1] - corner_icon.h, [40, 40, 40, 160]) + #draw.rect_r((0, 0, window_size[0], 5), colours.top_panel_background, True) +