-
Notifications
You must be signed in to change notification settings - Fork 17
/
CHANGELOG.txt
2668 lines (1903 loc) · 43.6 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Music Caster by Elijah Lopez Changelog
5.22.0
- [UI] Added Português (Brazil) translation
5.21.3
- [Fix] Auto update
- [Fix] Button font legibility2
5.21.2
- [Fix] Notification app id
- [Fix] Security update
5.21.1
- [Fix] Open web gui
5.21.0
- [UI] Rounded rectangle buttons
- [UI] Improve spacing and alignments
5.20.2
- [Fix] Hide install update button
5.20.1
- [Fix] Getting local IP address for casting
- [Fix] Update notifier
5.20.0
- [Fix] Getting local IP address for casting
5.19.13
- [Fix] Code cleanup
- [Fix] Sort Library by artist by default (don't know why I took so many years to do this)
5.19.12
- [Fix] Local playback scrubbing
5.19.11
- [Experiment] Better connection?
5.19.10
- [Fix] Unexpected crash - chromecast related
5.19.9
- [Fix] Playing offline if URL in queue
5.19.8
- [Fix] Unexpected crash when chromecast stops working
5.19.7
- [Fix] Unexpected metadata while playing (dirty patch)
5.19.6
- [Fix] Experimental theme setting
- [Fix] Saving metadata without album art
5.19.5
- [Fix] Handling unresponsive cast device
5.19.4
- [Fix] Crash when playing
5.19.3
- [Fix] Cast syncing
5.19.2
- [Fix] Update from GUI
5.19.1
- [Fix] Windows-specific issues
5.19.0
- [Feat] Update from GUI
5.18.9
- [Fix] Locally played track scrubbing
5.18.8
- [Fix] Improve track scrubbing performance
5.18.7
- [Fix] logging
5.18.6
- [Fix] GUI freezing from seeking
- [Fix] GUI improve set volume performance
5.18.5
- [Fix] GUI freezing from seeking
5.18.4
- [Fix] Increase wait timeout
5.18.3
- [Fix] Handle experimental feature error
5.18.2
- [Fix] Changing cast device
5.18.1
- [Fix] Security update
- [Fix] Play AIFF from explorer
5.18.0
- [Feat] Local support for AIFF?
5.17.7
- [GUI] Timer tab translation
5.17.6
- [Fix] Better exception handling when pausing Chromecast
5.17.5
- [Fix] Setting position of Chromecast from GUI again
5.17.4
- [Fix] Volume Chromecast
5.17.3
- [Fix] Upgrade pychromecast
5.17.2
- [Fix] Pausing Chromecast
5.17.1
- [Fix] Setting position of Chromecast from GUI
5.17.0
- [Feat] Migrated error capturing endpoint from pipedream to under mine (lenerva)
5.16.8
- [Fix] Chromecast status
5.16.7
- [Fix] Chromecast status
5.16.6
- [Fix] Chromecast status callback
5.16.5
- [Fix] Chromecast status callback
5.16.4
- [Fix] pychromecast v14 support
5.16.3
- [Fix] use GitHub downloads instead of instances
5.16.2
- [Fix] Metadata time modified error
- [Fix] Clear queue
5.16.1
- [Fix] Remove old startup shortcuts + background thread
5.16.0
- [Feature] Linux support
- [Fix] Remove old startup shortcuts
5.15.0
- [Fix] Security update
5.14.0
- [Dev] New build process; might break app
5.13.43
- [Fix] Stop chromecast after 5 minutes of pausing
5.13.42
- [Fix] Install size
- [Fix] False positive not playing on chromecast
5.13.41
- [Fix] Use latest Pillow
5.13.40
- [Fix] Revert PyInstaller upgrade causing anti-virus detection
5.13.39
- [Fix] Exit program
5.13.38
- [Fix] Added error handling for Metadata editor artwork
5.13.37
- [Fix] Select metadata art from other audio files
5.13.36
- [Fix] Linux local audio player
- [Fix] Default music folder
5.13.35
- [Fix] register handlers
5.13.34
- [Fix] Start on login
5.13.33
- [Fix] Playlist delete
5.13.32
- [Fix] Fetching local IPV4
5.13.31
- [UI] Danish supported
- [Fix] Playlist tab
5.13.30
- [Feature] Playlist length
- [UI] ListBox controls alignment
5.13.29
- [Fix] Experimental UI tooltip text now legible
5.13.28
- [UI] Add url with <Enter>
- [UI] UI informs when playlist was saved by user
5.13.27
- [Fix] URL formatting
5.13.26
- [Fix] web UI and API
5.13.25
- [Fix] web UI and API
5.13.24
- [Fix] get_ipv4 fallback bug
5.13.23
- [Fix] Next up bug
- [Fix] Don't cache spotify playlist
- [Fix] Metadata bug
- [Fix] Locate track bug
5.13.22
- [UI] Tooltip for all settings
5.13.21
- [UI] Added French translation
5.13.20
- [UI] Added Russian translation
- [Fix] Sort order when playing folder with missing album metadata
- [Fix] Ukrainian translation
5.13.19
- [UI] Show artist as unknown in queue
5.13.18
- [UI] Added Ukrainian translation
5.13.17
- Remove old code
5.13.16
- Re-read metadata if file was modified
5.13.15
- Upgrade dependencies
5.13.14
- [Fix] set_pos crash when not connected
5.13.13
- [Fix] Shift + P for previous track
5.13.12
- [Fix] Ignore copyright errors
- [Fix] create_shortcut_windows
5.13.11
- [Fix] Metadata select artwork allows JPG/JPEG images
5.13.10
- Upgrade dependencies
5.13.9
- Rollback dependencies
5.13.8
- Upgrade dependencies
5.13.7
- Upgrade dependencies
5.13.6
- [Fix] Opening GUI with timer
5.13.5
- [Fix] PhantomJS auto install
5.13.4
- [Fix] SSL links
5.13.3
- [Fix] Playing YouTube playlists
5.13.2
- [Fix] Local address fetcher
5.13.1
- [Fix] Local address fetcher
5.13.0
- [Feature] Works with VPN
5.12.12
- [Fix] ytdlp
5.12.11
- [Fix] ytdlp
5.12.10
- [Fix] ytdlp
5.12.9
- [Fix] Open PhantomJS download page
5.12.8
- [Fix] Weird metadata
5.12.7
- [Fix] Invalid URL crash
5.12.6
- [Fix] Resolution switcher
- Upgrade dependencies
5.12.5
- [Fix] Ctrl + C for queue
5.12.4
- [Fix] Deezer, Spotify search
5.12.3
- [Fix] Exit app crash
5.12.2
- Upgrade dependencies
5.12.1
- [Fix] Queue action accuracy
- [Note] New REST API
5.12.0
- [Feature] Edit metadata of a track in the queue
- [Feature] Save selected items in queue to playlist
- [Feature] Alternative UI (Settings > Misc > Experimental features)
- [Fix] Handle user prematurely removing bad uri
5.11.0
- [Feature] Copy playlist URIs
- [Fix] upgrade PyInstaller
5.10.4
- [Fix] locate uri
5.10.3
- [Fix] Volume sync with chromecast
5.10.2
- [Fix] Exit program after sleeping
5.10.1
- [Fix] Relative audio files in Portable mode
5.10.0
- [Feature] Copy URIs (text only)
- [Fix] Move track up
- [Fix] Discord presence blocking
5.9.13
- [Fix] Play from stopped
5.9.12
- [Fix] Resolution switcher
5.9.11
- [Fix] Replaying queue from GUI
5.9.10
- [Fix] Non existent files
5.9.9
- [Fix] Covert art playlist videos
5.9.8
- [UX] YouTube source URL
5.9.7
- [Fix] Covert art
5.9.6
- [Fix] Long lived GUI bug
5.9.5
- [Optimization] YouTube playlists
5.9.4
- [Fix] Volume
5.9.3
- [Fix] Cast volume
5.9.2
- [Fix] No files selected
- [Fix] Playing URLs
5.9.1
- [Fix] Audio playback
5.9.0
- [Feature] YouTube livestreams
5.8.10
- [Fix] Improve API
5.8.9
- [Fix] Cast errors
5.8.8
- [Fix] Deezer URLs
5.8.7
- [Fix] Resolution setter
5.8.6
- [Fix] Deezer URLs
5.8.5
- [Fix] Update checker
5.8.4
- [Fix] Deezer URLs
5.8.3
- [Fix] URL metadata
- [Fix] Crashing when Cast NotConnected
5.8.2
- [Fix] Memory leaks
5.8.1
- [Fix] Also dynamically update refresh rate
5.8.0
- [Feature] Battery Resolution Switcher
- [Fix] Upgrade dependencies
5.7.9
- [Fix] Account for edge case
5.7.8
- [Fix] URL track number
5.7.7
- [Fix] Radio urls
5.7.6
- [Fix] Radio urls
5.7.5
- [Fix] FLAC album art
5.7.4
- [Fix] Cancel timer
- [Feature] Window only keyboard shortcuts
5.7.3
- [Fix] MP4/M4A track number
5.7.2
- [Fix] Album sorting
- [Fix] Files with no track number
5.7.1
- [Fix] German translation
5.7.0
- [UI] Added German / Deutsch translation
5.6.14
- [Fix] Improve GUI error handling
5.6.13
- [Fix] Improved sorting
5.6.12
- [Fix] Improved sorting for albums
5.6.11
- [Fix] Window position edge case
5.6.10
- [Fix] Cast not connected edge case
5.6.9
- [Fix] Folder select edge case
5.6.8
- [Fix] Locate track
5.6.7
- [Fix] Drag and drop files
5.6.6
- [Fix] Initial dir for dialog
5.6.5
- [Fix] TclError
5.6.4
- [Fix] URLs
5.6.3
- [Fix] Audio only URLs
5.6.2
- [Fix] Website integration
5.6.1
- [Fix] ujson security update
5.6.0
- [Feature] Save queue also saves position
5.5.7
- [Fix] YouTube URL Metadata
5.5.6
- [Fix] Web player UX
5.5.5
- [Fix] Open settings file
5.5.4
- [Fix] YouTube comment parsing
- [Fix] Queue multiple folders
5.5.3
- [Feature] &alb format
5.5.2
- [Fix] URL support
5.5.1
- [Fix] Volume GUI shortcut
5.5.0
- [Feature] Support more URLs
5.4.11
- [Fix] Volume
5.4.10
- [Fix] Volume
5.4.9
- [Fix] Web GUI settings
- [Fix] Background errors
5.4.8
- [Fix] VLC Race Condition
5.4.7
- [Fix] Better error handling
5.4.6
- [Fix] Reading Metadata
- [Fix] Spotify Playlists
5.4.5
- [Fix] Opus track number
5.4.4
- [Fix] Casting race conditions
5.4.3
- [Fix] Playback after startup race condition
5.4.2
- [Fix] Playlist Listbox
5.4.1
- [Fix] GUI
5.4.0
- [UI] Add device selection
- [UI] Simplified file/folder actions
- [UI] Fix Listbox height when artwork is off
5.3.1
- [UI] Update Web UI settings modal
5.3.0
- [Feature] Exit app on GUI close
5.2.5
- [Fix] Viewing changelog in python or portable mode
5.2.4
- [Fix] Race conditions
5.2.3
- [Fix] Cast pausing after playing
5.2.2
- [Fix] Unexpected behaviour after turning off cast
5.2.1
- [Fix] PyInstaller
5.2.0
- [UI] New Web UI layout
- [OS] Better Linux support
5.1.24
- [Fix] Single instance
5.1.23
- [Fix] Spotify playlists local files
5.1.22
- [Fix] Open settings.json
5.1.21
- [Fix] command line arguments
5.1.20
- [Feature] --device=<device> option added to specify the device to use
- [Feature] Ctrl + Shift + Q in GUI to exit program
5.1.19
- [Fix] URL casting
5.1.18
- [Fix] Youtube Playlist Web
5.1.17
- [Fix] Portable
5.1.16
- [Fix] Corner cases
5.1.15
- [Fix] URL Metadata
5.1.14
- [Fix] Encoding
5.1.13
- [Fix] Metadata
5.1.12
- [Fix] Startup
5.1.11
- [Fix] GUI
5.1.10
- [Fix] URL Metadata
5.1.9
- [Fix] URL Metadata
5.1.8
- [Fix] URL Metadata
5.1.7
- [Fix] URL Metadata
5.1.6
- [Fix] start_playing
5.1.5
- [Fix] Spelling
5.1.4
- [Fix] Chromecast connection
5.1.3
- [Fix] GUI Listbox
5.1.2
- [Optimization] Faster startup
- [Fix] Queue from explorer
- [Fix] Prev track
- [Fix] Cast updates
5.1.1
- [Fix] Override track format
- [Fix] URL Metadata
5.1.0
- [UI] Override track format
- [Fix] Dialog blocking
5.0.13
- [Fix] Long track names
5.0.12
- [Fix] M4A files
5.0.11
- [Fix] Setting png as cover art
5.0.10
- [Fix] Performance
5.0.9
- [Fix] TCLError Mini-mode
5.0.8
- [Fix] Temp TCLError fix
5.0.7
- [Fix] Prev track with next queue
5.0.6
- [Fix] Chromecast
- [Fix] URL metadata
5.0.5
- [Fix] Dependencies
5.0.4
- [Fix] Catch errors
5.0.3
- [Fix] Smart queue
- [Fix] Logging
- [Fix] Tray device names
5.0.2
- [Fix] TKdnd error
5.0.1
- [Fix] Better end of list behaviour
5.0.0
- [New] Using Python 3.10 64-bit
4.90.157
- [Fix] Invalid audio file error
4.90.156
- [Fix] Loading settings
4.90.155
- [Optimization] Mini-mode
4.90.154
- [Fix] Error handling
4.90.153
- [Fix] Chromecast connection issues
4.90.152
- [Fix] AAC, MP4, OggVorbis
4.90.151
- [Fix] Explorer play/playnext/queue behaviour
4.90.150
- [Fix] Opus file cover art
- [Fix] Keyboard shortcuts
4.90.149
- [Fix] Spotify links
4.90.148
- [Fix] Keyboard
- [Fix] Chromecast errors
4.90.147
- [Fix] URL
4.90.146
- [Fix] URL and Chromecast errors
4.90.145
- [Fix] Next/Previous track from queue
4.90.144
- [Fix] Handle chromecast disconnect
4.90.143
- [Fix] Previous track
4.90.142
- [Fix] Web GUI
4.90.141
- [Fix] Dutch
4.90.140
- [Fix] Change Chromecast
4.90.139
- [Fix] IPv6
4.90.138
- [Fix] Import playlist
4.90.137
- [Fix] Timer
- [Fix] Export playlist
- [UI] Added Dutch translation
4.90.136
- [Fix] URL support
4.90.135
- [Fix] get ipv4
4.90.134
- [Feature] Mobile playback
- [Fix] URL local muted playback
4.90.133
- [Fix] GUI activation
4.90.132
- [Fix] URL support
4.90.131
- [Fix] Metadata Tab
- [Fix] Discord Presence
4.90.130
- [Fix] GUI activation
4.90.129
- [Fix] APIs
4.90.128
- [Fix] YouTube and GUI focus
4.90.127
- [Fix] ComboBox button color
4.90.126
- [UX] Support music.youtube.com
- [UI] Added link to GitHub
- [UX] Flash border of mini-mode
4.90.125
- [Fix] Improved pause and resume logging
4.90.124
- [Fix] Log file location
4.90.123
- [Fix] Tray not closing
4.90.122
- [Fix] Move track down
4.90.121
- [Fix] Focus on first window creation
4.90.120
- [Fix] json serialization
4.90.119
- [Fix] Activate instance using IPv6
4.90.118
- [Fix] Race condition if previous_device cannot be found
- [Fix] Allow IPv6 connections
4.90.117
- [Fix] Playing from command line arguments
- [Fix] Chromecast errors
4.90.116
- [Fix] Cleaner dual instance exit
- [Fix] Improved /state/ and
4.90.115
- [Fix] Cleaner exit
4.90.114
- [Fix] Revert minimizing when closing
4.90.113
- [Fix] Chromecast errors
- [Fix] Discord rich presence
- [Optimization] Improve startup time by reducing top level imports
- [Optimization] Using ujson to load and save settings faster
- [Optimization] Auto-update does not block usage
4.90.112
- [Fix] Don't send known errors
4.90.111
- [Fix] URL parsing if URL results in 404
4.90.110
- [Fix] Maybe fix cast connection issues
4.90.109
- [Fix] Tray closing on non-fatal error
4.90.108
- [Fix] Auto-update on system startup
4.90.107
- [Fix] Disalbed Discord RPC For Sure
4.90.106
- [Fix] More error catching
4.90.105
- [Fix] Tray theme
4.90.104
- [Fix] Already connected errors
4.90.103
- [Fix] Portable
4.90.102
- [Fix] Updated pychromecast and zeroconf
4.90.101
- [Fix] Disabled Discord RPC
4.90.100
- [Fix] Files web UI
4.90.99
- [Fix] Fix mini-mode bug
4.90.98
- [Fix] Fix reading explicit/rating tag
4.90.97
- [Fix] Add more DEBUG features
4.90.96
- [Fix] Better YouTube playback
4.90.95
- [Fix] Handle bad metadata input
- [Fix] Update Flask semantics
4.90.94
- [Fix] Improved --help output
4.90.93
- [Fix] Web UI upload button
4.90.92
- [Fix] Web UI modal CSS
4.90.91
- [Fix] Web UI Mobile CSS
- [Feature] Web UI Dark Theme
4.90.90
- [Fix] Folder action when using a different language
4.90.89
- [Feature] New /devices/ API
- [Fix] Translation for "locate track"
4.90.88
- [Fix] Removed polling
- [Fix] Fixed anti-virus detection?
4.90.87
- [Fix] Polling (Hibernation bug)
4.90.86
- [Fix] Polling
4.90.85
- [Fix] Strip URL's
4.90.84
- [Fix] Proxies
4.90.83
- [Fix] Polling
4.90.82
- [Fix] Polling
4.90.81
- [Fix] Window focus
- [Feature] Specify delay (beta)
4.90.80
- [Fix] Auto-update restart minimized
4.90.79
- [Feature] Open window when run