This repository has been archived by the owner on Oct 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
ChangeLog
10601 lines (7429 loc) · 357 KB
/
ChangeLog
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
2003-03-02 Sunday 17:38 Thijmen Klok <[email protected]>
* THANKS (1.20): added more people
2003-03-02 Sunday 17:37 Thijmen Klok <[email protected]>
* config.h.win32 (1.25), config.h.win32.in (1.13), configure
(1.79), configure.in (1.68), macconfig.h (1.12): changes to reflect
new version
2003-03-02 Sunday 17:19 Thijmen Klok <[email protected]>
* config.sub (1.3), config.guess (1.3): update from
ftp://ftp.gnu.org/pub/gnu/config/ timestamp 2003-02-22
2003-03-02 Sunday 16:17 Thijmen Klok <[email protected]>
* examples/: demo_main.cpp (1.4), test_io.cpp (1.6),
test_remove.cpp (1.13): added cerr cout and endl where needed
2003-03-02 Sunday 15:39 Thijmen Klok <[email protected]>
* src/tag_find.cpp (1.28): Fixes a bug where a string is tried to
be made from NULL
2003-03-02 Sunday 15:30 Thijmen Klok <[email protected]>
* src/header_tag.cpp (1.25): adds a check on _info for NULL
2003-03-02 Sunday 15:23 Thijmen Klok <[email protected]>
* src/: field_string_ascii.cpp (1.29), field_string_unicode.cpp
(1.33), field_binary.cpp (1.27): added a check for NULL in Set()
2003-03-02 Sunday 15:14 Thijmen Klok <[email protected]>
* src/tag_file.cpp (1.43): fixes left open file
2003-03-02 Sunday 14:56 Thijmen Klok <[email protected]>
* include/id3/id3lib_strings.h (1.4): fix for undefined wchar_t
template
2003-03-02 Sunday 14:35 Thijmen Klok <[email protected]>
* src/tag.cpp (1.55), include/id3/tag.h (1.63): fix because
GetFileName need to return a pointer which keeps to be valid
2003-02-21 Friday 04:47 slackorama
* include/id3/globals.h (1.54): added a missing const to remove
warning when compiling with -Wwrite-strings (as is done in KDE and
many other projects)
2002-11-24 Sunday 20:39 Thijmen Klok <[email protected]>
* ChangeLog (1.138): added all entries for 3.8.2 release
2002-11-24 Sunday 20:34 Thijmen Klok <[email protected]>
* id3com/id3com.dsp (1.20): added link32 to zlib
2002-11-24 Sunday 18:33 Thijmen Klok <[email protected]>
* src/tag_parse.cpp (1.47): fixed a bug which caused v1 tags to be
ignored after a lyrics v2 tag
2002-11-24 Sunday 17:31 Thijmen Klok <[email protected]>
* src/tag_parse.cpp (1.46): fixed a stupid bug of mine, affecting
wrong handling of id3v1 tags
2002-11-03 Sunday 01:41 Thijmen Klok <[email protected]>
* src/field.cpp (1.47): fixes access to invalid framedefs
2002-11-02 Saturday 23:28 Thijmen Klok <[email protected]>
* id3com/win32.readme.first.txt (1.4),
libprj/win32.readme.first.txt (1.4), prj/win32.readme.first.txt
(1.4): improved comment on delphi
2002-11-02 Saturday 22:02 Thijmen Klok <[email protected]>
* src/tag_file.cpp (1.42): fixed a bug in RenderV2ToFile, file was
not cleared and thus eof mark was still set
2002-11-02 Saturday 19:10 Thijmen Klok <[email protected]>
* ChangeLog (1.137): added todays work
2002-11-02 Saturday 19:07 Thijmen Klok <[email protected]>
* config.h.win32 (1.24), configure (1.78), configure.in (1.67),
macconfig.h (1.11): bumped version up to 3.8.1
2002-11-02 Saturday 19:03 Thijmen Klok <[email protected]>
* id3lib.spec.in (1.27): added a line on mp3 headers
2002-11-02 Saturday 18:49 Thijmen Klok <[email protected]>
* THANKS (1.19): added latest help
2002-11-02 Saturday 18:48 Thijmen Klok <[email protected]>
* include/id3/globals.h (1.53), src/mp3_header.h (1.4),
src/mp3_parse.cpp (1.6): added vbr support
2002-11-02 Saturday 18:35 Thijmen Klok <[email protected]>
* include/id3/tag.h (1.62), src/tag.cpp (1.54), src/tag_file.cpp
(1.41), src/tag_impl.h (1.10), src/tag_parse.cpp (1.45): added
streaming support
2002-11-02 Saturday 18:03 Thijmen Klok <[email protected]>
* libprj/win32.readme.first.txt (1.3),
id3com/win32.readme.first.txt (1.3), prj/win32.readme.first.txt
(1.3): added comment about id3lib.pas
2002-11-02 Saturday 17:56 Thijmen Klok <[email protected]>
* delphi/Id3lib.pas (1.1): added delphi interface to id3lib
2002-11-02 Saturday 13:45 Thijmen Klok <[email protected]>
* id3com/: ID3Tag.cpp (1.14), id3com.dsp (1.19), id3com.idl (1.13):
Updated id3com in line with latest id3lib
2002-10-04 Friday 10:57 Thijmen Klok <[email protected]>
* ChangeLog (1.136): added latest entries
2002-10-04 Friday 10:52 Thijmen Klok <[email protected]>
* src/tag_parse_lyrics3.cpp (1.35): cleaning source
2002-09-23 Monday 23:32 slackorama
* src/tag_parse_lyrics3.cpp (1.34): Fixed a "version priority"
issue in the ID3 lyrics tagging stuff. Posted patch on id3lib-devel
first.
2002-09-21 Saturday 19:23 Thijmen Klok <[email protected]>
* include/id3.h (1.21), include/id3/tag.h (1.61), src/c_wrapper.cpp
(1.22, rel-3-7-10), src/helpers.cpp (1.12), src/tag.cpp (1.53),
src/tag_impl.cpp (1.13), src/tag_impl.h (1.9): added boolean return
for AttachFrame
2002-09-21 Saturday 18:04 Thijmen Klok <[email protected]>
* src/tag_impl.cpp (1.12): initializing _mp3_info to NULL
2002-09-19 Thursday 12:20 Thijmen Klok <[email protected]>
* src/misc_support.cpp (1.39), include/id3/misc_support.h (1.29):
fixed prototpyes ID3_GetSyncLyrics
2002-08-13 Tuesday 18:10 Thijmen Klok <[email protected]>
* include/id3/id3lib_strings.h (1.3): fixed compile for gcc 3.2
2002-08-11 Sunday 12:58 Thijmen Klok <[email protected]>
* cvs2cl.pl (1.2): changed command for use of ssh
2002-08-10 Saturday 22:39 Thijmen Klok <[email protected]>
* config.h.win32.in (1.12): updated for version info on dll
2002-08-10 Saturday 22:13 Thijmen Klok <[email protected]>
* ChangeLog (1.135): updated changelog for latest changes before
final
2002-08-10 Saturday 22:02 Thijmen Klok <[email protected]>
* examples/getopt.c (1.3): fixed stupid gcc warning from external
code
2002-08-10 Saturday 19:40 Thijmen Klok <[email protected]>
* include/id3/globals.h (1.52), include/id3/misc_support.h (1.28),
src/misc_support.cpp (1.38): added routines to misc_support
2002-08-10 Saturday 18:33 Thijmen Klok <[email protected]>
* THANKS (1.18): added two busy developers
2002-08-10 Saturday 15:27 Thijmen Klok <[email protected]>
* ChangeLog (1.134): added notes until final version
2002-08-10 Saturday 15:13 Thijmen Klok <[email protected]>
* id3com/win32.readme.first.txt (1.2),
libprj/win32.readme.first.txt (1.2), prj/win32.readme.first.txt
(1.2): updated for MFC instructions
2002-08-10 Saturday 13:51 Thijmen Klok <[email protected]>
* config.h.win32 (1.23), configure (1.77), configure.in (1.66),
macconfig.h (1.10, rel-3-7-13, rel-3-7-12, rel-3-7-11, rel-3-7-10):
updated for final version 3.8.0
2002-08-10 Saturday 13:49 Thijmen Klok <[email protected]>
* makefile.win32 (1.3): updated to include new link option and
mp3_parse.cpp
2002-08-10 Saturday 13:47 Thijmen Klok <[email protected]>
* id3com/id3com.dsp (1.18), include/id3.h (1.20),
include/id3/globals.h (1.51), libprj/id3lib.dsp (1.16),
prj/id3lib.dsp (1.18), src/c_wrapper.cpp (1.21): updated to include
CCONV definition and use the new linkoption
2002-08-10 Saturday 12:50 Thijmen Klok <[email protected]>
* src/frame_impl.h (1.6): Added copyright
2002-08-10 Saturday 12:42 Thijmen Klok <[email protected]>
* include/id3/Makefile.am (1.23), include/id3/Makefile.in (1.59),
include/id3/tag.h (1.60), src/c_wrapper.cpp (1.20), src/frame.cpp
(1.35), src/frame_impl.h (1.4), src/frame_impl.h (1.5),
include/id3/id3lib_frame.h (1.1), include/id3/frame.h (1.43):
Renamed frame.h to avoid conflict with windows and gcc header
2002-08-10 Saturday 12:17 Thijmen Klok <[email protected]>
* include/id3/tag.h (1.59), src/tag.cpp (1.52), src/tag_impl.h
(1.8): changed HasTagType from uint16 to ID3_TagType for c_wrapper
2002-08-08 Thursday 23:28 Thijmen Klok <[email protected]>
* config.h.win32 (1.22), prj/version.rc (1.2): made dll versioning
automated
2002-08-08 Thursday 17:41 Thijmen Klok <[email protected]>
* prj/: version.rc (1.1), Makefile.am (1.6), Makefile.in (1.5),
id3lib.def (1.1), id3lib.dsp (1.17): added version.rc and
id3lib.def
2002-07-31 Wednesday 18:41 Thijmen Klok <[email protected]>
* src/tag_parse.cpp (1.44): fixed padding empty files
2002-07-31 Wednesday 16:35 Thijmen Klok <[email protected]>
* src/tag_parse_lyrics3.cpp (1.33): added brackets for win32
compilation
2002-07-31 Wednesday 16:17 Thijmen Klok <[email protected]>
* config.h.win32 (1.21), configure (1.76), configure.in (1.65),
macconfig.h (1.9, rel-3-7-9): getting ready for pre3.3
2002-07-31 Wednesday 16:16 Thijmen Klok <[email protected]>
* libtool (1.15): these are generated
2002-07-31 Wednesday 16:02 Thijmen Klok <[email protected]>
* config.win32 (1.9): is obsolete
2002-07-31 Wednesday 15:59 Thijmen Klok <[email protected]>
* AUTHORS (1.13, rel-3-7-13, rel-3-7-12, rel-3-7-11, rel-3-7-10):
added a desciption for Cedrics involment
2002-07-31 Wednesday 15:45 Thijmen Klok <[email protected]>
* src/: field.cpp (1.46), frame_render.cpp (1.27), misc_support.cpp
(1.37), tag.cpp (1.51), tag_file.cpp (1.40), tag_parse_lyrics3.cpp
(1.32), tag_parse_v1.cpp (1.27): cosmetic changes
2002-07-31 Wednesday 15:20 Thijmen Klok <[email protected]>
* src/: header.cpp (1.11), header.h (1.3), header_tag.cpp (1.24),
header_tag.h (1.2), spec.cpp (1.2), tag_impl.cpp (1.11), tag_impl.h
(1.7), tag_parse.cpp (1.43), tag_render.cpp (1.44): better support
for extended headers
2002-07-31 Wednesday 14:47 Thijmen Klok <[email protected]>
* src/: mp3_header.h (1.3), mp3_parse.cpp (1.5), tag_impl.h (1.6):
making Mp3HeaderInfo read-only
2002-07-28 Sunday 23:53 Thijmen Klok <[email protected]>
* examples/demo_info.cpp (1.32), include/id3/tag.h (1.58),
src/tag.cpp (1.50): making Mp3HeaderInfo read-only
2002-07-28 Sunday 23:13 Thijmen Klok <[email protected]>
* src/tag_parse_v1.cpp (1.26): real fix for garbage after comment
2002-07-28 Sunday 22:05 Thijmen Klok <[email protected]>
* src/tag_parse_v1.cpp (1.25): fix for garbage after comment
2002-07-27 Saturday 18:06 Thijmen Klok <[email protected]>
* include/id3/: Makefile.am (1.22), Makefile.in (1.58): included
id3lib_strings.h and id3lib_streams.h to installed headers
2002-07-27 Saturday 17:44 Thijmen Klok <[email protected]>
* libprj/id3lib.dsp (1.15), prj/id3lib.dsp (1.16): fixed header
location
2002-07-27 Saturday 16:16 Thijmen Klok <[email protected]>
* ChangeLog (1.133): added past week
2002-07-27 Saturday 15:03 Thijmen Klok <[email protected]>
* src/mp3_parse.cpp (1.4): change of reading in uint16 number to
use existing routines
2002-07-26 Friday 13:09 Thijmen Klok <[email protected]>
* configure (1.75), Makefile.in (1.59), configure.in (1.64),
doc/Makefile.in (1.18), examples/Makefile.in (1.25),
id3com/Makefile.in (1.2), id3com/Sample/Makefile.in (1.2),
include/Makefile.in (1.13), include/id3/Makefile.in (1.57),
libprj/Makefile.in (1.4), m4/Makefile.in (1.18), prj/Makefile.in
(1.4), src/Makefile.in (1.57): made -liconv to work
2002-07-25 Thursday 15:51 Thijmen Klok <[email protected]>
* src/tag_impl.cpp (1.10): fixed setting _mp3_info to NULL
2002-07-25 Thursday 14:33 Thijmen Klok <[email protected]>
* src/mp3_parse.cpp (1.3): changed routine so 0 bitrate mp3s could
also be crc checked
2002-07-23 Tuesday 22:06 Thijmen Klok <[email protected]>
* config.h.win32 (1.20), configure (1.74, rel-3-7-8), configure.in
(1.63), macconfig.h (1.8): yet another devel release upgrade of
version nr
2002-07-23 Tuesday 21:55 Thijmen Klok <[email protected]>
* prj/id3lib.dsp (1.15), libprj/id3lib.dsp (1.14): included
mp3_parse.cpp and mp3_header.h
2002-07-23 Tuesday 18:28 Thijmen Klok <[email protected]>
* include/id3/sized_types.h (1.7): added a better desciption on
what to send on error
2002-07-23 Tuesday 16:15 Thijmen Klok <[email protected]>
* config.h.win32 (1.19), configure (1.73), configure.in (1.62),
macconfig.h (1.7), ChangeLog (1.132): higher version because of
devel release
2002-07-23 Tuesday 15:57 Thijmen Klok <[email protected]>
* NEWS (1.27, rel-3-7-10): added url for latest news
2002-07-23 Tuesday 15:47 Thijmen Klok <[email protected]>
* examples/: Makefile.am (1.22), Makefile.in (1.24),
demo_simple.cpp (1.1): renamed demo_simple.c to demo_simple.cpp
2002-07-23 Tuesday 15:22 Thijmen Klok <[email protected]>
* examples/: Makefile.am (1.21), Makefile.in (1.23), crc53865.mp3
(1.1): added crc53865.mp3 for new routine GetMp3HeaderInfo
2002-07-23 Tuesday 15:20 Thijmen Klok <[email protected]>
* include/id3/globals.h (1.50), examples/demo_info.cpp (1.31),
include/id3/tag.h (1.57), src/mp3_header.h (1.2), src/mp3_parse.cpp
(1.2), src/tag.cpp (1.49), src/tag_impl.h (1.5): changed name of
GetMp3Header and Mp3_Header
2002-07-22 Monday 20:28 Thijmen Klok <[email protected]>
* ChangeLog (1.131): added mp3 header info additions
2002-07-22 Monday 19:56 Thijmen Klok <[email protected]>
* include/id3/globals.h (1.49), include/id3/tag.h (1.56),
src/Makefile.am (1.27), src/Makefile.in (1.56), src/tag.cpp (1.48),
src/tag_impl.h (1.4), src/tag_parse.cpp (1.42), src/mp3_header.h
(1.1), src/mp3_parse.cpp (1.1): Added mp3 header info
2002-07-17 Wednesday 18:40 Thijmen Klok <[email protected]>
* Makefile.am (1.28), include/Makefile.am (1.6),
include/id3/Makefile.am (1.21), libprj/Makefile.am (1.6),
m4/Makefile.am (1.9), prj/Makefile.am (1.5, rel-3-7-13,
rel-3-7-12), src/Makefile.am (1.26): added copyright
2002-07-17 Wednesday 18:35 Thijmen Klok <[email protected]>
* Makefile.in (1.58), configure.in (1.61), doc/Makefile.in (1.17),
examples/Makefile.in (1.22), id3com/Makefile.in (1.1),
id3com/Sample/Makefile.in (1.1), include/Makefile.in (1.12),
include/id3/Makefile.in (1.56), libprj/Makefile.in (1.3),
m4/Makefile.in (1.17), prj/Makefile.in (1.3), src/Makefile.in
(1.55), aclocal.m4 (1.18), configure (1.72, rel-3-7-7): regenerated
2002-07-17 Wednesday 17:42 Thijmen Klok <[email protected]>
* configure.in (1.60): changed AC_PROG_LIBTOOL to AM_PROG_LIBTOOL
2002-07-17 Wednesday 17:16 Thijmen Klok <[email protected]>
* id3com/Sample/Makefile.am (1.1): initial file
2002-07-17 Wednesday 17:14 Thijmen Klok <[email protected]>
* id3com/Makefile.am (1.9): changed to reflect dir contents
2002-07-17 Wednesday 17:03 Thijmen Klok <[email protected]>
* m4/Makefile.am (1.8): added id3_unicode.m4
2002-07-16 Tuesday 17:32 Thijmen Klok <[email protected]>
* include/id3/: Makefile.am (1.20), Makefile.in (1.55): added
id3lib_bitset
2002-07-08 Monday 20:27 Thijmen Klok <[email protected]>
* prj/Makefile.am (1.4), prj/Makefile.in (1.2), libprj/Makefile.am
(1.5), libprj/Makefile.in (1.2): added win32.readme
2002-07-06 Saturday 23:31 Thijmen Klok <[email protected]>
* ChangeLog (1.130): added last two days
2002-07-06 Saturday 23:28 Thijmen Klok <[email protected]>
* src/tag_parse_v1.cpp (1.24): fixed setting field when previous
field was existing but empty
2002-07-06 Saturday 19:04 Thijmen Klok <[email protected]>
* src/tag_parse_v1.cpp (1.23): fixed setting genre when previous
genre was existing but empty
2002-07-06 Saturday 15:52 Thijmen Klok <[email protected]>
* src/: frame_render.cpp (1.26), frame_parse.cpp (1.34): fixed
empty frame bugs
2002-07-05 Friday 18:12 Thijmen Klok <[email protected]>
* AUTHORS (1.12): Readded Cedric, welcome back :-)
2002-07-05 Friday 14:35 Thijmen Klok <[email protected]>
* ChangeLog (1.129): added last few days
2002-07-05 Friday 14:33 Thijmen Klok <[email protected]>
* src/tag_parse.cpp (1.41): cleanup of internal variable file added
2002-07-05 Friday 14:31 Thijmen Klok <[email protected]>
* src/: header_frame.h (1.2), frame_render.cpp (1.25): Fixed bug
unknown frames corrupting tag
2002-07-03 Wednesday 22:36 Thijmen Klok <[email protected]>
* src/tag_file.cpp (1.39): Fixed deleted MP3 after update
2002-07-03 Wednesday 00:27 Thijmen Klok <[email protected]>
* ChangeLog (1.128): added last two days
2002-07-03 Wednesday 00:10 Thijmen Klok <[email protected]>
* include/id3/field.h (1.47), include/id3/frame.h (1.42),
include/id3/globals.h (1.48), include/id3/helpers.h (1.9),
include/id3/io_decorators.h (1.5), include/id3/reader.h (1.13),
include/id3/utils.h (1.22), include/id3/writer.h (1.8),
include/id3/writers.h (1.11), include/id3.h (1.19),
src/c_wrapper.cpp (1.19), src/field.cpp (1.45),
src/field_binary.cpp (1.26), src/field_def.h (1.2),
src/field_integer.cpp (1.21), src/field_string_ascii.cpp (1.28),
src/field_string_unicode.cpp (1.32), src/frame_def.h (1.2),
src/frame_impl.cpp (1.9), src/frame_parse.cpp (1.33),
src/frame_render.cpp (1.24), src/globals.cpp (1.6), src/header.h
(1.2), src/header_frame.cpp (1.22), src/header_tag.cpp (1.23),
src/helpers.cpp (1.11), src/io_decorators.cpp (1.4),
src/io_helpers.cpp (1.13), src/misc_support.cpp (1.36),
src/readers.cpp (1.7), src/spec.h (1.2), src/tag.cpp (1.47),
src/tag_file.cpp (1.38), src/tag_find.cpp (1.27), src/tag_impl.cpp
(1.9), src/tag_impl.h (1.3), src/tag_parse.cpp (1.40),
src/tag_parse_lyrics3.cpp (1.31), src/tag_parse_musicmatch.cpp
(1.19), src/tag_parse_v1.cpp (1.22), src/tag_render.cpp (1.43):
cleaned header includes
2002-07-03 Wednesday 00:04 Thijmen Klok <[email protected]>
* src/utils.cpp (1.26): Added safeguard for failed iconv calls
2002-07-02 Tuesday 14:22 Thijmen Klok <[email protected]>
* src/utils.cpp (1.25): added prevention of going to unnecesary
code when empty
2002-07-01 Monday 16:44 Thijmen Klok <[email protected]>
* ChangeLog (1.127): added last two days
2002-07-01 Monday 16:03 Thijmen Klok <[email protected]>
* src/utils.cpp (1.24): Fix for iconv
2002-07-01 Monday 15:20 Thijmen Klok <[email protected]>
* examples/get_local_codeset.c (1.1): added for unicode debugging
2002-07-01 Monday 14:24 Thijmen Klok <[email protected]>
* examples/win-xp.mp3 (1.1): added for issue 547255
2002-07-01 Monday 02:13 Thijmen Klok <[email protected]>
* aclocal.m4 (1.17), m4/id3_unicode.m4 (1.2): Fix for iconv
2002-06-30 Sunday 19:37 Thijmen Klok <[email protected]>
* include/id3/globals.h (1.47): removed unnessesary defines which
gave warnings one some compilers
2002-06-30 Sunday 18:24 Thijmen Klok <[email protected]>
* configure.in (1.59), config.h.in (1.23, rel-3-7-9, rel-3-7-13),
configure (1.71), config.h.win32.in (1.11), config.h.win32 (1.18),
macconfig.h (1.6): Fix for iconv
2002-06-29 Saturday 22:49 Thijmen Klok <[email protected]>
* ChangeLog (1.126): added past few days
2002-06-29 Saturday 22:45 Thijmen Klok <[email protected]>
* macconfig.h (1.5): Added Define for NetBSD and MacOS X
2002-06-29 Saturday 22:24 Thijmen Klok <[email protected]>
* configure.in (1.58), configure (1.70): Fixed horribly wrong file
2002-06-29 Saturday 21:48 Thijmen Klok <[email protected]>
* config.h.win32 (1.16), config.h.win32.in (1.10, rel-3-7-13),
config.h.win32 (1.17), config.h.in (1.22), configure.in (1.57),
configure (1.69), src/frame_impl.h (1.3): change for new define
HAVE_BITSET for NetBSD and MacOS X
2002-06-29 Saturday 21:16 Thijmen Klok <[email protected]>
* include/id3/id3lib_bitset (1.1): Added for NetBSD and MacOs X
2002-06-29 Saturday 19:35 Thijmen Klok <[email protected]>
* src/field_integer.cpp (1.20), src/frame.cpp (1.34),
src/frame_parse.cpp (1.32), src/frame_render.cpp (1.23),
src/globals.cpp (1.5), src/header.cpp (1.10), src/header_frame.cpp
(1.21), src/header_tag.cpp (1.22), src/io.cpp (1.2),
src/io_decorators.cpp (1.3), src/io_helpers.cpp (1.12),
src/readers.cpp (1.6), src/tag.cpp (1.46), src/tag_file.cpp (1.37),
src/tag_parse.cpp (1.39), src/tag_parse_lyrics3.cpp (1.30),
src/tag_parse_musicmatch.cpp (1.18), src/tag_parse_v1.cpp (1.21),
src/tag_render.cpp (1.42), src/utils.cpp (1.23),
src/writer_decorators.cpp (1.2), src/writers.cpp (1.2),
include/id3/field.h (1.46), include/id3/frame.h (1.41),
include/id3/globals.h (1.46), include/id3/helpers.h (1.8),
include/id3/id3lib_strings.h (1.2), include/id3/io_decorators.h
(1.4), include/id3/io_helpers.h (1.7), include/id3/io_strings.h
(1.6), include/id3/misc_support.h (1.27), include/id3/reader.h
(1.12), include/id3/readers.h (1.12), include/id3/tag.h (1.55),
include/id3/utils.h (1.21), include/id3/writer.h (1.7),
include/id3/writers.h (1.10): added trailing newline to prevent
compiler warning
2002-06-29 Saturday 19:18 Thijmen Klok <[email protected]>
* examples/: demo_tag.cpp (1.15), demo_info.cpp (1.30),
demo_copy.cpp (1.11), findeng.cpp (1.6), findstr.cpp (1.6),
get_pic.cpp (1.8), test_compression.cpp (1.9), test_io.cpp (1.5),
test_pic.cpp (1.10), test_remove.cpp (1.12), test_unicode.cpp
(1.8): added trailing linefeed
2002-06-29 Saturday 19:11 Thijmen Klok <[email protected]>
* src/utils.cpp (1.22): quickfixed compiling on Solaris regarding
iconv, still looking into a more elegant solution
2002-06-29 Saturday 16:43 Thijmen Klok <[email protected]>
* src/field_string_unicode.cpp (1.31): fixes compile on some
solarises + fix for unicode typo
2002-06-29 Saturday 16:41 Thijmen Klok <[email protected]>
* include/dami/lyr3.h (1.3), include/dami/lyr3_impl.h (1.3),
include/id3.h (1.18), include/id3/field.h (1.45),
include/id3/frame.h (1.40), include/id3/helpers.h (1.7),
include/id3/tag.h (1.54), src/c_wrapper.cpp (1.18, rel-3-7-9),
src/field.cpp (1.44), src/field_impl.h (1.4),
src/field_string_ascii.cpp (1.27), src/frame.cpp (1.33),
src/helpers.cpp (1.10), src/io_helpers.cpp (1.11), src/tag.cpp
(1.45), src/utils.cpp (1.21), include/id3/globals.h (1.45): fixes
compile on some solarises
2002-06-28 Friday 14:36 Thijmen Klok <[email protected]>
* src/tag.cpp (1.44): corrected type in comment
2002-06-28 Friday 13:59 Thijmen Klok <[email protected]>
* zlib/: include/deflate.h (1.4), include/infblock.h (1.4),
include/infcodes.h (1.4), include/inffast.h (1.4),
include/inftrees.h (1.4), include/infutil.h (1.4), include/zconf.h
(1.5, rel-3-7-13, rel-3-7-12), include/zlib.h (1.5),
include/zutil.h (1.5), src/adler32.c (1.4, rel-3-7-12, rel-3-7-11,
rel-3-7-10, rel-3-7-9), src/compress.c (1.4), src/crc32.c (1.4),
src/deflate.c (1.4), src/gzio.c (1.5), src/infblock.c (1.4),
src/infcodes.c (1.4), src/inffast.c (1.4), src/inflate.c (1.4),
src/inftrees.c (1.4), src/infutil.c (1.4), src/trees.c (1.4),
src/uncompr.c (1.4), src/zutil.c (1.5): removed carriage return
2002-06-28 Friday 10:32 Thijmen Klok <[email protected]>
* libtool (1.14): hardly any changes
2002-06-28 Friday 10:29 Thijmen Klok <[email protected]>
* ChangeLog (1.125): Added the changes since i started working on
this
2002-06-28 Friday 10:26 Thijmen Klok <[email protected]>
* configure.in (1.56), configure (1.68): added url for missing
headers
2002-06-27 Thursday 15:02 Thijmen Klok <[email protected]>
* examples/demo_copy.cpp (1.10): corrected a typo
2002-06-27 Thursday 14:51 Thijmen Klok <[email protected]>
* include/id3/strings.h (1.5): replaced by id3lib_strings.h for
compile on NetBSD
2002-06-27 Thursday 14:41 Thijmen Klok <[email protected]>
* configure (1.67), src/io_helpers.cpp (1.10), libtool (1.13),
src/misc_support.cpp (1.35), src/utils.cpp (1.20), src/tag_file.cpp
(1.36), examples/demo_info.cpp (1.29), configure.in (1.55),
examples/demo_convert.cpp (1.15), include/id3/writers.h (1.9),
include/id3/readers.h (1.11), examples/test_unicode.cpp (1.7),
examples/findeng.cpp (1.5), examples/demo_tag.cpp (1.14),
examples/demo_main.cpp (1.3), examples/test_compression.cpp (1.8),
examples/get_pic.cpp (1.7), examples/findstr.cpp (1.5),
examples/test_pic.cpp (1.9), examples/test_remove.cpp (1.11),
src/tag.cpp (1.43), include/id3/utils.h (1.20),
include/id3/io_strings.h (1.5), include/id3/io_decorators.h (1.3),
include/id3/helpers.h (1.6), src/field_impl.h (1.3), src/tag_impl.h
(1.2), include/dami/v1.h (1.2), include/dami/mm.h (1.2),
include/dami/lyr3_impl.h (1.2), include/dami/lyr3.h (1.2),
include/id3/io_helpers.h (1.6), prj/id3lib.dsp (1.14),
libprj/id3lib.dsp (1.13), include/id3/Makefile.in (1.54),
include/id3/Makefile.am (1.19), examples/demo_copy.cpp (1.9): Fix
for compile with gcc 3.x, and compile on NetBSD and alpha
2002-06-27 Thursday 14:00 Thijmen Klok <[email protected]>
* include/id3/id3lib_strings.h (1.1): Added as fix for compile
errors on NetBSD
2002-06-27 Thursday 13:59 Thijmen Klok <[email protected]>
* include/id3/id3lib_streams.h (1.1): Added as fix for gcc 3.x
compile errors
2002-06-27 Thursday 13:50 Thijmen Klok <[email protected]>
* THANKS (1.17): added thanx for email alias
2002-06-27 Thursday 13:48 Thijmen Klok <[email protected]>
* AUTHORS (1.11, rel-3-7-9, rel-3-7-8, rel-3-7-7): Changing email,
added an 'old' entry
2002-06-27 Thursday 12:09 Thijmen Klok <[email protected]>
* config.h.in (1.21): fixes a bug in autoconf, checking for
booleans in gcc while g++ is used for compiling
2002-06-27 Thursday 12:05 Thijmen Klok <[email protected]>
* prj/win32.readme.first.txt (1.1), libprj/win32.readme.first.txt
(1.1): Added as clarification on directories
2002-06-27 Thursday 11:55 Thijmen Klok <[email protected]>
* id3com/: Sample/frmID3Test.frm (1.8), Sample/ID3Test.vbp (1.8),
Sample/ID3Test.vbw (1.9), dlldata.c (1.6), EnumFields.cpp (1.7),
EnumFields.h (1.7), id3com.cpp (1.9), ID3COM.def (1.6), id3com.dsp
(1.17), id3com.dsw (1.7), id3com.idl (1.12), ID3COMps.def (1.6),
ID3COMps.mk (1.6), ID3COM.rc (1.7), ID3Field.cpp (1.8), ID3Field.h
(1.10), ID3Field.rgs (1.7), ID3Frame.cpp (1.11), ID3Frame.h (1.10),
ID3Frame.rgs (1.7), ID3Tag.cpp (1.13), ID3Tag.h (1.10), ID3Tag.rgs
(1.7), Makefile.am (1.8), resource.h (1.7), StdAfx.cpp (1.8),
StdAfx.h (1.8), win32.readme.first.txt (1.1): Re-Added as service
2002-06-21 Friday 00:18 Thijmen Klok <[email protected]>
* configure (1.66), zlib/configure (1.3): updated from autoconf
1.53a
2002-06-20 Thursday 04:02 Thijmen Klok <[email protected]>
* zlib/: include/deflate.h (1.3), include/infblock.h (1.3),
include/infcodes.h (1.3), include/inffast.h (1.3),
include/inftrees.h (1.3), include/infutil.h (1.3), include/zconf.h
(1.4), include/zlib.h (1.4), include/zutil.h (1.4), src/adler32.c
(1.3), src/compress.c (1.3), src/crc32.c (1.3), src/deflate.c
(1.3), src/gzio.c (1.4), src/infblock.c (1.3), src/infcodes.c
(1.3), src/inffast.c (1.3), src/inflate.c (1.3), src/inftrees.c
(1.3), src/infutil.c (1.3), src/trees.c (1.3), src/uncompr.c (1.3),
src/zutil.c (1.4): updated to zlib version 1.1.4
2002-06-19 Wednesday 20:21 Thijmen Klok <[email protected]>
* THANKS (1.16): Added Simon Ferrett for the id3lib.org domain
"link"
2002-06-19 Wednesday 19:59 Thijmen Klok <[email protected]>
* config.sub (1.2), config.guess (1.2): update from
ftp://ftp.gnu.org/pub/gnu/config/ timestamp 2002-05-28
2002-06-19 Wednesday 17:45 Thijmen Klok <[email protected]>
* AUTHORS (1.10): added t1mpy as author
2002-03-20 Wednesday 11:32 slackorama
* include/id3/misc_support.h (1.26, rel-3-7-10): This is the other
half of the commit for adding text based genres.
2002-03-20 Wednesday 11:32 slackorama
* src/misc_support.cpp (1.34): Added a method for adding text based
genres.
2002-03-03 Sunday 21:04 slackorama
* src/tag_file.cpp (1.35): This should fix a long standing bug on
UNIX systems. When a temp file is created in tag_file.cpp it always
used 0600 permissions. Now, when that file is moved over the file
being edited, the permissions will be restored to the original.
2002-02-19 Tuesday 02:54 slackorama
* src/io_helpers.cpp (1.9): changed line 306 in
io::writeTrailingSpaces() (io_helpers.cpp) from writer.writeChar('
'); to writer.writeChar('\0');
This pads id3v1 tags will null characters instead of spaces.
2002-01-22 Tuesday 22:06 slackorama
* src/: tag_parse_v1.cpp (1.20), tag_render.cpp (1.41): I added
Florian Heidenreich's fixes for the computation of padding size in
tag_render.cpp ID3_TagImpl::PaddingSize() and made change to
tag_parse_v1.cpp so that it doesn't return an undefined value for
the track number when parsing a file with just an id3v1.0 tag (and
no v2 or v1.1). || was changed to && on line 115.
2001-12-18 Tuesday 10:12 shadrack
* depcomp (1.1), src/.cvsignore (1.15), zlib/.cvsignore (1.7): Add
depcomp file needed for configure script
2001-12-18 Tuesday 09:57 shadrack
* libtool (1.12), src/tag_render.cpp (1.40), zlib/config.h (1.2),
zlib/libtool (1.3): Applied Florian Heidenreich's padding fix
2001-12-17 Monday 18:40 shadrack
* zlib/prj/: zlib.dsp (1.6), zlib.dsw (1.3), zlib.mak (1.3):
Switched EOL conventions to DOS in zlib VC++ project files
2001-12-17 Monday 18:34 shadrack
* reconf (1.4): More build tool updates
2001-12-17 Monday 18:24 shadrack
* libprj/Makefile.in (1.1), prj/Makefile.in (1.1): Makefile
templates for Visual C++ build directories
2001-12-17 Monday 18:20 shadrack
* Makefile.am (1.27), Makefile.in (1.57), aclocal.m4 (1.16),
config.h.in (1.20), configure (1.65), configure.in (1.54),
id3lib.spec.in (1.26), ltmain.sh (1.2), missing (1.2),
doc/Makefile.in (1.16), examples/Makefile.in (1.21),
include/Makefile.in (1.11), include/id3/Makefile.in (1.53),
libprj/Makefile.am (1.4), m4/Makefile.in (1.16), src/Makefile.in
(1.54), zlib/Makefile.in (1.3), zlib/aclocal.m4 (1.2),
zlib/config.h.in (1.2), zlib/configure (1.2), zlib/configure.in
(1.2), zlib/include/Makefile.in (1.3, rel-3-7-13, rel-3-7-12,
rel-3-7-11, rel-3-7-10, rel-3-7-9, rel-3-7-8, rel-3-7-7),
zlib/lib/Makefile.in (1.3, rel-3-7-13, rel-3-7-12, rel-3-7-11,
rel-3-7-10, rel-3-7-9, rel-3-7-8, rel-3-7-7), zlib/prj/Makefile.in
(1.3, rel-3-7-9, rel-3-7-8, rel-3-7-7), zlib/src/Makefile.in (1.6):
Updated build files for current versions of automake and the like.
2001-12-16 Sunday 12:44 shadrack
* config.h.in (1.19), config.h.win32 (1.15), config.win32 (1.8),
configure (1.64), configure.in (1.53), macconfig.h (1.4, rel-3-7-8,
rel-3-7-7), src/tag_parse_v1.cpp (1.19): V1 parsing fix
2001-12-16 Sunday 12:11 shadrack
* config.h.win32 (1.14), config.win32 (1.7), configure (1.63),
macconfig.h (1.3), makefile.win32 (1.2), makewin32.bat (1.2):
Cosmetic fixups to reflect 2001-12-16 snapshot
2001-12-16 Sunday 11:32 shadrack
* makefile.win32 (1.1), makewin32.bat (1.1): Added Win32
command-line build files
2001-12-16 Sunday 10:56 shadrack
* src/tag_render.cpp (1.39): Applied fixes for bug 469112
2001-12-16 Sunday 10:40 shadrack
* src/tag_file.cpp (1.34): Fixed overwrite bug in tag_file.cpp
2001-12-16 Sunday 10:25 shadrack
* src/tag.cpp (1.42): Applied fix from bug #232172 (overflow crash
under Win32)
2001-12-16 Sunday 10:10 shadrack
* src/tag_file.cpp (1.33): Daniel Hazelbaker's patch to fix ID3V1
appending when only ID3V2 tag was read
2001-12-16 Sunday 09:46 shadrack
* libprj/id3lib.dsp (1.12), libprj/id3lib.dsw (1.7), prj/id3lib.dsp
(1.13), prj/id3lib.dsw (1.6): Fixed Visual C++ Workspace files
2001-11-05 Monday 10:55 shadrack
* include/id3/helpers.h (1.5), src/helpers.cpp (1.9),
src/misc_support.cpp (1.33), src/tag_parse_v1.cpp (1.18): Applied
Scott Wheeler's version priority bug fix
2001-09-09 Sunday 01:53 shadrack
* AUTHORS (1.9), ChangeLog (1.124), Makefile.in (1.56), NEWS
(1.26), config.h.win32 (1.13), config.win32 (1.6), configure
(1.62), configure.in (1.52, rel-3-7-4), id3lib.spec.in (1.25),
macconfig.h (1.2), src/field.cpp (1.43): Bumped version up to
3.8.0pre2 for release
2001-09-08 Saturday 23:33 shadrack
* src/field.cpp (1.42): Implemented Matt Mueller's FrameInfo fixes
2001-09-08 Saturday 23:19 shadrack
* include/id3/io_strings.h (1.4), src/io_helpers.cpp (1.8): Back
out Mac port typecasts for compatibility reasons
2001-09-08 Saturday 04:33 shadrack
* include/id3.h (1.17), src/c_wrapper.cpp (1.17), src/tag.cpp
(1.41): Added ID3Tag_LinkWithFlags() function export
2001-08-27 Monday 01:33 dmazzoni
* src/field_binary.cpp (1.25), libprj/id3lib.mcp (1.1),
src/io_helpers.cpp (1.7), include/id3/io_strings.h (1.3),
macconfig.h (1.1), src/readers.cpp (1.5), include/id3/readers.h
(1.10), src/tag_file.cpp (1.32), src/tag_parse_musicmatch.cpp
(1.17), src/utils.cpp (1.19), include/id3/writers.h (1.8),
zlib/prj/zlib.mcp (1.1): Ported to MacOS and added Mac project
files (id3lib.mcp and zlib.mcp).
2001-08-07 Tuesday 13:58 shadrack
* Makefile.in (1.55, rel-3-7-5), doc/Makefile.in (1.15),
examples/Makefile.in (1.20), include/Makefile.in (1.10),
include/id3.h (1.16), include/id3/Makefile.in (1.52),
include/id3/field.h (1.44), include/id3/globals.h (1.44),
m4/Makefile.in (1.15), src/Makefile.in (1.53), src/field.cpp
(1.41), src/field_impl.h (1.2), src/tag.cpp (1.40): Added FrameInfo
class
2001-08-05 Sunday 23:21 abscess
* src/tag_parse_lyrics3.cpp (1.29): album parsing typo fix
(courtesy of J.P. Bergamin)
2001-08-05 Sunday 23:18 abscess
* src/frame_parse.cpp (1.31): zero-length frame fix (courtesy of
J.P. Bergamin)
2001-08-05 Sunday 23:16 abscess
* examples/demo_simple.c (1.4): displays artist and album
2001-08-04 Saturday 02:05 thefrogprince
* src/tag.cpp (1.39): Minor documentation fixes
2001-07-30 Monday 20:22 abscess
* include/id3/field.h (1.43), include/id3/frame.h (1.39),
include/id3/globals.h (1.43), include/id3/helpers.h (1.4),
include/id3/io_decorators.h (1.2), include/id3/io_helpers.h (1.5),
include/id3/io_strings.h (1.2), include/id3/misc_support.h (1.25),
include/id3/reader.h (1.11), include/id3/readers.h (1.9),
include/id3/tag.h (1.53), include/id3/utils.h (1.19),
include/id3/writer.h (1.6), include/id3/writers.h (1.7),
src/misc_support.cpp (1.32): applied changes made to repository
while stored temporarily on millweed.com
2001-07-25 Wednesday 05:50 thefrogprince
* src/tag.cpp (1.38): Fix ID3_Tag::HasTagType() bug
2001-07-24 Tuesday 10:12 thefrogprince
* libtool (1.11), examples/demo_convert.cpp (1.14),
examples/demo_copy.cpp (1.8), examples/demo_copy_options.c (1.5),
examples/demo_copy_options.h (1.2), examples/demo_info_options.c
(1.5), examples/demo_info_options.h (1.2), src/utils.cpp (1.18),
zlib/libtool (1.2): Fix compiler errors
2000-11-20 Monday 10:17 eldamitri
* src/utils.cpp (1.17): Minor namespace bugfix
2000-11-20 Monday 10:06 eldamitri
* NEWS (1.25), id3lib.spec.in (1.24): Updated for new release
2000-11-20 Monday 09:30 eldamitri
* id3com/: .cvsignore (1.6), BSTRCollection.h (1.2, rel-3-7-9,
rel-3-7-8, rel-3-7-7), EnumFields.cpp (1.6), EnumFields.h (1.6),
ID3COM.def (1.5), ID3COM.rc (1.6), ID3COMps.def (1.5), ID3COMps.mk
(1.5), ID3Field.cpp (1.7), ID3Field.h (1.9), ID3Field.rgs (1.6),
ID3Frame.cpp (1.10), ID3Frame.h (1.9), ID3Frame.rgs (1.6),
ID3Tag.cpp (1.12), ID3Tag.h (1.9), ID3Tag.rgs (1.6), Makefile.am
(1.7), MimeTypes.cpp (1.2), MimeTypes.h (1.2), StdAfx.cpp (1.7),
StdAfx.h (1.7), TextCollection.cpp (1.2), TextCollection.h (1.2),
TextCollection.rgs (1.2), dlldata.c (1.5), frmID3Test.frm (1.5),
id3com.cpp (1.8), id3com.dsp (1.16), id3com.dsw (1.6), id3com.idl
(1.11), mssccprj.scc (1.5), resource.h (1.6), vssver.scc (1.2),
Sample/.cvsignore (1.2), Sample/ID3Test.vbp (1.7),
Sample/ID3Test.vbw (1.8), Sample/MSSCCPRJ.SCC (1.5),
Sample/frmID3Test.frm (1.7): Now has its own project at sourceforge
2000-11-20 Monday 09:19 eldamitri
* doc/Doxyfile.in (1.7): Updated list of input files
2000-11-20 Monday 09:18 eldamitri
* src/tag.cpp (1.37): Updated tutorial docs
2000-11-07 Tuesday 10:44 eldamitri
* examples/: demo_convert_options.ggo (1.2), demo_copy_options.ggo
(1.2), demo_info_options.ggo (1.2), demo_tag_options.ggo (1.2):
Rely on automake's VERSION macro for assigning apps' version
2000-11-07 Tuesday 10:40 eldamitri
* examples/: Makefile.am (1.20), Makefile.in (1.19): Removed rule
for generating ggo file