-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
2582 lines (1466 loc) · 58.8 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
2009-04-07 22:45 jcaratzas
* configure.ac: updated library release version to 1.3.2
2009-04-02 21:27 jcaratzas
* THANKS, AUTHORS: added two patch authors
2009-03-01 22:38 jcaratzas
* Makefile.am, cddb_conn.h, cddb_ni.h: fixed MinGW and non-libc builds
2006-10-15 14:11 airborne
* lib/Makefile.am: library version info bumped to 4:3:2
2006-10-15 14:09 airborne
* NEWS: added 1.3.0 news
2006-10-15 13:55 airborne
* lib/cddb_track.c: use RETURN_STR_OR_EMPTY whenever a string is
returned, do no return disc artist for track if
CDDB_F_NO_TRACK_ARTIST is set
2006-10-15 13:53 airborne
* lib/: cddb_conn.c, cddb_disc.c: use RETURN_STR_OR_EMPTY whenever
a string is returned
2006-10-15 13:51 airborne
* lib/cddb.c: added libcddb_flags, libcddb_set_flags and
libcddb_reset_flags functions
2006-10-15 13:50 airborne
* include/cddb/cddb_ni.h: added libcddb_flags function and
RETURN_STR_OR_EMPTY macro
2006-10-15 13:48 airborne
* include/cddb/cddb.h: added cddb_flag_t enum, libcddb_set_flags
and libcddb_reset_flags functions
2006-10-15 12:10 airborne
* lib/cddb_cmd.c: added debug trace to cddb_album_next
2006-10-15 12:08 airborne
* tests/check_server.sh: added test for album command, disabled
text search test (no longer supported on server)
2006-10-15 12:07 airborne
* tests/settings.sh.in: fix query result check
2006-10-15 11:09 airborne
* configure.ac: version bumped to 1.3.0
2006-10-15 11:04 airborne
* examples/do_album.c: initial version
2006-10-15 11:03 airborne
* lib/cddb_cmd.c: added cddb_album and cddb_album_next functions
2006-10-15 10:59 airborne
* include/cddb/cddb_ni.h: added STR_OR_EMPTY macro
2006-10-15 10:59 airborne
* include/cddb/cddb_cmd_ni.h: added CMD_ALBUM
2006-10-15 10:58 airborne
* include/cddb/cddb_cmd.h: added cddb_album and cddb_album_next
functions
2006-10-15 10:57 airborne
* examples/main.c: added support for the album command
2006-10-15 10:54 airborne
* examples/main.h: added do_album function
2006-10-15 10:53 airborne
* examples/Makefile.am: added do_album.c
2006-10-15 08:53 airborne
* lib/cddb_cmd.c: fix extended data processing
2006-10-15 08:52 airborne
* lib/cddb_util.c: fix compiler warnings
2006-10-15 08:51 airborne
* include/cddb/cddb_track.h: fix indent
2006-10-15 08:50 airborne
* examples/do_display.c: handle empty strings in output
2006-09-29 18:03 airborne
* ChangeLog: [no log message]
2006-09-29 18:02 airborne
* lib/Makefile.am: library version info bumped to 3:2:1
2006-09-29 18:01 airborne
* examples/cd_access.c: updated includes for libcdio
2006-09-29 18:00 airborne
* configure.ac: version bumped to 1.2.1 libcdio required version
bumped to 0.76
2006-09-29 17:38 airborne
* ChangeLog: [no log message]
2006-09-29 17:36 airborne
* NEWS: added 1.2.2 news
2006-09-29 17:34 airborne
* lib/cddb_cmd.c: bugfix: correctly specify character set on
submission
2005-08-04 20:57 airborne
* ChangeLog: [no log message]
2005-08-04 20:56 airborne
* NEWS: added 1.2.1 news
2005-08-04 20:55 airborne
* lib/Makefile.am: library version info bumped to 3:1:1
2005-08-04 20:48 airborne
* configure.ac: version bumped to 1.2.1
2005-08-04 20:44 airborne
* lib/cddb_cmd.c: changed default text search grouping to per
category (iso none)
2005-08-03 20:35 airborne
* lib/cddb_cmd.c: use text search parameters provided by user
2005-08-03 20:28 airborne
* lib/cddb_conn.c: added functions to set text search parameters,
initialize default parameters at creation of connection
2005-08-03 20:27 airborne
* include/cddb/cddb_conn_ni.h: added text search parameter
structure
2005-08-03 20:25 airborne
* include/cddb/cddb_conn.h: added functions and constants for
setting text search parameters
2005-07-31 13:25 airborne
* configure.ac: remove -O0 in maintainer mode so that uninitialized
variables are reported
2005-07-31 13:08 airborne
* lib/cddb_cmd.c: fix uninitialized variable (return value)
2005-07-23 12:28 airborne
* configure.ac: use bzip2 for distribution archive
2005-07-23 11:54 airborne
* ChangeLog, NEWS: added 1.2.0 changes
2005-07-23 11:51 airborne
* lib/Makefile.am: updated library version
2005-07-23 11:44 airborne
* tests/settings.sh.in: removed obsolete QUERY_HASH parameter
2005-07-23 11:43 airborne
* tests/check_server.sh: removed obsolete QUERY_HASH parameter,
added text search test
2005-07-23 11:42 airborne
* examples/main.c: free global strings
2005-07-23 11:41 airborne
* configure.ac: version bumped to 1.2.0, added gettext version
(iconv dependency)
2005-07-23 11:40 airborne
* bootstrap: added autopoint (config.rpath fix, iconv/gettext
dependency)
2005-07-23 11:39 airborne
* .cvsignore: added files generated by autopoint
2005-07-23 11:35 airborne
* tests/testdata/: 56c2171b89496518.txt, b2bba00e1890d659.txt: no
longer used in query tests
2005-07-23 09:23 airborne
* lib/cddb_regex.c: free site regex data
2005-07-23 09:22 airborne
* lib/cddb_cmd.c: clone proxy settings in search command
2005-07-23 09:21 airborne
* lib/cddb_conn.c: added function to clone proxy parameters from
one connection to another
2005-07-23 09:20 airborne
* include/cddb/cddb_conn_ni.h: added prototype for proxy parameter
cloning function
2005-07-23 09:19 airborne
* examples/main.h: do_search now needs disc structure parameter
2005-07-23 09:17 airborne
* examples/main.c: disc now created outside of do_search function
2005-07-23 09:10 airborne
* examples/do_search.c: disc structure provided by caller
2005-07-23 09:09 airborne
* TODO: [no log message]
2005-07-17 12:03 airborne
* doc/freedb.howto.txt: Howto from freedb.org v1.07 (2004/01/08)
2005-07-17 12:01 airborne
* examples/do_search.c: initial version
2005-07-17 11:59 airborne
* misc/libcddb.ebuild: removed libcdio dependency (to avoid
circular dependency problems)
2005-07-17 11:58 airborne
* lib/cddb_regex.c: added text search results regex, added hex
number parser
2005-07-17 11:56 airborne
* lib/cddb_cmd.c: added implementation of new search functionality
(first version, clean-up still necessary)
2005-07-17 11:53 airborne
* lib/cddb.c: added search connection initialization code
2005-07-17 11:51 airborne
* include/cddb/cddb_regex.h: added function prototype to extract
hex number, added external declaration for text search results
regex
2005-07-17 11:48 airborne
* include/cddb/cddb_ni.h: added external reference for search
connection
2005-07-17 11:47 airborne
* include/cddb/cddb_cmd_ni.h: typedefed command enumeration, added
search command constant
2005-07-17 11:46 airborne
* include/cddb/cddb_cmd.h: added search command prototypes, cleaned
up some docs
2005-07-17 11:44 airborne
* examples/main.c: added code for new search functionality
2005-07-17 11:43 airborne
* examples/main.h: added do_search function prototype
2005-07-17 11:42 airborne
* examples/do_query.c: fixed typo in comment
2005-07-17 11:41 airborne
* examples/Makefile.am: added do_search.c file
2005-07-17 11:39 airborne
* configure.ac: version bumped to 1.2.0-cvs
2005-07-09 12:53 airborne
* include/cddb/cddb_cmd.h: updated sites command doc
2005-07-09 11:32 airborne
* doc/doxygen.conf: excluded some header files
2005-07-09 11:08 airborne
* ChangeLog: added 1.1.0 changes
2005-07-09 11:07 airborne
* NEWS: addede 1.1.0 changes
2005-07-09 10:45 airborne
* configure.ac: updated LIBCDDB_VERSION_NUM version to 110
2005-07-09 10:35 airborne
* lib/: cddb_track.c, cddb_disc.c, cddb_conn.c: added function
implementations for previously #defined functions
2005-07-09 10:34 airborne
* include/cddb/cddb_conn_ni.h: moved actual defintion of connection
structure to this file
2005-07-09 10:33 airborne
* include/cddb/cddb_ni.h: moved definitions of track and disc
structures to this file
2005-07-09 10:32 airborne
* include/cddb/cddb_disc.h: moved actual definition of cddb_disc_t
structure to cddb_ni.h converted #defined functions to regular
functions
2005-07-09 10:31 airborne
* include/cddb/cddb_track.h: moved actual definition of
cddb_track_t structure to cddb_ni.h converted #defined functions
to regular functions
2005-07-09 10:29 airborne
* include/cddb/cddb_conn.h: converted cache mode to enumerated type
actual definition of connection structure moved to cddb_conn_ni.h
converted #defined functions into regular functions
2005-07-09 10:25 airborne
* examples/do_display.c: added const keyword for strings returned
by library
2005-07-09 10:20 airborne
* examples/cd_access.c: use LBA instead of LSN
2005-07-09 10:18 airborne
* configure.ac: bump version to 1.1.0
2005-06-15 18:22 airborne
* TODO: removed sites command to do
2005-06-15 18:21 airborne
* examples/main.c: removed obsolete comment
2005-06-15 18:21 airborne
* examples/do_sites.c: a lot more documentation
2005-06-15 18:19 airborne
* include/cddb/cddb_ni.h: added site iconv function, updated ASSERT
macros
2005-06-15 18:18 airborne
* include/cddb/cddb_conn.h: added site setter, some const keyowrds
2005-06-15 18:15 airborne
* lib/cddb_conn.c: added site setter, some const keywords
2005-06-15 18:13 airborne
* lib/cddb_cmd.c: iconv support for sites
2005-06-15 18:12 airborne
* lib/cddb_site.c: added const keyword where appropriate, added
iconv function
2005-06-15 18:08 airborne
* include/cddb/cddb_site.h: added const keywords where appropriate,
fixed some docs
2005-05-30 21:36 airborne
* include/cddb/cddb_ni.h: added range assert macro
2005-05-30 21:35 airborne
* lib/cddb_site.c: added setters and the submit path
2005-05-30 21:34 airborne
* include/cddb/cddb_site.h: added setters and the HTTP submit path
2005-05-29 10:24 airborne
* examples/do_sites.c, include/cddb/cddb_site.h, include/cddb/ll.h,
lib/cddb_site.c, lib/ll.c: initial revision
2005-05-29 10:22 airborne
* examples/Makefile.am: extra source do_sites.c
2005-05-29 10:21 airborne
* examples/main.h: sites command integration
2005-05-29 10:21 airborne
* examples/main.c: added code for sites command
2005-05-29 10:20 airborne
* lib/cddb_regex.c: sites command regular expression function to
retrieve floating point match code clean-up
2005-05-29 10:19 airborne
* lib/cddb_error.c: new error code for invalid input parameters
2005-05-29 10:18 airborne
* lib/cddb_disc.c: comment clean-up
2005-05-29 10:16 airborne
* lib/: cddb_cmd.c, cddb_conn.c: sites command integration query
result now uses linked list
2005-05-29 10:12 airborne
* include/cddb/cddb_regex.h: added sites command regex added
function to retrieve floating point match
2005-05-29 10:11 airborne
* include/cddb/cddb_ni.h: added ASSERT macros
2005-05-29 10:11 airborne
* include/cddb/cddb_error.h: added error code to signal invalid
input parameters
2005-05-29 10:09 airborne
* include/cddb/cddb_conn.h: sites command integration query results
now use the generic linked list structure
2005-05-29 10:08 airborne
* include/cddb/cddb_cmd_ni.h: sites command integration query
results now use linked list (removed clear function)
2005-05-29 10:06 airborne
* include/cddb/: cddb.h, cddb_cmd.h: sites command integration
2005-05-29 10:03 airborne
* include/cddb/Makefile.am: sites command integration
2005-05-29 09:59 airborne
* lib/Makefile.am: sites command integration, library version
bumped (new interface)
2005-05-29 09:54 airborne
* configure.ac: version bumped to 1.1.0-cvs
2005-05-07 11:59 airborne
* THANKS: [no log message]
2005-05-07 11:54 airborne
* lib/Makefile.am: library implementation version incremented
2005-05-07 11:42 airborne
* ChangeLog: added 1.0.2 changes
2005-05-07 11:41 airborne
* NEWS: added changes between 1.0.1 and 1.0.2
2005-05-07 11:37 airborne
* misc/libcddb.ebuild: sync with latest ebuild in portage
2005-05-07 11:36 airborne
* TODO: [no log message]
2005-05-07 11:35 airborne
* INSTALL: added entry about running 'ldconfig' after 'make
install'
2005-05-07 11:34 airborne
* configure.ac: version bumped to 1.0.2
2005-05-07 11:33 airborne
* lib/cddb_cmd.c: - return error on proxy authentication failure -
bugfix in frame offset parsing
2005-05-07 11:20 airborne
* include/cddb/cddb_error.h, lib/cddb_error.c: added error code for
failed proxy authentication
2005-05-07 11:18 airborne
* lib/cddb_conn.c: added new function
cddb_set_http_proxy_credentials
2005-05-07 11:16 airborne
* include/cddb/cddb_conn.h: add new function
cddb_set_http_proxy_credentials
2005-05-07 11:13 airborne
* examples/main.c: use new cddb_set_http_proxy_credentials function
2005-04-22 23:48 airborne
* NEWS: added changes between 1.0.0 and 1.0.1
2005-04-22 23:45 airborne
* ChangeLog: added 1.0.1 changes
2005-04-22 23:44 airborne
* include/cddb/cddb_regex.h: extra include for MacOS X compilation
2005-04-22 23:43 airborne
* include/cddb/cddb_ni.h, lib/cddb_util.c: iconv compiler warning
fix
2005-04-22 23:42 airborne
* examples/cd_access.c: updated cdio message to reflect possible
use of --without-cdio option
2005-04-22 23:41 airborne
* configure.ac: version bumped to 1.0.1, added --without-cdio
option
2005-04-22 23:40 airborne
* THANKS: more and updated thanks
2005-04-22 23:40 airborne
* .cvsignore: added build directory
2005-04-17 00:04 rockyb
* lib/Makefile.am: cygwin library building needs LIBICONV
2005-04-16 23:49 rockyb
* lib/.cvsignore: A couple more .lo files.
2005-04-16 22:12 airborne
* NEWS: added changes between 0.9.5 and 1.0.0
2005-04-16 22:08 airborne
* ChangeLog: added 1.0.0 changes
2005-04-16 22:05 airborne
* TODO: [no log message]
2005-04-16 22:04 airborne
* lib/cddb_cmd.c: added proxy authentication
2005-04-16 22:03 airborne
* lib/cddb_conn.c: added proxy auth getters and setters
2005-04-16 22:02 airborne
* lib/cddb_util.c: added base64 encoder
2005-04-16 21:59 airborne
* include/cddb/cddb_ni.h: added base64 decoder prototype
2005-04-16 21:55 airborne
* include/cddb/cddb_conn.h: added proxy user name and password
getters/setters
2005-04-16 21:54 airborne
* examples/main.c: added proxy auth support
2005-04-16 21:53 airborne
* configure.ac: version bumped to 1.0.0
2005-04-16 11:17 rockyb
* include/cddb/.cvsignore: version.h is a derived file.
2005-04-16 11:15 rockyb
* libcddb.pc.in: Another missing reference to libiconv
2005-04-16 05:31 rockyb
* configure.ac, examples/Makefile.am: GNU/Linux includes libiconv
in its main libraries. Solaris (and probably many other OSes)
don't. Add automake check to see if libiconv is needed.
2005-04-08 03:55 rockyb
* examples/cd_access.c: CdIo -> CdIo_t
2005-04-08 03:49 rockyb
* include/cddb/: Makefile.am, version.h.in: Add a way to test from
inside an application what version of libcddb is getting used.
For this C Preprocessor variable LIBCDDB_VERSION_NUM was added.
Also added a string which applications can use to give a more
descriptive output of the version of libcddb in use.
2005-04-08 03:45 rockyb
* configure.ac, include/cddb/cddb.h: Add a way to test from inside
an application what version of libcddb is getting used. For this
C Preprocessor variable LIBCDDB_VERSION_NUM was added.
Also added a string which applications can use to give a more
descriptive output of the version of libcddb in use.
2005-03-11 22:33 airborne
* doc/doxygen.conf: auto-update for newer Doxygen version
2005-03-11 22:32 airborne
* include/cddb/cddb_conn.h: doc update
2005-03-11 22:29 airborne
* examples/cd_access.c, examples/do_display.c, examples/do_query.c,
examples/do_read.c, examples/main.c, examples/main.h,
include/cddb/cddb_cmd.h, include/cddb/cddb_cmd_ni.h,
include/cddb/cddb_config.h.in, include/cddb/cddb_conn.h,
include/cddb/cddb_conn_ni.h, include/cddb/cddb_disc.h,
include/cddb/cddb_error.h, include/cddb/cddb_log.h,
include/cddb/cddb_log_ni.h, include/cddb/cddb_net.h,
include/cddb/cddb_ni.h, include/cddb/cddb_track.h,
lib/cddb_cmd.c, lib/cddb_disc.c, lib/cddb_error.c,
lib/cddb_log.c, lib/cddb_net.c, lib/cddb_track.c,
lib/cddb_util.c: copyright extension into 2005
2005-03-11 22:25 airborne
* configure.ac: version bumped to 1.0.0-cvs
2005-03-11 22:24 airborne
* THANKS: [no log message]
2005-03-11 22:20 airborne
* examples/main.c: shutdown library before terminating
2005-03-11 22:19 airborne
* lib/cddb_regex.c: initialization flag moved to cddb.c,
re-indented the code
2005-03-11 22:17 airborne
* lib/cddb_conn.c: regex initialization now done in library init
function, no automatic destruction
2005-03-11 22:14 airborne
* lib/Makefile.am: added cddb.c
2005-03-11 22:13 airborne
* include/cddb/cddb.h: added library init and shutdown routines
2005-03-11 22:11 airborne
* lib/cddb.c: initial version
2005-02-04 22:10 rockyb
* include/cddb/cddb_regex.h, lib/cddb_conn.c, lib/cddb_regex.c:
Plug memory leaks - wasn't freeing regex data.
2004-10-16 16:52 airborne
* ChangeLog: added 0.9.6 changes
2004-10-16 16:51 airborne
* NEWS: added changes between 0.9.5 and 0.9.6
2004-10-16 15:53 airborne
* lib/cddb_util.c: conversion fails if out of memory
2004-10-16 10:09 airborne
* lib/Makefile.am: incremented library revision number
2004-10-16 10:02 airborne
* configure.ac: added extra substitution, used in unit tests
(settings.sh.in)
2004-10-16 10:00 airborne
* tests/settings.sh.in: added iconv support
2004-10-16 10:00 airborne
* tests/Makefile.am: added charset test script
2004-10-16 09:58 airborne
* include/cddb/cddb_error.h, lib/cddb_error.c: moved line size
error back to its original location in enum (to stay backwards
compatible)
2004-10-16 09:56 airborne
* tests/: testdata/12340000.ISO8859-1.txt,
testdata/12340000.UTF8.txt, check_charset.sh,
testcache/misc/12340000: initial revision
2004-10-16 08:32 airborne
* lib/cddb_cmd.c: added character set conversion support for query
command
2004-10-15 21:43 airborne
* lib/cddb_conn.c: [bugfix] make sure to alloc enough memory (thank
you Valgrind) [bugfix] fix memory leak (thank you Valgrind)
2004-10-15 21:42 airborne
* include/cddb/cddb_conn_ni.h: [cosmetic] removed white space
2004-10-15 21:23 airborne
* configure.ac: tab removal don't check for iconv_open (header file
should be enough)
2004-10-15 21:21 airborne
* lib/cddb_conn.c: use new character set conversion structure
2004-10-15 21:07 airborne
* lib/cddb_util.c: added conditional compile for character set
conversion
2004-10-15 21:05 airborne
* lib/cddb_cmd.c: added character set conversion when writing CDDB
record [bugfix] make sure category is saved when genre is empty
string [bugfix] when writing prevent network access when
CACHE_ONLY is set
2004-10-15 21:01 airborne
* lib/cddb_disc.c: conversion descriptor is parameter now
conditional compile (HAVE_ICONV_H) is no longer necessary here
2004-10-15 20:59 airborne
* lib/cddb_track.c: conversion descriptor is parameter now
conditional compile (HAVE_ICONV_H) no longer necessary here
2004-10-15 20:55 airborne
* include/cddb/cddb_ni.h: define dummy iconv_t type if no iconv.h
header is included
2004-10-15 20:54 airborne
* include/cddb/cddb_conn_ni.h: iconv_t now always exists (see
cddb_ni.h)
2004-10-15 20:47 airborne
* lib/cddb_regex.c: even more robust disc length parsing regex
2004-10-15 20:46 airborne
* include/cddb/cddb_ni.h: include iconv header conversion funtions
now get iconv structure instead of cddb connection structure
2004-10-15 20:41 airborne
* include/cddb/cddb_conn_ni.h: add structure for character set
conversion
2004-10-15 20:40 airborne
* include/cddb/cddb_conn.h: avoid inclusion of optinal iconv.h in
installed header file use custom opaque structure instead
2004-10-09 08:14 airborne
* lib/cddb_conn.c: free iconv structures
2004-10-08 23:18 airborne
* misc/libcddb.ebuild: sync with portage tree version
2004-10-08 23:15 airborne
* configure.ac: removed deprecated --enable-debug option, added
checks for iconv support, added check for realloc function,
updated maintainer CFLAGS (strdup caused problems with previous
set)
2004-10-08 23:13 airborne
* lib/cddb_util.c: initial version
2004-10-08 23:12 airborne
* lib/Makefile.am: added cddb_util.c file
2004-10-08 23:12 airborne
* lib/cddb_cmd.c: convert strings to user character set after
parsing disc record
2004-10-08 23:09 airborne
* lib/: cddb_disc.c, cddb_track.c: added character set conversion
function
2004-10-08 23:08 airborne
* lib/cddb_conn.c: added character set conversion fields and
function
2004-10-08 23:05 airborne
* examples/main.c: added option for defining character set on
command line
2004-10-08 23:03 airborne
* include/cddb/cddb_ni.h: added prototypes for private character
set conversion functions, incremented protocol version to 6
2004-10-08 23:01 airborne
* include/cddb/cddb_conn.h: added character set conversion fields
and fucntion
2004-10-08 22:59 airborne
* include/cddb/cddb_error.h, lib/cddb_error.c: added character set
conversion errors
2004-10-08 21:55 airborne
* lib/cddb_regex.c: [bugfix] FreeDB changed their spec, the string
" seconds" on disc length line is no longer mandatory
2004-07-24 07:41 airborne
* configure.ac: version bumped to 0.9.6
2004-07-24 07:41 airborne
* misc/libcddb.ebuild: updated libcdio requirement
2004-07-21 18:21 airborne
* ChangeLog: added 0.9.5 changes
2004-07-21 18:19 airborne
* NEWS: added changes between 0.9.4 and 0.9.5
2004-07-21 18:17 airborne
* lib/cddb_net.c: updated functions to use cddb_conn_t struct as
parameter
2004-07-21 18:16 airborne
* lib/cddb_error.c: updated message for CDDB_ERR_BUFFER_SIZE
2004-07-21 18:15 airborne
* lib/cddb_conn.c: add setter for buffer size updated buffer
allocation
2004-07-21 18:14 airborne
* lib/cddb_cmd.c: buffer size now field in connection context
updated parameters for changed API of network functions
2004-07-21 18:12 airborne
* include/cddb/cddb_conn.h: added buffer size variable to
connection context updated docs
2004-07-21 18:11 airborne
* include/cddb/cddb_net.h: most functions now receive a cddb_conn_t
structure
2004-07-21 18:09 airborne
* include/cddb/cddb_ni.h: inserted constant DEFAULT_BUF_SIZE
(previously in cddb_cmd.h as LINE_SIZE)
2004-07-21 18:08 airborne
* include/cddb/cddb_cmd.h: moved LINE_SIZE constant to cdb_ni.h
(renamed to DEFAULT_BUF_SIZE)