Skip to content

Commit

Permalink
small edits
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiko2k committed Aug 10, 2017
1 parent 980301d commit 4546ef9
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 21 deletions.
18 changes: 8 additions & 10 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
### 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:

1) Your OS and desktop environment
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

Expand All @@ -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)


5 changes: 2 additions & 3 deletions docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -88,7 +88,6 @@
- A-B repreat
- Bookmarks
- Various playlist formats
- Radio station list
- Audio CD
- Auto DJ
- Timer / Alarm
2 changes: 0 additions & 2 deletions docs/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ <h1>Tauon Music Box</h1>
<p>Screeshot:</p>
<img src="https://cloud.githubusercontent.com/assets/17271572/19633014/77ee0cfc-9a09-11e6-81b4-1b655b53e387.jpg" alt="screenshot" height="46%" width="46%">

<p>Install on Arch Linux via the AUR: <a href="https://aur.archlinux.org/packages/tauon-music-box/">v2.4.1</a>
<p>Install on Arch Linux via the AUR: <a href="https://aur.archlinux.org/packages/tauon-music-box/">v2.5.0</a>
</p>
<p>Download for Windows: <a href="https://github.com/Taiko2k/tauonmb/releases/download/v2.4.1/Tauon.Music.Box.v2.4.1-64bit-Setup.exe">v2.4.1 Installer 64bit</a>
<p>Download for Windows: <a href="https://github.com/Taiko2k/tauonmb/releases/download/v2.5.0/Tauon.Music.Box.v2.5.0-64bit-Setup.exe">v2.5.0 Installer 64bit</a>
(Requires Visual C++ 2015 Redistributable)</p>
<p><a href="https://github.com/Taiko2k/tauonmb">View on GitHub</a></p>
</div>
Expand Down
5 changes: 2 additions & 3 deletions docs/style.css
Original file line number Diff line number Diff line change
@@ -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;
}

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

Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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)




Expand Down

0 comments on commit 4546ef9

Please sign in to comment.