-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathNEWS
1664 lines (1467 loc) · 78.1 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.1.8 - … :
=========================
* Port to and require the most recent GTK+ 2 release (2.24)
* Allow experimental compilation against GTK+ 3
* 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
* 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 :
=========================================
* Fixed the option to load a directory at start (it read the dir. even if
disactivated),
* Fixed the conversion of the red lines to black when file was saved (thanks
to John Spray),
* Fixed UTF-8 strings in easytag.desktop,
* Fixed 'configure' scripts as libvorbis is needed for libFLAC (thanks to
Daniel Drake),
* Fixed request to cddb for getting album tracks,
* Fixed the command to 'Reload Directory' which didn't work,
* The fields identifiers for Vorbis FLAC tag are written with upper letters
(ex: TITLE= instead of title=) as they are recommended by Vorbis standard,
* Various fixes,
* Some updates in the USERS-GUIDE files (thanks to David Greaves),
* Added an option to write or remove ID3 tag in FLAC files,
* Added the matching of cddb title against every file using the Levenshtein
algorithm (DLM : Damerau-Levenshtein Metric) (thanks to Santtu Lakkala),
* Added Mime type in desktop file to be visible in the right click menu for
directories (with GNOME-2.7) (thanks to Goetz Waschk),
* A new Danish translation (thanks to Morten Brix Pedersen),
* French translation updated,
* German translation updated (thanks to Götz Waschk).
0.31_gtk2.4_pre1 - July 16th, 2004 :
====================================
* Added an option to display the changed files to bold or red, like in the
gtk-1.2 version (thanks to Hagen Möbius),
* Fixed functions to process fields with UTF-8 strings, in the scanner
(thanks to Santtu Lakkala),
* Fixed renaming directories (thanks to Daniel Drake),
* Fixed sensivity of file and tag area, when changing directory,
* French translation updated,
* Japanese translation updated (thanks to Takeshi Aihana),
* German translation updated (thanks to Götz Waschk).
0.31_gtk2.4_pre0 - July 3rd, 2004 :
===================================
* GTK 2.4 port (thanks to Daniel Drake),
* Initial GTK2 porting work (thanks to Mihael Vrbanec).
0.31 - May 29th, 2004 :
=======================
* Tried to fixed the problem to get list of selected files after deleting of
files,
* Added ability to set/unset padding in ID3v2 tags,
* Added an option in the 'Playlist window' to write only the selected files
or directly all the files in the playlist,
* Polish translation updated (thanks to Artur Polaczynski),
* Russian translation updated (thanks to Andrey Astafiev),
* Romanian translation updated (thanks to George Pauliuc),
* Dutch translation updated (thanks to Björn Olievier),
* Japanese translation updated (thanks to Takeshi Aihana),
* Czech translation updated (thanks to Milan Siebenburger),
* Italian translation updated (thanks to Costantino Ceoldo).
0.30.2 - March 25th, 2004 :
===========================
* Some tabs in the preferences window have been reorganized,
* Fixed in configure script, the detection of libFLAC when using the switch
--disable-ogg,
* Fixed a wrong numbering in sub directories for the new track field button
(to set the number of files in the directory to the track field),
* German translation updated (thanks to Götz Waschk).
0.30.1 - March 22th, 2004 :
===========================
* Added support of FLAC Vorbis tag for FLAC files (if the file has no FLAC
vorbis file, it tries to read the ID3 tag) (thanks to Pavel Minayev),
* Added support of APE tag for OptimFROG files (.ofr, .ofs),
* Added ability to write by default ID3v2.3 tags to ISO-8859-1,
* Version of libFLAC (1.0.3) supplied in the package was removed,
* Added ability in the Process Fields scanner to convert a character by an
other on (patch from Ben Hearsum),
* Added ability to display the files by Artists and by Albums,
* Added ability to set independently the character conversion for the Tag
scanner and the Rename File scanner,
* Added a new button to set the number of files in the directory to the
track field,
* Added the entry "Tag selected files with this field" in the popup menu of
tag entries,
* Added a sub menu Scanner into popup menu over the file list,
* When resizing the main window, the tag area doesn't grow,
* The fields identifiers for Ogg Vorbis tag are written with upper letters
(ex: TITLE= instead of title=) as they are recommended by Vorbis standard,
* The CDDB results can be applied to the files selected in the main list,
* Fixed the execution of scanner, when using entries of the main menu
'Scanner' in the menu bar,
* Fixed the CDDB server name, that wasn't saved in the configuration file,
* Fixed connection to CDDB under FreeBSD 5.1 (thanks to from Jan Kanty Palus),
* Fixed a bug when using "Repeat action for the rest of the files" when
deleting files,
* Fixed a bug that doesn't save the changed files, which aren't selected,
when changing of directory or exiting, even if you select the button "Yes"
in the dialog box,
* Fixed a bug when renaming files with the scanner and using the character
conversion (some spaces or underscores weren't replaced),
* Fixed some memory leaks (in browser, scanner, ...),
* Updated easytag.desktop and EasyTAG icon,
* French translation updated,
* Spanish translation updated (thanks to Fernando M. Bueno Moreno),
* Italian translation updated (thanks to Costantino Ceoldo),
* Dutch translation updated (thanks to Björn Olievier),
* Ukrainian translation updated (thanks to Cawko Xakep).
0.30 - September 8th, 2003 :
============================
* Added an option to define the number of characters to use for the Track
field (see Misc tab),
* Added a button in the browser to jump to the parent directory,
* Pressing the Enter key in the tag entries set the focus to the next entry,
* The selection of files in the search window select also the corresponding
files in the main list,
* Added ability to select files of the same directory by double clicking
over the list, triple clicking select all files,
* The tree browser is sorted again after renaming a directory,
* The tree browser is sorted ignoring the word case,
* Content of the clipboard is automatically set in the 'Words' field of the
CDDB window and Search window, when opening them,
* Added button in the CDDB window to filtrate the 'red' lines in the albums
list,
* Added button in the CDDB window to select/unselect all lines and invert
the selection in the tracks album list,
* Fixed position in the list when selecting a file with the mouse (use of
the next or previous button select the wrong line),
* Fixed state of the Undo and Redo buttons when using the command to select
all files and invert the selection,
* Fixed tooltips message on the small buttons in the tag area,
* French translation updated,
* Czech translation updated (thanks to Milan Siebenburger),
* German translation updated (thanks to Götz Waschk).
0.29 - September 1rst, 2003 :
=============================
* When selecting a "changed" file, the background color is set to red (as
for the filename in the normal state),
* Fixed problem when selecting file after to have been sorted,
* Fixed problem to display file data, when selecting finally only one file
of the last selected files,
* Added ability to sort the CDDB results by track name or track number or
manually,
* Added detection and linking with iconv in the configure script to avoid
compilation error,
* When using buttons 'first', 'previous', 'next' and 'last', only one line
is selected,
* Russian translation updated (thanks to Andrey Astafiev),
* Dutch translation updated (thanks to Björn Olievier),
* Japanese translation updated (thanks to Takeshi Aihana),
* Polish translation updated (thanks to Artur Polaczynski),
* Italian translation updated (thanks to Lorenzo Cappelletti),
* Romanian translation updated (thanks to George Pauliuc),
* German translation updated (thanks to Götz Waschk).
0.28.1 - July 13th, 2003 :
==========================
* Added the ability to perform an action only for the selected files : to
set a field to other files, to remove tags, to scan files, to save files,
to delete files, to use undo and redo, to open files with an external
program,
* Added ability to (un)select all files or to invert the selection,
* Changed writing of the genre in ID3v2.3 tags (according to id3v2.3.0
standard),
* Added displaying of number of files in the directory of the selected file
(in the browser area),
* Added preview for the Fill Tag scanner,
* Added buttons in the toolbar to select all files and invert the selection,
* Cleanup in the toolbar and in menus,
* Warning : Many shortcuts have been changed!,
* A lot of code cleanup,
* Fixed a small bug in the preview of the Rename File Scanner,
* Fixed problem of zombie process when terminating the audio player (thanks
to Tony Mancill),
* Fixed a bug when starting with some gtk themes as H2O (no window appeared)
(thanks to Tony Mancill),
* Fixed a bug when applying CDDB results to the files excepted for the
filename,
* French translation updated,
* Romanian translation updated (thanks to George Pauliuc),
* German translation updated (thanks to Götz Waschk),
* Russian translation updated (thanks to Andrey Astafiev).
0.28 - May 31th, 2003 :
=======================
* Added ability to add the CRC-32 value (for files with ID3 tags only) as
default comment when using scanner (thanks to Oliver),
* Added ability to write the playlist with DOS directory separator (thanks
to Oliver),
* Added ability to write the playlist in the parent directory (thanks to
Oliver),
* Fix for Ogg Vorbis files : skip the ID3v2 tag (if it exists) to open the
file without error,
* Bugfixes in the playlist generator (character replacement, ...),
* Fixed refreshing of file path when renaming a directory,
* Now the configuration and history files were created at the start up to
avoid error messages,
* Added some patch for NetBSD (thanks to Soren Jacobsen),
* French translation updated,
* German translation updated (thanks to Götz Waschk).
0.27.1 - April 20th, 2003 :
===========================
* Added support of APE tag for MusePack and Monkey's Audio files (thanks to
Artur Polaczynski),
* Cast and pointers fixes for a clean compilation on 64bits platform (thanks
to Philipp Thomas),
* Fixed a bug when using "Open File With..." after renaming a file without
reloading the directory (it was using the old filename),
* Cleaning in the configure script (thanks to Philipp Thomas),
* When loading files with id3 tags, it checks if it has the versions of tags
specified in the preferences window,
* Genre in ID3v2 tag : use only the string for an unknowm id3v1 genre,
* Added the missing instruction "#include <errno.h>" in about.c that may
produce compilation problems,
* Dutch translation updated (thanks to Björn Olievier),
* Polish translation updated (thanks to Artur Polaczynski),
* Czech translation updated (thanks to Milan Siebenburger),
* German translation updated (thanks to Götz Waschk).
0.27 - February 2nd, 2003 :
===========================
* Fixed an other filepointer leak when renaming file and directories (thanks
to Artur Polaczynski),
* Improved speed when applying a field to all other files, removing all tags
and scanning all files,
* Fixed problem with too long track name in CDDB albums,
* When getting files list of a cddb album, it tries to reconnect severals
times if the connection fails,
* Ability to select lines in the CDDB track name to load to the file list,
* Ability to run the scanner when loading filenames from a TXT file,
* Ability to run the scanner when loading fields from CDDB results,
* Ability to load CDDB results only for the selected lines,
* Ability to generate the playlist name from mask codes,
* Added tab in "About" window to display the ChangeLog,
* Fixed detection of version id3lib (due to an error in configure.in),
* Added german help documentation (thanks to Daniel Pichler),
* Russian translation updated (thanks to Andrey Astafiev),
* German translation updated (thanks to Götz Waschk).
0.26 - December 31th, 2002 :
============================
* Fixed filepointers leaks when ID3v2 tag is missing for files using ID3
tags (thanks to Martijn van Buul),
* NetBSD patches from Thomas Klausner,
* Some bugfixes in the CDDB search,
* Updated character conversion for CD-Rom filesystems,
* Fixed a crash when applying the CDDB result to a list with less files,
* Fixed a memory bug when using the menu entry 'Reload the directory',
* Added a man page (thanks to George Pauliuc),
* When sorting the files, they are sorted also by ascending filename by
default,
* When tag entries have the focus, PageUp and PageDown keys select the
previous or the next file,
* Polish translation updated (thanks to Maciej Kasprzyk),
* Italian translation updated (thanks to Lorenzo Cappelletti),
* Ukrainian translation updated (thanks to Cawko Xakep).
0.25 - November 11th, 2002 :
============================
* Ability to stop the saving of all files,
* Improvement of the directory browser, when renaming a directory,
* Ability to set also the filename from CDDB results,
* Ability to search a word in the album list of the CDDB window,
* Don't loose unsupported tag items for the Ogg files,
* A new Romanian translation (thanks to George Pauliuc),
* French translation updated,
* Dutch translation updated (thanks to Björn Olievier),
* Japanese translation updated (thanks to Takeshi Aihana),
* Spanish translation updated (thanks to Jaime Serrano Cartagena),
* Swedish translation updated (thanks to Patrik Israelsson),
* Hungarian translation updated (thanks to Nagy Boldizsar),
* Czech translation updated (thanks to Milan Siebenburger),
* German translation updated (thanks to Götz Waschk).
0.24.1 - October 24th, 2002 :
=============================
* Added CDDB support (from http protocol),
* New possibilities for sorting the list of files (type, size, duration,
birate, ...),
* Fixed to compile with flac-1.0.4 (thanks to Bastian Kleineidam and Götz
Waschk),
* Old versions of ID3v2 tags are automatically updated to ID3v2.3,
* Fixed renaming files or directories (the old method was better than the
newer one, with patch from Alan Swanson),
* Use of 'mkstemp' instead of 'mktemp',
* Various bugfixes,
* French translation updated,
* Polish translation updated (thanks to Maciej Kasprzyk),
* Ukrainian translation updated (thanks to Cawko Xakep),
* German translation updated (thanks to Götz Waschk),
* Hungarian translation updated (thanks to Nagy Boldizsar).
0.24 - September 15th, 2002 :
=============================
* Added ability to open a file with an external program,
* Added ability to use arguments when opening a directory or a file with an
external program (for example : 'xmms -e'),
* Some fixes when deleting files : the total size and total duration are
updated,
* Invalid characters are replaced when renaming the file from the scanner,
* Re-added preprocessor instructions in the file vcedit.h (forgotten when
updating this file from vorbis-tools-1.0),
* Fix for an unsupported ID3v2 tag : we get data of the ID3v1 tag (for
example: ID3v2.4 tag with id3lib-3.8.0),
* Added check of validity of playlist content mask,
* Fixed reading of informations of mpeg header, and calculation of song
time, with files containing an ID3v2 tag (patch from Artur Polaczynski),
* Fixed the popup menu in entries field : now we don't need to click two
times the left mouse button (patch from Maciej Kasprzyk),
* Corrections in text menu (thanks to Artur Polaczynski),
* Fixed renaming of directory,
* Number of files to save is displayed in the progress bar,
* Code clean up for scanners,
* Various fixes,
* Logo "updated",
* French translation updated,
* Polish translation updated (thanks to Maciej Kasprzyk),
* Japanese translation updated (thanks to Takeshi Aihana),
* Italian translation updated (thanks to Lorenzo Cappelletti),
* Russian translation updated (thanks to Andrey Astafiev),
* Czech translation updated (thanks to Milan Siebenburger),
* German translation updated (thanks to Götz Waschk).
0.23.2 - September 1rst, 2002 :
===============================
* Fixed a stupid bug in the rename file scanner : the file path was lost!
0.23.1 - September 1rst, 2002 :
===============================
* Playlist generator : ability to define the informations to write in the
playlist, by using masks (like in scanners),
* Fixed a bug with an empty field in Ogg Vorbis file,
* Fixed a bug into the scanner window, due to a missing initialisation,
* A fix for the undo function: now the history list has a logical behaviour,
* Patch from Götz Waschk to compile with the version of libFLAC installed on
your system if found,
* Added switch '--disable-flac' to force the compilation with files of
libFLAC supplied in the package,
* Improved speed of removing tags from the interface,
* Improved speed of the three scanners,
* Improved speed of searching and loading files when browsing directories,
* Process fields: the genre field was added,
* Number of files parsed is displayed in the progress bar,
* Updated vcedit.c from vorbis-tools-1.0 to remove all memory leaks when
processing Ogg Vorbis files,
* Binary linked with Vorbis libraries 1.0,
* A new Polish translation (thanks to Maciej Kasprzyk),
* French translation updated,
* Czech translation updated (thanks to Milan Siebenburger).
0.23 - July 18th, 2002 :
========================
* A fix for 'Makefile.am' in the FLAC directory : the file /usr/include/assert.h'
may be overwritten on some systems,
* Russian translation updated (thanks to Andrey Astafiev),
* German translation updated (thanks to Götz Waschk).