-
Notifications
You must be signed in to change notification settings - Fork 36
/
NEWS
1425 lines (1229 loc) · 56.4 KB
/
NEWS
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
==============================================================
Overview of changes between Pragha 1.3.99.1 and 1.3.99
==============================================================
News:
Shows temporary messages or services errors such as in-app-notifications.
Replace the status bar with a floating bar that does not require so much space.
Huge refactoring of the mtp plugin. Everything runs in a second thread.
Split Pragha between the application and a library to link the plugins. [1]
Other Changes:
Add proxy setting to song-info plugin. Thanks to Pavel Vasin.
Introduce PraghaTempProvider but not used yet.
Move background tasks popover to main toolbar.
Strip accentuation and others characters when approximate search. Issue #146
Send notification when finished ampache or koel import
Use popovers in the menus of sidebars.
Improve metadata for appstream. Issue #152 Thanks to Joel Barrios
Adjust copyright mentioning Consonance.
Convert the status bar to an floating bar.
Implement upgrade Koel and Ampache from library pane menu.
Ampache: Reports when the server is empty.
Save the list of suggestions with the original information.
Show and hide the status bar automatically.
Depends on xdt-csource instead of exo-csource to compile the menus.
Add option to ignore playback errors to continue with others songs.
Bug Fixes:
Vizualizer: Not saturate particles so much but give them more dynamics.
Last.fm: Postpose update current song when a scrobble is pending. Improve issue #142
Tune.In: Find the first audio between all results.
Rename dbus and appstream ids to better reverse-DNS domain. Issue #117
Don't use deprecated g_type_class_add_private.
Port the status icon menu to GktBuilder/GMenu/GAction.
Port part of library pane to GtkBuilder/GMenu.
Fix a lot of deprecations messages.
Fix ghost row (null null), in the list of similar songs
Fix pulse indication in filter entry while search.
DLNA client.. Force load glr-dleyna plugin.
Various fixes to compile pragha with msys2
[1]: This results in a true plugin system, being able to write 3rd party plugins
* https://github.com/pragha-music-player/pragha-sample-plugin
==============================================================
OTHERS RELEASES:
==============================================================
V1.3.99
News:
First implementation of Favorites as a playlist.
Sync favorites with Koel and Last.Fm.
New Visualizer plugin. Just thanks to Koel for the idea.
Other Changes:
Use Alt+Return shortcut to edit the selected song.
Add progress indicator to the search entry while it works.
Remember last pane used on song info plugin.
Allows to customize the styles to the distro packagers.
Bug Fixes:
Restore X11 session support. As fallback try to use dbus session manager.
Fix bad encoding on lastfm responses. Issue #93
Fix encoding on similar song pane.
Import Year from Koel if available.
Fix typo in autogen.sh. Thanks to acharjyanisankh.
Misc deprecation fixes and remove old code.
Updates Translations:
Update Danish translation thanks to scootergrisen.
Update Ukranian translation thanks to Koljan1970.
Update Dutch translation thanks to Vistaus.
Update French translation thanks to rptx.
Update Czech translation thanks to anespor.
Update Turkish translation thanks to Celonfix.
Update Russian translation thanks to Kyrill Detinov.
Update Chinese (China) translation thanks to Mingcong Bai.
Update Indonesian translation thanks to zk.
Update Catalan translation thanks to Robert Antoni Buj Gelonch.
Update Bulgarian translation thanks to Любомир Василев.
Update Lithuanian translation thanks to Moo.
V1.3.92
News:
Some improvements the recommendations panel
- New button to append all recommendations
- Can queue the songs with the Q key.
Bug Fixes:
Fix some memory leaks.
Fix some deprecation warnings.. Issue #136
Fix issue #139 "Similar songs" always shown.
Mitigate a lot of warnings introduced on pull request #131
Ignore phones that are charging without mtp support (Android Default)
Handle correctly when disconnect the phone cable.
Updates Translations:
New Arabic translations thanks to wissam.
Update Bulgarian translation thanks to Любомир Василев.
Update Danish translation thanks to scootergrisen.
Update German translation thanks to Ettore Atalan and Vinzenz Vietzke.
Update Catalan translation thanks to Robert Antoni Buj Gelonch.
Update Spanish translation thanks to Josué Aquino.
Update French translation thanks to sda2b.
Update Indonesian translation thanks to zk.
Update Korean translation thanks to smallsnail.
Update Polish translation thanks to Eryk Andrzejewski and nunoho emailsy.
Update Portuguese translation thanks to Sérgio Marques.
Update Portuguese (Brazil) translation thanks to carlo giusepe tadei valente sasaki.
Update Russian translation thanks to Kyrill Detinov.
Update Slovak translation thanks to Dušan Kazik.
Update Chinese (China) translation thanks to Mingcong Bai.
V1.3.91.1
News:
Save lyrics and artist bio ans similar songs in user cache as files.
- These are easily editable by the user.
Implement increse play count to Koel.
Various improvements to the tag editor dialog.
- Add a header that highlights the main tags.
- Update the header as you edit the tags.
- Hides the check buttons and shows them when the tag is modified.
- When you demarcate the check, restore the original tag.
Bug Fixes:
Fix plugins on last tarball due to an internal development patch. Issue #135
V1.3.91
News:
New Koel plugin that allow play music from this service.
Implements cache purge limited by size. 1GB by default.
Add option to "Add and Play" from library view. Thanks to triorr
Allows reordering the columns of the playlists. Thanks to triorr
New panel on info plugin that show recomendations from Lastfm.
Other Changes:
Use custom name for the panel icons. Issue #121
Add a symbolic icon for panel. Not used by default.
Put cover arts cache to .cache/pragha/art
Need Gtk >= 3.14: Even old debian jessie supports it.
Add "Search" hint to search entry.
Bug Fixes:
Fix Incorrect Can* properties of the MPRIS Specification #123
Implement emit CanNext/Prev/Play/Pause/Seek. Issue #123
Rename default playlist name from "Playlists" to "Tracks" on MPRIS2.
Fixes for Appstream Standard Conformance Thanks to Gabriel F. T. Gomes.
Add BUFFERING state to backend to allow stop on slow connections.
Fix some GtkDialog mapped without a transient parent.
Fix Build system can try to use grilo-0.2 and grilo-0.3 simultaneously. Issue #124
Fix double unref on Ampache and Koel plugins.
Fix easy to miss dependency on exo-csource Issue #128
Try to improve filter response.
Silently ignore utf8 errors from last.fm reponces. Issue #93
Try to improve open files dialog.
V1.3.90
News:
New Ampache plugin.
Uses a new concept of 'provider' that allows show music from multiple
collections independently.
New standard widget to display progress of long tasks.
Other Changes:
Allow apply a custom css. Related to Issue #64, #87
Register session in GtkApplication now compatible with xfce 4.14
Implement disconect device action to mtp plugin.
Add backward compatibility to grilo.
Use a .ui file to define menu button.
Remove custom invisible char of lastfm password
Dist pragha.ico/.rc needed to msys build
Fixes some border, spacing and margins.
Bug Fixes:
Use same accel to show second sidebar that gnome-builder. Issue #73
Fix Menu icon blured preferring non symbolic icons. Issue #85
Fixing duration formatting thanks to Jeremiah Menétrey. Issue #103
Fix dnd over an empty place in the playlist. Issue #104
Align to center the toolbar icons instead vertical fill. Issue #108
Dont use keybinder plugin on wayland. Issue #118
Fix a few of Gtk deprecations.
Misc fixes to Gtk 3.20 and GCC 6.0.
Valgrind: Fix a lot of memory leaks.
Fixed typo analized -> analyzed thanks to radej.
Fix spelling and grammar on README thanks to rski.
Consider all rows as fixed size. It is supposed to improve speed.
Updates Translations:
New Danish tranlations thanks to scootergrisen.
New Indonesian tranlations thanks to Zk.
New Slovak tranlations thanks to prescott.
A lot of updated translations. Thank you very much to all.
==============================================================
OLD RELEASES:
==============================================================
V1.3.3
Codename: "Just a preamp..."
News:
Rework the interface of equalizer and adds the preamplifier.
Add a switch for disabling the equalizer preset easily.
Add option to use small icons on tool/headerbar.
Others Changes:
Change "Use Gnome 3 HIG" option to "Use system title bar and borders"
Don't use icons on menubar.
Bugs fixed:
Fixes undefined symbols of devices plugin.
Use uri instead filename to save playlist with TotemPlPlarser.
Add all songs when import online playlists. Issue #81
Expand widgets if added as wide control.
Updates Translations:
New Lithuanian translation thanks to Moo.
New Polish translation thanks to m_szymczak.
Update French translation thanks to Pingax.
Update German translation thanks to Atalanttore.
Update Portuguese translation thanks to smarquespt.
Update Russian translation thanks to Lazy_Kent.
Update Bulgarian translation thanks to lyubomirv.
Update Swedish translation thanks to monotux.
V1.3.2.2
Codename: "Gtk 3.14: Que cunda el panico. haha. ;)"
Bugs fixed:
Not save state album_art_in_osd=false. See issue #77
Provide more app icons size. See issue #80
Set expand comment entry on tag dialog.
Ensure menu size and fallback to 16 on library and playlist icons.
Updates Translations:
New Bulgarian translation thanks to lyubomirv.
Update German translation thanks to Zijj.
Update Ukrainian translation thanks to Koljan1970.
Update Czech translation thanks to anespor.
Update German translation thanks to Aru21.
V1.3.2.1
Codename: "Gtk 3.14: Que cunda el panico. haha. ;)"
Bugs fixed:
Add Castillan translation to install list.
Disable libtool versioning for plugins. See issue #74
Not remember visibility of the second siderbar when init. Issue #73
Fix icon size on preferences dialog on Gtk 3.14 [1].
Try to fix the small progress bar on gtk 3.14, but finally just center it. [1]
Disable popover on gear menu!. It is just horrible!!, and pior on 3.14.
Fix size of Gear menu.
Updates Translations:
Update Russian translation thanks to Lazy_Kent.
Update Korean (Korea) translation thanks to Smallsnail.
Update French translation thanks to Pingax.
Note [1]: It worked correctly in at least 13 versions!. (Gtk 2.10 -> 2.24
and 3.0 to 3.13), 7 years!!. Why sh*** did they get changed in gtk 3.14!?
V1.3.2
Codename: "Que no cunda el panico. ;)"
News:
Add optional client-side-decorators support trying to follow Gnome3 HIG.
Can hide menubar and then append a gear menu on toolbar.
Add a infobar when some change on prefrences need restart.
Others Changes:
Except activation of plugins must accept the preferences dialog for the changes to take effect.
A lot of margins and sizes were stylized to improve the design.
Acrivate mpris2 and show lyrics sidebar by default.
Remove windows installer from source. Moves to its own repository.
Bugs fixed:
Devices plugin: Fix remove library and drop database when eject any usb mass storage.
Devices plugin: Show a message when fails to mount a usb.
Devices plugin: Properly handles devices that are mounted by the desktop before than by Pragha.
Devices plugin: Fix format not a string literal and no format arguments [-Werror=format-security]
Check existence of the files before import any playlist. So.. never more import empty playlists.
Fix change library when old list is empty.
Insensitive some playback actions on toolbar, menubar and systray when startup.
Lastfm: Be a little more careful with PraghaMusicobject references.
Remove useless option to setting gstreamer version con configure.ac.
Remove preferences (including passwords) when plugins are deactivated.
Don't use deprecated GtkArrow.
Updates Translations:
New Castillan translation thanks To Jordi Mas.
Update German translation thanks to Atalanttore.
Update Czech translation thanks to anespor.
Update Portuguese thanks to Smarquespt. Sorry. I lost another author.
Update Russian translation thanks to Lazy_Kent.
Update Korean (Korea) translation thanks to Smallsnail.
Update Spanish translation thanks to Fitoschido.
Fix typo thanks to Atalanttore.
V1.3.1
News:
New TuneIn plugin. Allow search on TuneIn and append first radio.
New DLNA server plugin. Allow share playlist to a DLNA server using Rygel.
New DLNA renderer plugin. Allow play music on a DLNA server using Grilo.
New AcousticId plugin. Get metadata of current song on AcoustID service.
D'Oh!. Port to GtkApplication.
Return a basic support to MOD files.
Allow playback music on MTP devices.
First basic port to Windows.
Others Changes:
The CD-ROM support became a plugin.
The Last.fm support became a plugin.
* Better protect tags and time_t on threads.
* Use diferents time_id to scrobble and update now playing.
* Fix submits multiple entries of one song to LastFM.
* Betters function names and declare a lot as static.
Song-info plugin: don't delay searching and cancel if song was changed.
Allow recursive playlist disabled since https://bugzilla.redhat.com/show_bug.cgi?id=1013020
Reduce track progress bar size. (A regresion since Gtk+-2)
Split Devices plugin. Devices, MTP, Renovable, and CDROM.
PraghaMusicobject/Database: file_type coverted to mime_type.
PraghaMusicobject: Add source property, to differentiate local files, of http, or plugins.
Gui: Show Mimetype on Playlist and tags properties dialog.
Set <Control>O as acceletator to open files dialog.
Enable the Notify and Song Info plugins on first run
Bugs fixed:
Fix Segfault when edit song tags from systray menu.
Playlist: fix memory leak.
Fix compilation without libpeas. Issue #60
Fix some segfault when use Glib >= 2.40.
Create cache folders when init it. NOT IN THE SONGINFO PLUGIN!!!.
Show album arts in cache to all songs.
Not import empty playlists when scan the library.
Update the menubar and playlist submenu when change any playlists saved.
Fix never change album on playlist when update tags.
Fix bad update of title on playlist when update tags.
Notify Plugin: Remove custom timeout.
Notify plugin: Check new song before sending a notification.
Lastfm Plugin: Fix warning when user or password in empty..
Lastfm Plugin: No start new sessions every time that close the configuration dialog.
Add licence to xml_helper.c/.h files.
Fix opening folder with images.
Updates Translations:
Some improvements to English source file strings. Thanks to @smarquespt. See #67
Update Chinese (China) translation thanks to chunyang.
Update Czech translation thanks to anespor.
Update French translation thanks to Pingax.
Update Portuguese translation thanks to smarquespt.
V1.3.0
News:
Depends completely on Gtk+3 >= 3.2 and Glib >= 2.32, Gstreamer1 and libcdio_paranoia >= 0.90 [1]
Add support to plugins, depending on libpeas >= 1.2
- Port gnome-media-keys, keybinder, mpris2, notify, and song-info.
- Still pending rewrite the lastfm plugin.
- Add SOO-EXPERIMENTAL and INCOMPLET devices plugin.
Add a second sidebar on right.
- Just used by the plugin song-info to show lyrics.
Others Changes:
Continued with the cleaning, writing, and conversion to GObjects
- PraghaArtCache, PraghaSidebar, and and every plugins.
- PraghaApplication now is based on GtkApplication.
Fix many bugs in gtk+3 interface, and fixes deprecations prior 3.10
NOTE:
[0] Seems little, but 99% of the work in 1.2 was done here, and then backported.
[1] Support to Gtk+2 and libcdio_paranoia = 0.83 was removed completely.
V1.2
Bugs fixed:
Fix thread safety when reading tags.
Explicitly specified use normal fonts in the library.
Fix seg fault when disable and enable again mpris2.
Updates Translations:
New Korean (Korea) translation thanks to Smallsnail.
New Vietnamese translation thanks to Ppanhh.
Many other updates. Thanks to all.
V1.2.rc
News:
Highlight the headers on library view.
Disable all video features of playbin.
Add support for embedded album art when gstreamer >= 1.0
Add simple appdata.xml to gnome-software.
Others Changes:
Continued with the cleaning, writing, and conversion to GObjects
* PraghaToolbar, PraghaLibraryPane, PraghaPlaylist, etc.
* PraghaApplication is based on GApplication, controlling single instance, and dbus messages.
All preferences have been ported to PraghaPreferences
Better support to GTK3, and prepare wayland support
Require by default Gstreamer >= 1.0
Bugs fixed: (Sumary: The most relevant to the user.)
Fix unable to automatically play another song in pragha.
Art-cache: fix for case artist or album cointains slash
Fix regression on 1.1.2: Return to import playlists.
Fix save fuse_folders option when not set folder structure view.
No insensitive albumart_in_osd toggle button when change show sytray option.
Fix wrong min glib version. g_thread_unref need 2.31
Fix updating library view after rescan.
Dbus: fix crash on get current state.
Fix some coverity defects:
* Unused pointer value (UNUSED_VALUE)
* Uninitialized scalar variable (UNINIT)
* Division or modulo by zero (DIVIDE_BY_ZERO)
* Unchecked return value (CHECKED_RETURN)
* Unchecked return value from library (CHECKED_RETURN)
* Dereference before null check (REVERSE_INULL)
* Resource leak (RESOURCE_LEAK)
* Explicit null dereferenced (FORWARD_NULL)
NOTE:
Gstreamer >= 1.0 is needed by default.
* Set the previous version with: ./configure --with-gstreamer=0.10
Still depends on libcdio >= 0.83 by default.
* To compile with libcdio >= 0.90 use: ./configure CPPFLAGS="-DHAVE_PARANOIA_NEW_INCLUDES"
Remove dbus-1 and dbus-glib-1 requirements.
V1.1.2
News:
Improved indexing of the library. Also allows continue listening music while analyzing. [1]
The database uses prepared statements, improving the general performance of Pragha.
Others Changes:
A general cleaning of the code, but there is much to be done.
* First rewrites using GObjects as PraghaBackend, PraghaAlbumArt, PraghaMusicobject, PraghaPreferences, PraghaDatabase, and PraghaStatusbar.
* Many other rewrites as PraghaLibraryPane and PraghaPlaylist.
* Many changes to work with threads safes.
Now add, remove or rename playlist and radios is super fast.
Now select the content of the "Track No" and "Year" in "Edit tags" window after focusing or clicking into them.
Now you can drag songs from the library to any file manager to copy or burn with brasero.
Now you can add playlists using command line or file managers.
Save and restore menu accelerators edited.
Now whenever you add songs, select the first song added.
Translations: use intltool for desktop file
Bugs fixed: (Sumary: The most relevant to the user.)
Try to fix issue #46: Header moved location in libcdio-paranoia-0.90. [2]
Update Autotools, and fix a warning when use autogen.sh due to cdda.h
glyr-related.c: Use lang autodetection to get artist bio. See issue #39
mpris: fix problems with long tracks
translations: fix plural forms
gtk3: fix minor bugs
add workaround for crash in taglib
fix a deadlock on adding to current playlist
Updates Translations:
Update Czech translation thanks to anespor, and petr.simacek.
Update Dutch translation thanks to Vistaus.
Update German translation thanks to cwickert.
Update Hungarian translation thanks to Polesz.
Update Portuguese translation thanks to smarquespt.
Update Portuguese (Brazil) translation thanks to rafaelff1.
Update Russian translation thanks to Lazy_Kent, and 4glitch.
Update Turkish translation thanks to fatihmalakci, necdetyucel, and emfi.
Update Ukrainian translation thanks to paul.rufous.
Notes:
[1] Sorry, but also adds a regression. Stop importing playlists.
[2] To compile, have to comment the line 23 of Pragha.h
V1.1.1
News:
Add a button to close the sidebar.
Use toolbar style to playback controls.
Better Gnome HIG complain in preferences, inspired on transmision code.
Adds an option to hide the icon in the notification area.
Others Changes:
Depend on gtk+2.24 and glib 2.28.
* Both was released a year and a half ago. Nobody should have problems.
Modularization/Refactoring/Cleanup of a lot of code thank to Pavel Vasin.
Always compile support to gnome-media-keys.
* First check gnome-settings-daemon and when not found, use keybinder.
Support global hotkeys with keybinder and gtk3 if detect keybinder-3.0.
Various improvements in gstreamer.
* Check if seeking is allowed and inform it in mpris2.
* No buffering live streams and get a new clock if lost it.
Enable MusicBrainz to download cover art.
Bugs fixed: (Sumary: The most relevant to the user.)
Sanitize artist and title when append from lastfm.
Fix equalizer dialog in gtk3 interface.
Fix tag dialog in gtk3 interface.
equalizer: fix GObject leak.
Not refresh the library view if the radio added is not saved.
Fix read after free. See Github issue #20.
Not forget the previous songs when queue songs.
Not forget the previous songs when play songs activating playlist.
Removes a lot of unused variables and functions. Thanks to Pavel Vasin.
Updates Translations:
Equalizer pressets now are translateable.
V1.1.0.1
Bugs fixed:
Fix crash when try to crop playlist with accelerator!.
* And probably many other crashs.
gui: take ownership of images in the right way.
fix build on i586. See github issue #31
mpris: fix crash in Player.Seek
mpris: don't use constants from libdbus.
Updates Translations:
Update german translation thanks to cwickert.
V1.1.0
News:
Suggest import XDG_MUSIC_DIR to library on first start thanks to Pavel Vasin.
Merge playlist and radios on unique library view pane.
Add option to make aproximate searchs using a levenshtein distance.
Add a new menu option to copy tags of selection in current playlist.
mpris: partially implement AddTrack thanks to Pavel Vasin.
Add support for gstreamer 1.0 thanks to Pavel Vasin.
F9 to show/hide the sidepane.
Add --log-file/ -l command line option to log debug to a file.
Others Changes:
Depend on gtk 2.22 and glib 2.26
* Remove some hackings to prevent deprecations.
* This to remove dbus-glib-1 soon maked as obsolted.
* Until now: Only migrate utils to gdbus thanks to Pavel Vasin.
Follow fdo Icon Naming Specification thanks to Pavel Vasin.
Reorganization of the main menu (Love and hate here;).
* File menu change to Playback and adds the random and repeat options.
* Edit menu change to Playlist, and adds the options to add files, audio CD and locations.
* Preferences are now found in tools.
The initial window size and cols width is set dynamically according to the screen size.
Bugs fixed:
Don't use gnome media keys if keybinder available.
Remove unnecessary execution permissions.
Utils: remove another redundant cast.
Fix xdt-autogen warning.
Close the dialog "Open files"immediately, and do not block gui when adding many files.
Fix cmdline description.
mpris: fix setting Shuffle property.
mpris: fix setting LoopStatus property.
Don't store unused reference to GOptionContext.
Free some strings at exit.
backend: a bit simplify volume code.
Build: don't use deprecated AM_CONFIG_HEADER.
Now anything that you drop to the playlist remain where it was dropped.
Use more generic function to avoid duplicate code.
Unref notify osd when close it. Remove unnecessary g_strdup.
mpris: fix yet another memory leak.
mpris: save a few bytes.
tags: fix rarely crash in edit dialog.
menu: simplify show_controls_below_action().
librarytree: assert prefix found.
librarytree: Use the numerated node_type directly.
Also set bold the year label on tag edit dialog.
init: fix potential memory corruption.
menu: fix memory leak on opening files.
menu: don't delay add_recent_file.
menu: fix another memory leak on opening files.
Ensure some functions don't modify their args.
Fix passing libraries in wrong order to the linker. See issue #29
Free struct con_gst at exit.
backend: fix gobject runtime warning.
Center the main window if no have saved a potition.
Insensitive correctly some options of radio and playlists menus.
Fix disable libxfce4ui on configure.ac.
Updates Translations:
Update Rusian translation thanks to Lazy_Kent.
Update Czech translation thanks to anespor.
Update some others tranlations in transifex.
* Excuse the translators, who lost their names, but thank you very much!.
V1.0.2
News:
EXPERIMENTAL support to gtk3 thanks to Pavel Vasin.
Add support for gnome media keys thanks to Pavel Vasin.
Use totem-pl-parser to open playlists when is available.
* With this can open internet radios playlist.
* Support many more formats
Imports playlists when update the library
Others Changes:
Use the same minimum requeriemientos that Xfce 4.10. A tiny caprice. =)
* Need gtk+-2.0 >= 2.20, glib-2.0 >= 2.24, dbus-1 >= 1.1 and dbus-glib-1 >= 0.84.
Use libxfce4ui instad libexo-1 to session management.
* Better behavior and less dependence.
In/Sensitive menus acording playback and lastfm status.
Allow displaying length and progress of remote files
Many changes in the start of gtk, gstreamer and glib threads.
Use PRAGMA synchronous=OFF on db.
Remove old check dependency of libcurl.
Remove unused dependency on xlib.
Bugs fixed:
No close the notify when activate actions. Only update this.
Fix bad current track position in mpris2, and emit Player.Seeked signal. See github issue #12
Fix expand playlists and radios tree view when update it.
Fix compilation with libcdio 0.84 and bad pragha about dialog. See github issue #4.
Fix some issues in github opened by ssuominengentoo.
* Issue 8: Stop setting docdir= $(pkgdatadir)/doc in Makefile.am since it breaks --docdir switch.
* Issue 7: Stop forcing -O3 optimization.
* Issue 6: Release tarballs should not set -Werror.
* Issue 5: Multiple issues in the pragha.desktop file
D'Oh!. Add audio device in preferences.
Fixed many memory leaks and some optimizations thanks to Pavel Vasin.
Use g_object_set to set audio device. Fix select of audio device.
Updates Translations:
Update Rusian translation thanks to lazy.kent.suse.
Update some tranlations in transifex.
* Excuse the translators, who lost their names, but thank you very much!.
V1.0.1
News:
Add Get lyrics, Get artist info to the selection on current playlist.
Add Love, Unlove, and Get similar options to the selection on current playlist.
Add an icon in the panel to suggest tag corrections of lastfm when update now_playing. [1]
Others Changes:
Add tootips to show equalizer bands values.
Select last track when append new songs.
Also append radios when restore session.
Append Hz, kbps, and Channels string to file properties dialog.
Check status of network manager when launch pragha. If is online, init lastfm, otherwise wait 30 seconds.
Remove search album art option in menu. Any objection..? I never use it.
Only search covers art in lastfm temporarily. Returns better results.
Bugs fixed:
Fix search album art option is always enabled.
Not jump to the next song when have selected several songs.
Grab focus on entry name when save playlist and save when press enter.
D'Oh!. Use mpris:artUrl instead xesam:art, and emit a full uri format.
Add a playlist_change flag to avoid errors when remove the model to gain speed.
Also set busy cursor when add similar song, clear/crop current playlist, or import/export playlist.
Always show "Custom" presset on equalizer on error.
Fix frizee when buffering internet radios.
Inform stop playback to mpris2 when close pragha.
Save preferences changes when pressing enter.
Update some years copyright.
Never add duplicate songs.
D'Oh!. Fix never add songs of the lasts page of favorites songs.
Fix some warnings when first init.
Set disable when first usage of equlizaser.
Better function to search song on db with only the artist and title info.
Use more generic functions to remove some duplicate code.
Romove some unused code.
Updates Translations:
Fix Bad space on message of error playback dialog.
Update German translation thanks to Cwickert.
Update Portuguese translation thanks to smarquespt.
Update Italian translation thanks to bersil.
Update Rusian translation thanks to lazy.kent.suse.
[1] Note: For this, depend now on libclastfm >= 0.5. Sorry packagers.
V1.0 "Good news, or aberration?."
News:
Add a classic 10-band software equalizer.
Others Changes:
Save the m3u playlists with relative paths when stored in the same directory that the audio files.
Add basic Static Quicklist entries on desktop file to control pragha on unity.
Bugs fixed:
Emit album art url on mpris2 when is available.
Emit new metadata when edit tag of current track.
Fix try to edit some tags of radio stream with taglib.
Add playlists mime on desktop file.
Use autoaudiosink as default audiosink.
Update notifications instead of show one for each song change.
Set Next as default button when show a playback error.
Do not allow change song from mpris/keybinder/systray when show a playback error.
Can open playlists with relative paths.
Save radio stream when press enter on name.
Fix compilation without exo-1.
Comfirm with an dialog before delete any radio/playlist item.
Fixes some memory leaks.
Updates Translations:
Add Italian translation thanks to Stribianese91.
Update German translation thanks to Cwickert.
Update Rusian translation thanks to lazy.kent.suse.
Update Portuguese translation thanks to smarquespt.
Sorry if I lost any translation. Transifex does not show the entire history. Please. Contact me.
V1.0.RC3
News:
Add option to show the playback controls below.
Can select a name when add radio streams to save on db and append to playlist tree.
Others Changes:
Fix/Change somes strings. Sorry.
Init pragha with focus on play button.
Add the new stream with the uri/name as title.
Better layout of rename and add location dialog.
Add a new popup menu with "New playlist" and a list of saved playlist to "Save playlist" like the "Add selection" popup.
Also append boths pupups submenus to main menu.
Properly set the title in save playlist dialogs.
Edit track information when double click on the track label of the panel.
When playback is stopped and no has selected any track, play a random track if shuffle has activated.
Bugs fixed:
Remove useless warning "Everything is fine" when no found a cover.
No search artist information when missing the artist name.
No search lyrics when missing the title or artist name.
Init the threads conditionally depending on the version of glibc, removing g_thread_init deprecated in 2.31
Remove unused code, that remove g_strncasecmp deprecated function.
Better buffering streaming. Prevent that it refuse to stop the playback.
Better buffering. Not update mpris, lastfm or get album art.
D'Oh!. Fix Segmentation fault when the stream update the tags on RC1/2
No update playlist view when cancel the rename action.
V1.0.RC2
News:
Better session managament support when exo-1 >= 0.6 is available.
* Now save current playlist when save session.
* Now save last posicion when save session.
* etc, etc.
Rename playlist.
Add support to playing streams over a network.
Others Changes:
When just run Pragha init lastfm with a timeuout of 30 sec, but with a simple thread when change preferences.
Set width of queue/pixbuf column fixed to 32px. Set queue bubble size fixed to 12px.
Bugs fixed:
Implement lost Seek an SetPosition on mpris2.
Fix main toolbar items use GTK_ICON_SIZE_LARGE_TOOLBAR, volume button uses _SMALL_TOOLBAR.
Use some un/likely optimization.
Remove unused code.
V1.0.RC1
News:
Now use libglyr to search lyrics, cover art, and artist info if available. [1]
Use the cache of libglyr to save the downloaded artist info and lyrics in a Metadata.db file.
Others Changes:
Tiny reorganization of the menu.
Change cache folder from pragha-album-art to pragha.
Now append "album-" string to covers in cache. Quasi simplified MediaArtStorageSpec, except md5. jah.
Adds some debug messages in mpris.c and avoid bad spaces.
Select the next row to the last selected when remove tracks in current playlist.
Remeber window position when restart pragha. Thanks to carlosjosepita.
Allow to use relative paths to add files with command line.
Open the image when double click on the cover in the panel.
Updates Translations:
Update German translation thanks to cwickert.
Update Czech translation thanks to anespor.
Update Portuguese translation thanks to smarquespt.
Update Portuguese brazilian translation thanks to valtern.
Bugs fixed:
Fix show all options when use any commands line option.
Allow to use relative paths to add files with command line.
D'Oh!. Not can edit multiple files from the library. Since when?.
Reduce padding on playlist view, leave this for the GTK+ theme to figure out.
Check if are in current playlist before add duplicate songs when search similar songs from lastfm.
Not change the model when Remove tracks in current playlist.
Fixes bad array of string in mpris metadata when string has apostrophes.
Fixes two segmentation faults when use ubuntu soundmenu and pragha has not playlists.
Fix bad folder estucture view entries because a bad conversion of filenames to UTF.
Fix that not add the duplicated songs when use the library view based on metadata.
Not sensitive "Osd in systray" option if libnotify >= 0.7.0
Not sensitive the "Add action in OSD" option when the notification daemon no support it.
Grab focus on current playlist when press Up or Down and move between controls with Left or Right.
Not update the panel when download album art but change the current song.
Use key-press-event intead key_press_event.
Use more strlen to test NULL strings.
Fix pragha freezes when select a playlist with mpris2.
Even emit _("Playlists") like current playlist in mpri2.
Inhibit global hotkey when parse a error in playback.
Better initiation of variables that establish the current status.
Fix a segfault when close pragha.
Fix a few memory leak.
[1] https://github.com/sahib/glyr:
Is a very new library, an the author defines it as "GlyR is a searchengine for musicrelated metadata"
Many thanks to Chris for writing to me, offering his library when asked for a alternative to chartyrics.
V0.99.0
News:
Show a busy mouse icon when running a slow function.
Search artist info, album art, and lyrics into a thread.
Add structure to read new playlists formats. Until now PLS, XPSF and WAX.
Add a button on the save playlist dialogs to export the playlists.
Implement "Add to playback queue" in search dialog.
Implement "Import a XPSF playlist", useful when exporting playlists in last.fm, that not use the location tag.
First attempt to restore the configuration of the audio device.
Implement a basic cache for downloaded cover art in "(home)/.cache/pragha-album-art".
Add option to search the album art automatically in lastfm.
Others Changes:
Preselect the (playlist_name).m3u filename to export dialog.
Eliminate the option to play track in search dialog.
Set "jump to track" by default in search dialog.
Displays a message with the number of songs added when import playlist.
Add "Playlists" filter on open file chooser.
Improved panel audio settings layout in preferences.
Updates Translations:
Update German translation thanks to cwickert.
Update Czech translation thanks to anespor.
Update Portuguese translation thanks to smarquespt.
Bugs fixed:
Fix "All files" filter in open file chooser.
Fuse audio_alsa_device and audio_oss_device in audio_device.
Only set audio_cd_device when playback a audio cd.
Update about dialog year.
Update MimeTypes on desktop file.
V0.98.0
News:
A new menu "Add to playlist" that replaces "Save selection" on current playlist.
More speed when Clear, Remove, and Crop tracks on current playlist.
More speed to add tracks to the current playlist from popup menu.
More speed to add playlists to the current playlist.
Others Changes:
Change "Play Audio CD" menu item to "Add Audio CD".
Only sensitive the options clear and save playlist in the menu of current playlist when there is no selection.
Minor code cleanup to coordinate with subversion code.
Updates Translations:
Update French tranlations thanks to raphaelh.
Changed many strings to translate. Please help to update your native language.
Bugs fixed:
Use cddb_query to search audio cd info. Fix poor results of cddb.
Fix possible memory leak when save tags.
Fix warning when to year < 0 on tag editor.
D'Oh!. Fix add recent files.
V0.97.0
News:
Return the playback status icon on current playlist. Thanks to Brett Kleinschmidt.
Add a popup menu on file entry of tag editor, to open folder and copy selection to title tag, artist tag, etc.
Add option to hint current_playlist. Thanks to Brett Kleinschmidt.
Add option to activate instant filter or search only when press enter.
Add option to sort Albums in library view by release-year. Thanks to Fabian Köster.
Others Changes:
Save changes when press enter on tag editor.
Init gdk_threads and use it to update progress of reproduction.
Highlight matches on jump dialog.
Minor reformat of jump dialog.
Updates Translations:
Updated Czech translation thanks to Alois Nespor.
Bugs fixed:
Remove curl/types.h deprecated header.
Immediately update the progress when seek track.
No restart the lastfm thread when seek track.
No send dbus update signal when seek track.
No send dbus update signal when set use sofware volume.
Fix pragha ignore audio cd device settings.
Always free the path when edit tracks of current playlist.
Fix no update current playlist song when change the tags from menu.
First update music objects and window, and later the files.
Directly compares the pointers to find current tack when edit tags.
Use gdk_threads_enter/leave to add files with dbus.
Use gdk_threads_enter/leave to show playback error dialog.
Show track_no and year only if are positive.
Improve the speed of the library view.
Update progress bar only when track position > 0.
Only jump to tack droped when change the model, and scroll to the same position.
Select and set cursor on new song when drop a tack on current playlist.
Fix somes memory leaks and occasional cleanup.
V0.96.1
Wooow.. Search, jump and play on current playlist dialog implemened.
V0.96.0.1
Recontra D'Oh!. Fixs gdk_threads_enter()/gdk_threads_leave() usage.
V0.96.0
News:
Init Lastfm into (More smooth) thread.
Implement Lastfm get similar and add favorites into (More smooth) thread.
Better (More smooth) insert tracks from file manager.
Better (Much more faster) insert tracks from library tree.
Others Changes:
Returns the icon in current playlist to show errors.
Use Structure Folder view by default.
Emit volumes changes on mpris2.
Use folder-music to folder structure view.
Set cursor when jump to current track.
Betters debug messages on lastfm and chartlyrics and comment everything necessary on the status bar.
Add recent files info on a idle func.
Updates Translations:
Add a new translation to Simplified Chinese thanks to ifree.
Add a new translation to Greek thanks to koleoptero.
Update Dutch translation thanks to tuxmachine.
Update Ukrainian thanslation thanks to Sergiy_Gavrylov.
Bugs fixed:
Remove lastfm connected flag. Use seesion_id instead.
Insensitive tree views when change the model.
Artist and Comment are array on mpris2 metadata.
Fix potential memory leak on mpris2.
Change the condition to refresh the saved_title (Fix Metadata emision).
Fix lastfm start every time that enter in preferences unnecessarily.
Fix calcule midle song lenght minus 5 seconds.
Fix add recurive folder with command line.
Test realloc on chartlyrics.
Remove some unuseles gtk_widget_show/hide_all.
V0.95.0.1
Prepend interfece string to PropertiesChanged signal.
V0.95.0
News:
Add support for MonkeyAudio songs.
Now difference between oss4 and oss3.
Adds another option to use the default sink.
Bugs fixed:
Wait 5 seconds to update the current song on lastfm.
=> Fix crash when rapidly changing songs.
=> Uses less network when rapidly changing songs.
Fix never init Mpris2 interface when init.
Start pragha with file arguments.
Better debugs messages on playbin constructs.
Fix Typos.
V0.94.1
News:
Implement a dialog to skip tracks if fails playback.
Bugs fixed:
Compile with Gcc 4.6, with all that this implies.
Use _tree_row_references to edit track.
Get the files to change quickly, to prevent when finished the song and change the selection.
Always check the current song to prevent when finished and change the song.
V0.94.0
Special thanks to Vikram Ambrose and Hakan Erduman for answering all my questions.
News:
Add various demonstration features over Lastfm sevices.
* Love track.
* Unlove track.
* Add favorites.
* Artist info.
* Get album art.
* Add similar.
Complete MPRIS2 track list interface.
Add option to init MPRIS2 in preferences.
Restore Search Lyrics with a dialog using Chartlyrics.com.
Add a new popup menu when current playlist is emply.
Others Changes:
Now depend on external libclastfm >= 0.4 (Optional).
Updates Translations:
Add Turkisk translation thanks to Hakan.
Update Czech translation thanks to Anespor.
Bugs fixed:
Much more faster when you start with many songs, or add the complete library.
Fix bad editing of current playlist items when it is sorted (Issue 21).
Fix Segfault after clear playlist and play (Issue 23 and 24).
No erase user info when no connect to lastfm.
Never init pragha witch -p,-s,-t, -r, -n, -t... command options.
Better update album art.
Drop unused vars.
Note: http://liblastfm.sourceforge.net now is libclastfm due to incompatibility with the official library.
V0.93.1:
Any change on pragha. But use liblastfm 0.4, that does not depend on libopenssl, incompatible with the GPL
So fix Issee 22. :)
V0.93
News:
Add MPRIS2 control support and emit a dbus signal named 'update_state' thanks to Hakan Erduman.
Added a DBus message to toggle the visibility of the player thanks to Hakan Erduman.
Restore lastfm scrobbling support thanks to http://liblastfm.sourceforge.net/.
* Use Scrobbling API 2.0.
* Now is correctly identified like Pragha.
Bugs fixed:
Fix regression on generation of recently-used data introduced in 241.
Support to libnotify 0.7. (Hate it with all my heart.)
Again, change notifications according to the standard. (xfce4-notifyd follows strictly)
Updates Translations:
Updated Czech translation thank to Alois.
Note: Temporarily disables search lyrics, by license change of http://www.lyricsplugin.com.