Commit graph

199 commits

Author SHA1 Message Date
3f6b40e5fe Disabled the "Overwrite Metadata"-checkbox because writing tags is not yet implemented. 2025-03-13 14:49:19 +01:00
b0a81d7176 README.md: Added compatibility description. 2025-03-13 14:33:27 +01:00
e0c4843f06 Added some small shit that will get used in the future and made the code compatible with Python>=3.10. (According to Pycharm) 2025-03-13 14:20:12 +01:00
36b085d38a Added a screenshot. 2025-03-08 18:08:46 +01:00
fd34476d00 Added popup on import where the user can configure how the tracks get imported. 2025-03-08 17:50:45 +01:00
31b2e3bf41 Made the tracks also get copied into the library when loaded from a playlist. 2025-03-07 20:31:51 +01:00
4ae398c6aa Made the tracks get copied into the library on import. 2025-03-07 20:27:18 +01:00
259b453358 Removed an unused, by Pycharm autogenerated import. 2025-03-07 20:22:39 +01:00
209335b005 Added display of track genres. 2025-03-07 19:24:41 +01:00
9e20e21e6f Added tools for reading and writing WOBUZZM3U and made the sorting parameters human readable. 2025-03-07 18:59:51 +01:00
f7995aee9e Removed a debug print. (Oops) 2025-03-06 16:41:02 +01:00
7edaebc3c3 Did some memory optimisation, moved some files and created a completely not tested gui class that will list an artist's tracks.
Made tracks return an already existing object when they get created with a path of an already existing track object.
2025-03-06 16:35:13 +01:00
9ae1704e4a Fixed another missing NoneType-check that caused a crash. 2025-03-05 16:51:50 +01:00
971ead90c1 Implemented caching of title, artist and album of a track as WOBUZZM3U parameters. 2025-03-04 19:29:24 +01:00
072f5c7691 Created own metadata dataclass instead of using TinyTag.tags() 2025-03-04 17:24:24 +01:00
7ff1ad7a02 Made the playlist tabs look prettier by making the tab title editor non-static. 2025-03-03 17:18:30 +01:00
0101cf174c Added "Open Playlist" option to the menubar. 2025-03-03 16:21:43 +01:00
9ee4184c84 Added playlist tab title index synchronisation to fix some bugs. 2025-03-03 16:13:37 +01:00
5f20c6e5b0 Set parent parameter on playlist view creation because not setting it can sometimes cause bugs. 2025-03-03 15:02:14 +01:00
829dc05c49 Improved settings layout and deleted old file settings and behavior settings classes. 2025-03-02 17:53:04 +01:00
2b239e57f0 Made the view menu use the autogenerated QMainWindow.createPopupMenu(). 2025-03-02 17:45:08 +01:00
0929e38189 Added a window title to the track info. 2025-03-02 16:59:09 +01:00
a4d1d31e0b Made the main Library not be a dock. 2025-03-02 16:57:04 +01:00
67f27c8a15 Added appearance settings. 2025-03-02 14:54:44 +01:00
6b808add85 Improved information about the repository syncing. 2025-03-01 22:14:03 +00:00
98cce44dc2 Added information on which repository is the mirror. 2025-03-01 22:03:42 +00:00
a4fa2c7f75 Moved track and playlist opening related gui functions to the popups class. 2025-03-01 22:42:31 +01:00
cdabced202 Added gui-update-rate-setting. 2025-03-01 20:39:09 +01:00
df54239d67 Made the title of the sub-categories bold. 2025-03-01 20:11:57 +01:00
53c6bccfe6 Improved settings layout. 2025-03-01 20:03:33 +01:00
83744eb3f4 Added a performance description to the README. 2025-03-01 18:30:51 +01:00
012447ca47 Added player.stop() call in the close_event, so the player definitely stops, even when a playlist is still loading / saving. 2025-03-01 17:29:31 +01:00
8d74c1e14c Optimized the CPU usage a little by creating one QTimer that updates all progress indicators instead of having a different QTimer for each Widget. 2025-03-01 17:27:03 +01:00
105cc5ddf9 Fixed a bug where a playlist gets deleted on load of another playlist.
The bug occurred because the temporary playlist gets deleted when a new playlist gets loaded and I forgot to add code that sets the temporary playlist back to None when the temporary playlist gets renamed.
2025-02-28 19:46:20 +01:00
582448a024 Fixed another crash that was similar to the last one.
The crash occurred when the temporary playlist got deleted and then loaded again. It occurred because library.temporary_playlist didn't get set to None on deletion.
2025-02-28 19:38:29 +01:00
7fdf7a66a9 Fixed #12 2025-02-28 19:28:07 +01:00
5c7f4c4ef7 Implemented importing of playlists via the menubar. 2025-02-28 18:02:37 +01:00
37f1ea3ff8 Fixed another missing NoneType check. 2025-02-28 18:02:06 +01:00
a9f07f0716 Implemented loading of tracks via the window's top menubar. 2025-02-28 17:28:14 +01:00
66ee7d5af6 Added a check to loading_thread() that makes sure that the playlist isn't already loaded. (And probably fixed some bugs without knowing it.) 2025-02-27 18:41:35 +01:00
bae644c304 Just corrected a PEP E714. 2025-02-27 17:58:32 +01:00
3fd29bcf92 Made playlists load on click if they weren't.
Also set default for setting "load_on_start" to False because with this change, it feels a lot cleaner this way and uses less RAM.
2025-02-27 17:26:33 +01:00
4dc1caab6e Added a link to the WOBUZZM3U file format documentation. 2025-02-23 19:24:11 +01:00
faecea8ca7 Added setting of last sort to user sort on user sort. 2025-02-23 18:16:16 +01:00
78b60dba02 Implemented saving of the sortorder to the .wbz.m3u 2025-02-23 18:05:28 +01:00
894b3d213a Made the sort indicator actually show. 2025-02-23 16:43:19 +01:00
7205de8389 Fixed a wrong track index calculation. 2025-02-23 16:40:17 +01:00
3dd9123332 Implemented sorting by track title, artist name etc...
(Sorting order is not getting saved.)
2025-02-23 16:38:56 +01:00
1b69321c05 Added some shit that happens in update_info() when there is no playing track. 2025-02-23 13:57:59 +01:00
2388caa370 Fixed another missing NoneType check. 2025-02-23 13:54:01 +01:00