-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathNEWS
2038 lines (1813 loc) · 95.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
2.4.3 - 2016-12-05 :
====================
* Fix two crashes in the dialog to load filenames from a file
* Avoid a crash when adding an image and no files are selected
* Avoid a crash when saving ID3v2.4 tags and no audio is present
* Fix a crash when applying CDDB results
* Fix saving of ID3v1 genres when also using ID3v2.4
* Fix Ogg tag writing on Windows
* Ensure that a selected path in the browser is shown in the path list
* Open the online version of the help if Yelp is not available
* Fix handling of MP4 files with empty tag fields
* Fix the artist/album toolbar icon
* Eckhard M. Jäger’s Adwaita-style artist/album icons
* Add support for MP4 files with the .aac file extension
* Anders Jonsson’s Swedish translation update
* Balázs Úr’s Hungarian translation update
* Charles Monzat’s French translation update
* Cédric Valmary’s Occitan translation
* Walter Cheuk’s Chinese (Taiwan) translation update
* Jobava’s Romanian translation update
* Jordi Mas’s Catalan translation updates
* Piotr Drąg’s Polish translation updates
* Rafael Fontanelle’s Brazilian Portuguese translation update
* Tiago Santos’ Portuguese translation update
* Daniel Mustieles’ and Mónica Canizo’s Spanish translation updates
* gogo’s Croation translation
2.4.2 - 2016-02-21 :
====================
* Fix a crash when renaming directories
* Fix input of new file names in the file area
* Add case-insensitive sorting of the artist/album list
* Improve searching within UTF-8 strings
* Handle UTF-8 strings when sorting the file list
* Fix display of the Monkey's Audio file type
* Avoid locale-sensitive tag reading issues (especially for FLAC and Ogg)
* Only install the metainfo file for the Nautilus extension if requested
* Refactor reading of Ogg and FLAC tags
* Refactor Monkey's Audio and Musepack header reading
2.4.1 - 2016-01-25 :
====================
* James Cowgill’s Opus parsing crash fix
* James Cowgill’s playlist writing crash fix
* Handle FLAC files with an invalid sample rate
* Fix generated playlist order
* Consistently use the GLib filename encoding
* Extensive refactoring of locale and encoding handling
* Improve fallback legacy locale detection
* Dennis Björklund’s CDDB fill fields fix
* Fix CDDB search fields and categories settings handling
* Use the correct encoding when writing ID3v2.4 tags
* Fix a linking error on Mac OS X
* Improve illegal character logic, especially for trailing characters
* Remove several outdated and unnecessary Windows compatibility wrappers
* Mario Blättermann’s German help translation update
* Marcus Gisslén’s Swedish help translation
* Josef Andersson’s Swedish translation update
* Мирослав Николић’s Serbian translation update
* Jordi Mas’ Catalan translation update
* Seong-ho Cho’s Korean translation update
* Daniel Mustieles’ Spanish translation updates
* Marek Černocký’s Czech translation update
* Åka Sikrom’s Norwegian bokmål translation update
* Piotr Drąg’s Polish translation update
2.4.0 - 2015-08-29 :
====================
* Correct the disc number format specifier to %z
* Fix multiple CDDB searches during a single run
* Improve handling of tags with empty images
* Link to the online application help on Windows
* Remember the paned position in the main window between restarts
* Improve handling of file list selection
* Fix a crash when deleting files from within the application
* Fix a crash when reading FLAC files
* Fix a crash when navigating the directory browser with the keyboard
* Remove a few internal FIXMEs with some refactoring
* Updated British English translation
* Wolfgang Stöggl’s German translation update
* Gábor Kelemen’s Hungarian help translation
* Gábor Kelemen’s Hungarian translation update
* Alexandre Franke’s French translation updates
* Muhammet Kara’s Turkish translation update
* Daniel Mustieles’ Spanish translation updates
* Marek Černocký’s Czech translation updates
* Jordi Mas’ Catalan translation update
* Piotr Drąg’s Polish translation updates
2.3.7 - 2015-05-17 :
====================
* Add preliminary support for HiDPI displays
* Fix missing libepoxy DLL in the Windows installer
* Convert several widgets to use templates
* Use new G_DEFINE_TYPE_WITH_PRIVATE support in GObject
* Marek Černocký’s Czech translation update
* Alexandre Franke’s French translation update
* Piotr Drąg’s Polish translation update
2.3.6 - 2015-04-19 :
====================
* Fix renaming files in the scanner
* Improve minimum size of log area
* Improve several UI strings
* Ekaterina Gerasimova’s symbolic application icon, and improvements to
Mallard help
* Add several comments for translators
* Add a test for the file renaming code
* Fix compiler warnings due to switch-enum warning when disabling tag
support
* Improvements to several internal string-handling functions
* Remove setting for controlling the maximum number of log lines
* Remove quit confirmation dialog
* Further refactoring of internal file list code
* Alexandre Franke’s French translation update
* Piotr Drąg’s Polish translation update
* Updated British English translation
* Marek Černocký’s Czech translation updates
* Jordi Mas’ Catalan help translation
* Jordi Mas’ Catalan translation updates
* Samir Ribic’s Bosnian translation
2.3.5 - 2015-03-09 :
====================
* Fix changing tag fields containing certain characters
* Fix for truncated CDDB results
* Fix changing the artwork description
* Avoid a crash when reading FLAC files with no tags
* Avoid a crash when reading invalid MP3 files
* Further refactoring of the internal file list code
* Add several unit tests
* Handle empty descriptions in ID3 tag artwork
* Build against the patched Debian version of id3lib
* Fix compilation when FLAC support is disabled
* Avoid a runtime warning in the file browser
* Fix a couple of Coverity warnings
* Fix string format sign warnings with GCC 5.0
* Further improvements to compiler warning flag checking
* Marek Černocký’s Czech translation updates
* Piotr Drąg’s Polish translation updates
* Åka Sikrom’s Norwegian bokmål translation update
* Osman Karagöz’s Turkish translation update
2.3.4 - 2014-02-06 :
====================
* Fix crash when saving FLAC tags
* Port to use AX_COMPILER_FLAGS for improved compiler warning checks
* Many compiler warning fixes, discovered after enabling extra warnings
* Fixes for two Coverity warnings
* Improve validation of Vorbis artwork and MIME types
* Refactoring of internal file list code
* Relicense id3lib wrapper to GPLv2+
* Christian Kirbach’s German help translation
* Marek Černocký’s Czech help translation
* Daniel Mustieles’ Spanish translation update
2.3.3 - 2014-12-31 :
====================
* Add album artist support for WavPack and APE tags
* Add channel mask reading support for WavPack tags
* Reduce memory usage when copying cover art, such as when modifying tags
which contain images
* Use GIO when reading and writing FLAC, ID3v2.4 and WavPack tags
* Use GIO for reading and writing list store files
* Fix an error check when saving WavPack tags
* Clear empty fields when saving WavPack tags
* Allow the search dialog tree view to expand to fill the dialog
* Fix the disc number preferences controls
* Fix a crash when migrating configuration directories
* Fix a double unref when renaming files
* Fix memory leaks in the CDDB dialog, Ogg tagging code, Speex tagging
code, FLAC tagging code, images tree view and the WavPack tagging code
* Fix stripping of disc number fields in ID3v2.4 tags
* Fix Ctrl-clicking to modify the file list selection
* Add an automated test for file type detection
* Refactoring of internal file list code
* Refactoring of FLAC and WavPack tagging code
* Relicense all code (excluding the Nautilus extension) under the GNU GPL
version 2 or later
* Мирослав Николић’s Serbian translation update
* Rafael Ferrera’s Brazilian Portuguese translation update
* Balázs Úr’s Hungarian translation update
* Marek Černocký’s Czech translation updates
* Muhammet Kara’s Turkish translation update
2.3.2 - 2014-11-30 :
====================
* Fix a crash when reading empty FLAC tags
* Fix an assertion failure when reading empty ID3 tags
* Fix incorrect track durations when searching CDDB
* Fix the log view being forcibly shown on startup
* Fix launching of external applications
* Fix many memory leaks in the CDDB search dialog
* Improve setting handling for the process fields scanner
* Improve file list selection handling
* Allow the tag area images tree view to expand if space is available
* Improve ID3v2 handling with Ogg files
* Add more fragments from which to guess the image type
* Add AppData metainfo description for Nautilus extension
* Add several automated tests
* Add a separator row below the all albums row in the artist tree view
* Ekaterina Gerasimova’s improvements to the Mallard help
* British English translation update
* Marek Černocký’s Czech translation updates
* Piotr Drąg’s Polish translation updates
* Мирослав Николић’s Serbian translation
2.3.1 - 2014-10-31 :
====================
* Add a Nautilus extension, for showing actions in the context menu
* Overhaul the UI, and use GtkBuilder XML descriptions throughout
* Use GTK+ 3 only, and drop support for GTK+ 2
* Use GSettings for storing user preferences
* Add an application menu (if under GNOME 3)
* Fix loading filenames from a text file
* Fix saving Ogg cover art without a description
* Fix check for broken id3lib UTF-16 writing
* Fix keyboard navigation to allow escaping the tag area
* Update ID3v1 genre list
* Revert asynchronous image handling changes
* Fix a crash when reloading the directory tree
* Avoid a crash when browsing hidden directories
* Andreas Winkelmann’s crash and memory leak fixes
* Fix image loading with HTTP URLs and empty images
* Fix delays, and a possible crash, when running CDDB searches
* Handle renaming on case-insensitive filesystems
* Fix bogus track numbers when automatically numbering files
* Fix memory leak in check for buggy id3lib version
* Add Opus and Speex MIME types to desktop file
* Add .m4v as a supported MP4 extension
* Show updated images in the Windows installer
* Abhinav Jangda’s fix for numeric characters in ID3 TPOS fields
* Disable ID3v1 tag writing, and prefer ID3v2.3 to ID3v2.4, by default
* Roman Bogorodskiy’s ID3 wrapper compilation fix
* Improvements to MP4 GIO wrapper
* Improve context menu handling, especially with keyboard shortcuts
* Port to GtkApplication, GAction and GMenuModel
* Drop uses of GtkStock for text and icons
* Extensive internal refactoring
* Add tests for another scanner string manipulation function
* Add a setting to control whether to detect an image type automatically
* Fix a selection bug when double-clicking a browser list header
* Fix a scanner bug when converting "%20" to " "
* Fix compilation if TagLib or libogg is unavailable
* Depend on TagLib 1.9.1 for MP4 support
* Use CXXFLAGS from the environment
* Piotr Drąg’s Polish translation updates
* Åka Sikrom’s Norwegian bokmål translation
* Guillaume Bernard’s French translation update
* Balázs Úr’s Hungarian translation updates
* genodeftest’s German translation update
* Marek Černocký’s Czech translation updates
* Daniel Mustieles’ Spanish translation updates
* Tom Tryfonidis’ Greek translation update
* Seong-ho Cho’s Korean translation
* Andika Triwidada’s Indonesian translation
* Rafael Ferrera’s Brazilian Portuguese translation update
* Aurimas Černius’s Lithuanian translation update
* Matej Urbančič’s Slovenian translation update
* Daniel Mustieles’ Spanish help translation
* Dimitris Spingos’s Greek help translation
2.2.0 - 2014-04-11 :
====================
* Several stability fixes, found with Valgrind and the Fedora retrace
server
* Use GTK+ 3 by default, but still allow building against GTK+ 2
* Support extended tag fields in MP4 files
* Support GIF images in tags
* Abhinav Jangda’s Ogg Opus support, asynchronous image loading, scanner
function tests and new Vorbis cover art support
* Santtu Lakkala’s MP4 cover art and GIO support, fix for Roman numeral
capitalization
* Ask for confirmation before overwriting during renaming
* Ekaterina Gerasimova’s Mallard help updates
* Avoid truncating Vorbis audio data when saving
* Gianvito Cavasoli’s Italian translation update
* Alexandre Franke’s French translation updates and typo fix
* Wolfgang Stöggl’s German translation updates
* Piotr Drąg’s Polish translation updates
* Мирослав Николић’s Serbian translation update
* Daniel Mustieles’ Spanish translation updates
* Balázs Úr and Attila Hammer’s Hungarian translation updates
* Enrico Nicoletto and Rafael Ferrera’s Brazilian Portuguese translation
updates
* Marek Černocký’s Czech translation updates
* Aurimas Černius’s Lithuanian translation update
2.1.10 - 2014-02-19 :
=====================
* Several memory leak and crash fixes, found with the Fedora retrace
server, Coverity and Valgrind
* Abhinav Jangda’s GFileInfo porting and dummy browser row fixes
* Add a Contents item to the Help menu, for viewing the Mallard help
* Use g_spawn_async() to spawn child processes
* Reinstate ID3 tag support on Windows
* Remove the Quit button from the toolbar
* Santtu Lakkala’s scanner memory leak fix
* Add AppData XML
* Aurimas Černius’s Lithuanian translation update
* Rafael Ferreira’s Brazilian Portuguese translation update
* Мирослав Николић’s Serbian translation update
* Marek Černocký’s Czech translation updates
* Piotr Drag’s Polish translation updates
* Wolfgang Stöggl’s German translation update
2.1.9 - 2014-01-04 :
====================
* Lots of general refactoring and stability improvements
* Replace most mini buttons with GtkEntry icons
* Many memory leak and invalid read fixes, found with Valgrind, cppcheck
and the CLang static analyzer
* Fix crash when the MusicBrainz CDDB search fails
* Remove ancient libmpg123 code and use id3lib for reading the MPEG header
* Use GtkDialog for child windows
* Many fixes when building for MinGW
* Rearrange menus and adjust keyboard accelerators to better fit with the
GNOME HIG
* Abhinav Jangda’s numerous bug fixes and porting to GIO/GFile
* Darshan’s column resizing and reordering patches
* Use GApplication for application life cycle
* Remove several custom icons and instead use the themed equivalents
* Do not split FLAC and Ogg tags by default
* Drop old Vorbis comment compatibility (XMMS and COMMENT fields)
* Mathias Reineke’s total tracks support, and several other fixes
* Adrian Bunk’s FLAC ID3 tag and obsolete translation improvements
* Do not set a custom wmclass on the scanner window
* Stop installing TODO, HACKING and THANKS files
* DocBook XML man page
* Marius Gavrilescu’s improvement for illustration image filenames
* Dominique Leuenberger’s licence and build improvements
* Florian Müllner’s GTK+ 3 deprecation fixes
* Ekaterina Gerasimova’s Mallard help, and removal of the outdated user
guide
* Enrico Nicoletto, Rafael Ferreira and Antonio Fernandes C. Neto’s
Brazilian Portuguese translation updates
* Marek Černocký’s Czech translation update
* Osman Karagöz’s Turkish translation
* Gil Forcada’s Catalan translation
* Balázs Úr’s Hungarian translation update
* Christian Kirbach’s German translation update
* Aurimas Černius’s Lithuanian translation update
* Stas Solovey’s Russian translation update
* Matej Urbančič and Martin Srebotnjak’s Slovenian translation updates
* Мирослав Николић’s Serbian translation update
* Piotr Drąg’s Polish translation update
* Milagros Infante Montero’s Spanish translation update
2.1.8 - 2013-02-10 :
====================
* Port to and require the most recent GTK+ 2 release (2.24)
* Allow experimental compilation against GTK+ 3
* Many memory leaks fixed
* Remove the Debian and RPM packaging
* Christoph J. Thompson's change to not install the ChangeLog
* Adrian Bunk's FLAC, configure, sign comparison warning and GBase64 fixes
* Waqa Qamar's new icons
* Small fixes to allow compilation under mingw
* Fix overlaid text in scanner legend
* Alessio Ababilov's SIGCHLD handling fix
* Move configuration files to XDG firectories
* Andreas Winkelmann's configuration file, remove all text, disc number
column and compiler warning fixes
* Switch to TagLib for MP4 tag editing and drop libmp4v2 support
* Fix album artist entry focus chain order
* Remove Changes tab in about dialog
* Tidy and internationalize the desktop file
* Fix many spelling errors and typos
* Several translation updates
* Rewrite build system
* Use intltool for internationalization
* Drop dependency on libtool
* Leonid Podolny's easytag-2.1.6-from-txt.patch for segfault when pressing
"Apply" in "Load filenames from TXT" dialog,
* WiseLord's fix-genre-tag.patch to fix predefined genres displayed under
legacy systems.
* Michał Smoczyk's updated Polish translation
* Christoph J. Thompson's .desktop cleanup patch
* Christoph J. Thompson's add a new option to trim spaces when renaming
files patch
* Nick Lanham's to make easytag compile against newest version of libmp4v2
* Wojciech Wierchola's file save performance improvement
* Julian Taylor's fix out of bound array access
* Honore Doktorr's revised libmp4v2 patch
* Algimantas Margevičius's Lithuanian translation
2.1.7 - Jan 14th, 2012 :
========================
* Gaute Amundsen's ConfirmWhenUnsavedFiles.patch
* Mark Ferry's albumartist patch for ogg and flac
* Götz Waschk's update for German translation
* Kip Warner's optimized base64 decoder for album art
* Updated contributor credits
* Debianized
* Updated version to 2.1.7
2.1.6 - July 12th, 2008 :
=========================
* Fixed displaying of the corresponding file when handling the Cddb track
list,
* Fixed configure script to check needed libraries for Speex support,
* Fixed problem of displaying picture files which have an extension not in
lowercase,
* Fixed a crash when writing Flac tag if the file doesn't contain a vendor
string (thanks to Marcus Holland-Moritz),
* Fixed displaying of ChangeLog in the 'About' window,
* Fixed crash with language environment variables set to nul (thanks to Juliya Valeeva),
* Fixed saving Ogg and Flac files with multifields and warn if the year value will be truncated (thanks to Zohaib Hassan),
* Added shortcuts to the Desktop, Documents, Download and Music directories,
* Improved process to save severals files : the stop button is enabled, the
user is warned if the file was changed by an external program, and the error
messages are displayed in the log view instead of message boxes,
* Japanese translation updated (thanks to Hironao Komatsu),
* Swedish translation updated (thanks to Arild Matsson),
* Polish translation updated (thanks to Michał Smoczyk),
* German translation updated (thanks to Götz Waschk),
* French translation updated.
Windows version :
* Fixed problem to read and save configuration files under WinXP or Vista with
accounts containing non ASCII characters.,
* Fixed problem to load picture files containing accuentuated character on the name or the path.
2.1.5 - January 26th, 2008 :
============================
* Added an option in the "Process Fields" scanner to enable/disable
detection of Roman numerals,
* Disabled unsynchronisation when writing ID3v2.4 tags (as Taglib doesn't
support them) to avoid problem with pictures on some applications (thanks
to Alexey Illarionov),
* Fixed compilation problem with previous versions of flac older than 1.1.3,
* Fixed the size of log view when resizing the main window,
* Fixed browser problem with the hidden directories filter: directories
starting with severals dots were also hidden,
* Fixed problem when renaming severals directories and files with the
'Rename File and Directory' scanner (thanks to vdaghan) ,
* Fixed detection of valid roman numerals in the "Process Fields" scanner
(was used some parts of the Roman library from David M. Syzdek),
* Brazilian Portuguese translation updated (thanks to doutor.zero),
* Polish translation updated (thanks to Michał Smoczyk),
* Swedish translation updated (thanks to Anders Strömer),
* German translation updated (thanks to Götz Waschk),
* French translation updated.
Windows version :
* Fixed incorrect path when opening the program using the context menu
"Browse with EasyTAG",
* Fixed uninstall of the context menu "Browse with EasyTAG".
2.1.4 - December 12th, 2007 :
=============================
* Added support of pictures in Ogg Vorbis and Speex files (with Ogg Vorbis
tags),
* Added support of pictures in FLAC files (with FLAC Vorbis tags).
* The code for handling FLAC files was also fully rewritten,
* Added view of tag fields in the main list of files,
* Added a button on the main window to select a directory to browse for file
(useful when the tree is hidden),
* Fixed compilation problem with mpeg4ip 1.6 (thanks to Götz Waschk),
* Fixed messages boxes to use the stock buttons and labels of GTK,
* Fixed file easytag.desktop (thanks to Doruk Fisek and Götz Waschk),
* Fixed problem with dates and EUC-JP locale when displaying lines on the
log window (thanks to Misty Haiku),
* Fixed problem with the Cddb manual search when using a proxy,
* Fixed detection of Roman numerals before a coma and dot characters in the
scanner window,
* Settings to write ID3v1.x tags : the option "//TRANSLIT" was enabled by
default to avoid an error message with UTF-8 strings. This was the setting
used before using libid3tag instead of id3lib,
* Fixed problem when reading tag with some languages as Turkish (patch from
Doruk Fisek and Onur Kucuk),
* New Chinese (Taiwan) translation (thanks to Jose Sun),
* Hungarian translation updated (thanks to Mészáros Csaba),
* Chinese (Simplified) translation updated (thanks to Yang Jinsong),
* German translation updated (thanks to Götz Waschk),
* French translation updated.
Windows version :
* Fixed crash on start up for Norwegian locale.
* Fixed problem when loading the default directory if it contains an UTF-8 character,
* Using NSIS installer to build the setup package (instead of Inno Setup)
2.1.3 - October 15th, 2007 :
============================
* The "convert" function of the 'Process Fields' scanner was improved to
allow to replace a string to an other one (instead of only one character),
* Added a option to limit the number of lines in the log view,
* Added ability to show or hide the log view,
* Added command buttons in the "Load TXT file" windows,
* Added support of .oga extension,
* The "Process Fields" scanner set to uppercase roman numerals (thanks to
Slash Bunny),
* Fixed problem with the "Encoded by" field in Id3v2.4 tags (thanks to
Adrian Bunk),
* Fixed rules of the "process fields" to follows The Chicago Manual of Style
more closely(thanks to Slash Bunny),
* Fixed bug with UTF-8 characters in the "convert" function of the 'Process
Fields' scanner,
* Fixed problem with the browser window that stays grayed out if the
selected directory doesn't exist,
* Fixed file descriptor leak in the cddb search,
* Improved displaying of extensions supported in the About window,
* Improved selection of directories, in the browser tree, if it doesn't
exist on the file system, the tree is refreshed automatically.
* New Serbian translation (thanks to Miloš Popović),
* Swedish translation updated (thanks to Anders Strömer),
* Polish translation updated (thanks to Tomasz Sałaciński and Michał Smoczyk),
* German translation updated (thanks to Götz Waschk),
* Czech translation updated (thanks to Zbyněk Mrkvička),
* French translation updated.
2.1.2 - July 12th, 2007 :
=========================
* Added an option to update modification time of the parent directory when
changing tag values of a file (useful for Amarok for example),
* Added autoscroll in log view,
* Added new Swedish documentation (thanks to Anders Strömer),
* Fixed a problem to display the title in the Cddb window with translation
languages (bug introduced in version 2.1.1),
* Fixed the loose of focus after saving files : now the same control keep
again the focus,
* Fixed a mistake in the configure script (thanks to Thomas Klausner),
* Swedish translation updated (thanks to Anders Strömer),
* Brazilian Portuguese translation updated (thanks to doutor.zero),
* Polish translation updated (thanks to Michał Smoczyk),
* German translation updated (thanks to Götz Waschk),
2.1.1 - July 4th, 2007 :
========================
* Added support of ID3v2.4 tags by using library libid3tag (thanks to Alexey
Illarionov),
* Added Speex support (thanks to Pierre Dumuid) (without displaying bitrate
and duration),
* Added displaying of the number of pictures in the label of the tab.
* Fixed name of default server for the MusicBrainz FreeDB Gateway (thanks to
Steve Wyles),
* Fixed a problem when renaming file, by changing the case, that may delete
one file,
* Fixed a small mistake in the cddb query string (thanks to Steve Wyles),
* Fix for Ogg Vorbis files: read also the COMMENT tag field when it is used
instead of DESCRIPTION,
* Should be fixed a bug when refreshing the tree (not sure as it is
difficult to reproduce),
* In preferences window, the load on startup option and the default
directory setting were splitted,
* Added some improvments in the cddb window,
* Added time in log view,
* New Hebrew translation (thanks to Yuval Hager),
* Czech translation updated (thanks to Zbynek Mrkvicka),
* German translation updated (thanks to Götz Waschk),
* French translation updated.
Windows version :
* Fixed the default Russian encoding used under Windows (set to windows-1251
instead of KOI8-R)
2.1 - May 7th, 2007 :
=====================
* Fixed a crash in the Artist/Album view after saving files,
* Italian translation updated (thanks to Costantino Ceoldo),
* Brazilian Portuguese translation updated (thanks to doutor.zero),
* French translation updated.
Windows version :
* Fixed displaying of header informations of Ogg Vorbis file,
* Fixed crash when writing tag of Ogg Vorbis file.
2.0.2 - May 1st, 2007 :
=========================
* Fixed a runtime crash on Mac OS 10.x platform (thanks to Timothy Lee),
* When adding a picture to a file, the selection window starts on the same
directory of the file,
* Fixed command buttons not disabled when using the scanner command,
* Fixed a compilation bug under Solaris (thanks to Ben Taylor),
* Fixed sorting of filenames containing some particular UTF-8 characters,
* Fixed a crash when double clicking over the file list when no file loaded,
* Fixed a crash when deleting severals files,
* Some code improvments to increase speed,
* Czech translation updated (thanks to Zbynek Mrkvicka),
* German translation updated (thanks to Götz Waschk),
* French translation updated.
2.0.1 - April 12th, 2007 :
==========================
* Added WavPack support (thanks to Maarten Maathuis),
* Added a log area in the main window to avoid sending all messages to the
console,
* Added local access to the cddb search for the automatic mode,
* Fixed some bugs in the cddb window,
* Fixed the reloading of the current which was done two times when changing
state of the "Show hidden directories" checkbox,
* Fixed Glib warnings on startup,
* Italian translation updated (thanks to Costantino Ceoldo),
* Brazilian Portuguese translation updated (thanks to doutor.zero),
* German translation updated (thanks to Götz Waschk),
* French translation updated.
Windows version :
* Fixed a crash in the Cddb window for the manual search.
2.0 - February 21th, 2007 :
===========================
* Added buttons in toolbar to search files, to search in cddb and to write
playlist,
* Added in the cddb window the option to match lines with the Levenshtein
algorithm,
* Fixed crash when no audio player is defined and problem of checking in the
preferences window,
* Added automatically removing of APE tag in a MP3 file,
* Improved decoding of Arabic characters,
* Added French Users Guide (Than to Emmanuel Brun),
* Swedish translation updated (thanks to Anders Strömer),
* Brazilian Portuguese translation updated (thanks to doutor.zero),
* Czech translation updated (thanks to Zbynek Mrkvicka),
* German translation updated (thanks to Götz Waschk),
* Italian translation updated (thanks to Costantino Ceoldo),
* Japanese translation updated (thanks to Takeshi Aihana),
* French translation updated and typo fixed (thanks to Emmanuel Brun).
Windows version :
* Fixed autocompletion of year when a partial one was entered,
* Fixed crash when no audio player selected in the preferences window,
* Improved detection of the locale.
1.99.13 - December 10th, 2006 :
===============================
* The manual cddb search was reactivated by using now "gnudb.org" instead of
"freedb.org" as the last service didn't work,
* Faster access for the Cddb search,
* Added ability to use the MusicBrainz Cddb Gateway for the automatic search,
* The automatic search request the two servers : freedb.org and the
MusicBrainz Cddb Gateway,
* Fixed compilation for the new FLAC version 1.1.3 (thanks to Josh Coalson),
* Fixed reading of invalid UTF-8 strings in Ogg Vorbis and APE tags. We try
to convert it to the right encoding.
* Added French documentation (thanks to Emmanuel Brun),
* A new Chinese translation (thanks to Yang Jinsong),
* Hungarian translation updated (thanks to Mészáros Csaba),
* Italian translation updated (thanks to Costantino Ceoldo),
* Swedish translation updated (thanks to Anders Strömer),
* German translation updated (thanks to Götz Waschk),
* French translation updated.
Windows version :
* Fixed problem when renaming file with the scanner if a field contained
the character '/' or '\',
* Fixed loading of a path ended by '\' in the browser entry,
* Fixed, missing the first file when lauching the player.
1.99.12 - April 6th, 2006 :
===========================
* New logo and icons (thanks to Der Humph),
* Added ability to display all albums of an artist in the 'Artist / Album'
view,
* Added detection of the bugged version of id3lib when writting ID3 tag to
Unicode to inform the user (a patch for id3lib is supplied in package
source),
* For Ogg files, the field DESCRIPTION is also used for the comment,
* Fixed stack corruption bugs in Fill Tag scanner (thanks to Mark Ferry),
* Fixed loading disk number for FLAC tag (thanks to Robert Norris),
* Fixed error that displays MP3 files in red when no tag is present,
* Fixed a crash in the CDDB window when getting tracks of a album,
* Fixed playlist name bug when creating it in the parent directory,
* Fixed manual CDDB search when using Squid (thanks to Christopher Oliver),
* Little fix for FLAC tags,
* Fixed various bugs,
* Russian translation updated (thanks to Andrey Astafiev),
* Greek translation updated (thanks to Apollon Oikonomopoulos),
* Spanish translation updated (thanks to Francisco Javier F. Serrador),
* Japanese translation updated (thanks to Takeshi Aihana),
* Czech translation updated (thanks to Zbynek Mrkvicka),
* Brazilian Portuguese translation updated (thanks to doutor.zero),
* Danish translation updated (thanks to Morten Brix Pedersen),
* Italian translation updated (thanks to Costantino Ceoldo),
* Hungarian translation updated (thanks to Mészáros Csaba),
* German translation updated (thanks to Götz Waschk),
* French translation updated.
Windows version : (thanks to Michael Pujos)
* Fixed starting the program with a directory as parameter,
* Fixed problem in Fill Tag scanner with the first code,
* Available menu entry to "Open file(s) with...",
* Available menu entry to "Browse Directory with...",
* We recommend to remove your .easytag directory to reinitialize it : as
there are many changes when storing filenames or directories in
configuration files.
1.99.11 - December 15th, 2005 :
===============================
* Added ability to force saving tag of file even if no changes made (useful
to convert quickly tags),
* Added switch '--disable-mp3' to not compile the program with id3lib (will
allow in future version to choose between id3lib or taglib),
* Fixed problem of saving file order (bug introduced in version 1.99.10),
* French translation updated,
* Czech translation updated (thanks to Zbynek Mrkvicka),
* Hungarian translation updated (thanks to Mészáros Csaba),
* Spanish translation updated (thanks to Francisco Javier F. Serrador),
* German translation updated (thanks to Götz Waschk).
Windows version : (thanks to Michael Pujos)
* Fixed sorting of files,
* Paths and file names are displayed with character '\' instead of '/',
* Fixed renaming directories,
* Various fixes.
1.99.10 - November 28th, 2005 :
===============================
* Added port to Win32, to compile under MinGW (thanks to Michael Pujos),
* The preferences window was clean up : saving configuration changed (the
apply button was removed to not confuse user), position of main window,
scanner window and cddb are automatically saved (settings were removed
from the window),
* Added a protection against MP3 corrupted files (files containing only
zeroes) which cause a bug in id3lib and so freeze the program,
* Added some documentation,
* Changed some shortcuts in the menu by following the GNOME Human Interface
Guidelines 2.0,
* Added ability to load pictures contained in ID3v2 tag of a FLAC file,
* Fixed a crash that may occurs with the browser at startup,
* Fixed displaying of player in preferences window if it not exists, else
were can't save the settings,
* Fixed a crash that may occurs with message boxes (thanks to Falk Hueffner),
* Fixed some memory leaks,
* French translation updated,
* Czech translation updated (thanks to Zbynek Mrkvicka),
* Danish translation updated (thanks to Morten Brix Pedersen),
* Brazilian Portuguese translation updated (thanks to doutor.zero)
* German translation updated (thanks to Götz Waschk).
1.99.9 - November 3rd, 2005 :
=============================
* Ability to read and write UTF-16 strings in ID3 tag (thanks to Javier
Kohen and Alexey Illarionov),
* Added options to save tags only in ISO-8859-1, or only in Unicode, or to
let the program to do the best choice,
* Added options to select a non-standard encoding for ISO-8859-1 fields in
the tag (very useful for example for Russian people), and can apply some
rules when writing tag if some characters can't be converted to this
non-standard encoding (activate the transliteration or silently discard
some characters),
* Changed way to read and write filenames : use the encoding specified into
environment variables of language (as LANG or LC_ALL), instead of the GTK2
environment variable G_FILENAME_ENCODING,
* Added options to apply some rules when writing filename if some characters
can't be converted to the system encoding (activate the transliteration or
silently discard some characters),
* Added ability to rename the directory in the browser with masks,
* Added an option to return focus to the 'Title' field when switching files
with the previous/next button/shortcut,
* Added a menu item for the action "Show hidden directories" in the browser,
* For Ogg Vorbis files, the file vcedit.h was updated from vorbis-tools-1.1.1,
* Some fixes and improvements in the CDDB windows,
* Improved compatibility for MP4/AAC files with MPEG4IP-1.2,
* Fixed a crash when reading FLAC files,
* Fixed : remove old directories when changing path of the file with the
'Rename File' scanner,
* Fixed crash when numbering tracks sequentially after renaming files,
* Fixed problem when renaming file from one partition to an other one
(mananage the error "Invalid cross-device link"),
* Fixed : don't replace illegal characters when writing playlist content
from a pattern,
* Fixed writting of playlist to improve compatibility with some players
(uses DOS characters for a new line),
* Fixed conversion of the word 'I' with the 'first letter uppercase' scanner:
now it stays to upper case,
* Check if the program to launch to open files exists before to run it,
* A new bulgarian translation (thanks to Luchezar P. Petkov),
* French translation updated,
* Brazilian Portuguese translation updated (thanks to doutor.zero)
* German translation updated (thanks to Götz Waschk).
1.99.8 - August 31th, 2005 :
============================
* Added MP4/AAC file and tag support (including pictures in tag) by using
MPEG4IP-1.3 (libmp4v2) (thanks to Michael Ihde and Stewart Whitman),
* Fixed hangs in the cddb lookups (thanks to Paul Giordano),
* Fixed problem when parsing markup in the 'Fill Tag' scanner preview,
* "Copyright" replaced by "License" in .spec file to allow to build the RPM
package with rpm-4.4.0 (thanks to Nathaniel Clark),
* French translation updated,
* Italian translation updated (thanks to Costantino Ceoldo),
* German translation updated (thanks to Götz Waschk).
1.99.7 - July 11th, 2005 :
==========================
* When adding a picture, it tries to identify the type (front or back cover)
from the filename,
* Fixed saving a path in the browser entry after entering a new path,
* Fixed bug on Ogg Vorbis and Flac files which saves severals times the
TRACKTOTAL field if tag contains an unsupported field (thanks to Alan
Swanson),
* Fixed some strings that don't appear translated,
* Fixed loading of picture in ID3 tag with file name containing characters
not in UTF-8,
* French translation updated,
* Czech translation updated (thanks to Zbynek Mrkvicka),
* Brazilian Portuguese translation updated (thanks to doutor.zero)
* Hungarian translation updated (thanks to Mészáros Csaba),
* Italian translation updated (thanks to Costantino Ceoldo),
* German translation updated (thanks to Götz Waschk).
1.99.6 - June 26th, 2005 :
==========================
* Added scanner code '%d' for disc number,
* Configuration files updated to support ppc64 (thanks to Andreas Jochens),
* History list in comboboxes limited to 15 items,
* Fixed tab focus order in the 'Tag' area to avoid auto handling from gtk
(may changes on some systems),
* Fixed problem when writing playlist after renaming a directory,
* Fixed string encoding when writing playlist with the scanner,
* Fixed encoding of the default path to file chosen from preferences,
* Fixed problem of different file name sorting between file list and cddb
track name list,
* Fixed displaying number of files located in a directory with UTF-8 characters,
* Spanish translation updated (thanks to Francisco Javier F. Serrador),
* Italian translation updated (thanks to Costantino Ceoldo),
* German translation updated (thanks to Götz Waschk).
1.99.5 - June 6th, 2005 :
=========================
* Fixed crash when deleting pictures to severals tags at same time (thanks
to Fredrik Noring),
* Fixed a little bug when writing album disc number,
* Fixed changing case of a directory in FAT partitions,
* Fixed crash when using scanner to uppercase first letter of each word,
* Added icons in popup menu of tag fields,
* A new Greek translation (thanks to Apollon Oikonomopoulos),
* A new Brazilian Portuguese translation (thanks to doutor.zero),
* French translation updated,
* Spanish translation updated (thanks to Francisco Javier F. Serrador),
* Czech translation updated (thanks to Zbynek Mrkvicka),
* German translation updated (thanks to Götz Waschk).
1.99.4 - May 1st, 2005 :
========================
* Added ability to rename directories from the "Rename File" scanner (thanks
to Guilherme Destefani),
* Added new field for ID3v2 tag, Ogg Vorbis tag, FLAC tag and APE tag : disc
number,
* Added entry in file popup menu to run directly an automatic CDDB search
with the selected files,
* The CDDB protocol level had been changed to 6 to accept UTF-8 strings,
* Some fixes in the CDDB window and search file window,
* Added reading of FLAC Vorbis tag encoded into ISO-8859-1 character set,
* Added an option to preserve the modification time when saving the file,
* Improved settings of character set (for ID3 tags) to allow you to fix some
tags (for example if tags were written with UTF-8 instead of ISO-8859-15),
* Fixed wrong order of ID3 genres 'Swing' and 'Fast Fusion' (thanks to
Charles Shannon Hendrix),
* Fixed a bug into APE tag when deleting a field (thanks to Artur
Polaczynski),
* Fixed a bug in the Process fields scanner to remove spaces,
* Fixed for FLAC tag : keep the original vendor string while saving tag,
* Fixed displaying picture size when changing properties,
* Fixed lot of problems when handling UTF-8 filenames and strings,
* Fixed converting filenames to UTF-8 : if it fails try to convert from the
locale of your lang, else from ISO-8859-1,
* Fixed some memory leaks,
* French translation updated,
* Japanese translation updated (thanks to Takeshi Aihana),
* Romanian translation updated (thanks to George Pauliuc),
* Spanish translation updated (thanks to Fernando M. Bueno Moreno),
* Danish translation updated (thanks to Morten Brix Pedersen),
* Italian translation updated (thanks to Costantino Ceoldo),
* German translation updated (thanks to Götz Waschk).
1.99.3 - January 20th, 2005 :
=============================
* Added searching (search window) in the new tag fields added in the
previous version 1.99.1 (Composer, ...),
* Fixed displaying ratio for pictures in ID3v2 tags,
* Fixed requested server when using a proxy for the Cddb automatic searching
(thanks to bjustus schwartz),
* Fixed a bug with APE tags (thanks to Daniel Drake and Artur Polaczynski),
* Removed association of the program with directories in easytag.desktop,
* Removed forcing ID3v2.3 tags to ISO-8859-1 at start (was boring for
russian people),
* Replaced icons for directories in the browser,
* French translation updated,
* Italian translation updated (thanks to Costantino Ceoldo),
* German translation updated (thanks to Götz Waschk).
1.99.2 - November 30th, 2004 :
==============================
* Added support for picture into ID3v2 tags (thanks to Fredrik Noring),
* Added, for Ogg Vorbis and FLAC Vorbis, use of field TRACKTOTAL for the
number of file (instead doing like '02/21' in field TRACKNUMBER),
* Added ability to authentifiate on the proxy with username and password,
* Some fixes for the process fields scanner (thanks to Baris Cicek),
* Changed order of buttons in the message box dialogs (button OK on the
right, ...),
* Fixed saving of FLAC Vorbis tag, which was truncated with UTF-8 strings,
* Fixed running program from console using a relative or absolute path,
* Fixed displaying of hidden directories in the browser,
* Fixed using the command line to run EasyTAG with an hidden directory as
parameter (for example "easytag .a_hidden_dir/"),
* Using previous version for requesting cddb server as the new one doesn't
work with a proxy,
* Fixed gtk2 dependencies in easytag.spec file (thanks to John Thacker),
* French translation updated,
* Danish translation updated (thanks to Morten Brix Pedersen),
* Dutch translation updated (thanks to Vincent van Adrighem),
* Italian translation updated (thanks to Costantino Ceoldo),
* Russian translation updated (thanks to Andrey Astafiev),
* German translation updated (thanks to Götz Waschk).
1.99.1 - October 25th, 2004 :
=============================
* Added new fields for ID3v2 tag, Ogg Vorbis tag, FLAC tag and APE tag :
Composer, Original Artist/Performer, Copyright, URL and Encoder name,
* Added an option to select or not the corresponding file when selecting a
track name in the Cddb results,
* Added ability to search files in hidden directories,
* Added an option to not convert some words when using the scanner 'First
letter uppercase of each word' (theses words were skipped automatically in
the previous release),
* Fixed crash when switching between the Artist/Album view and the Browser
view (thanks to Daniel Drake), code was also improved,
* Fixed bug of loss of filename after opening the file with an external
program,
* Fixed displaying of small icons on small button as in Sequence Track
button,
* Fixed some memory leaks,
* French translation updated,
* German translation updated (thanks to Götz Waschk).
Note about numbering :
- 1.x : versions for GTK 1.2
- 2.x : versions for GTK 2.4 (1.99.x were pre releases)
0.31_gtk2.4_pre3 - September 29th, 2004 :
=========================================
* UTF-8 filename fixes (thanks to Daniel Drake),
* Added ability to request Cddb database automatically from the selected
files (computing the CddbId) (thanks to Justus Schwartz),
* When applying Cddb results to the files, the cddb genre is converted to an
ID3 genre,
* Added ability to convert filename extension to lower or upper case,
* Removed old function to keep the tree browser in memory (to not refresh it
automatically when collapsing and expanding a node),
* Fixed problem with UTF-8 strings and the process fields scanner (thanks to
Baris Cicek),
* Fixed ability to open a file with the popup menu entry "Open File(s)
with ...",
* Fixed displaying search result to red if matching
* Fixed displaying of the last selected file when selecting severals files,
* Fixed error messages in the Artist/Album view,
* French translation updated,
* Danish translation updated (thanks to Morten Brix Pedersen),
* Italian translation updated (thanks to Costantino Ceoldo),
* German translation updated (thanks to Götz Waschk).
0.31_gtk2.4_pre2 - September 11th, 2004 :
=========================================