forked from gphoto/libgphoto2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
6681 lines (4514 loc) · 216 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
2010-07-10 Dan Fandrich <dan@coneharvesters.com>
* Fixed some C89 portability issues.
* Eliminated some compiler warnings, fixing a couple of small
bugs in the process.
2010-03-12 Hans de Goede <hdegoede@redhat.com>
* camlibs/st2205: New camera driver for ST2205 based picture frames.
* libgphoto2_port/usbdiskdirect: USB Disk direct acccess driver
(for ST2205 based picture frames.)
* New dependency for "libgd" for image conversion for above driver.
* configure.ac, camlibs/Makefile.am: hooked up new camlib, new gd check.
2010-03-06 Marcus Meissner <marcus@jet.franken.de>
* gphoto2/gphoto2-context.h, libgphoto2/gphoto2-context.c:
Make context functions not use varargs anymore to pass
strings out to frontends. The backends still pass in varargs
strings.
This will ease binding implementations.
2009-12-13 Marcus Meissner <marcus@jet.franken.de>
* gphoto2/gphoto2-widget.h, libgphoto2/gphoto2-widget.c:
added set_ and get_ readonly for Widgets.
2009-07-30 Dan Fandrich <dan@coneharvesters.com>
* Fixed a bunch of C89 and SUS portability issues.
2009-04-13 Marcus Meissner <marcus@jet.franken.de>
* gphoto2-filesys.c: Disabled LRU caching.
* gp_file_new_from_handler(): Allow passing data in and out via
handler functions (to allow streaming).
* CameraFileInfoFile: removed "name" structmember and
GP_FILE_INFO_NAME flags. Use direct passing in of the filename
to the API functions.
* New: gp_camera_autodetect(CameraList *list, GPContext*);
Simple autodetection function returning all current detected cameras.
* (TODO: not yet New: gp_camera_open (Camera *camera, const char *name, const char *port, GPContext *context);
Simple open function without needing to involve libgphoto2_port.
)
* gp_file_set_name() and _get_name() passing in is no longer
needed and the API will go away.
* New gp_file_get_name_by_type() will convert a regular filename
("normal") into one depending on type (e.g. "raw_" prefix) and
adjusted suffix (like ".ppm" turning into ".pgm" for grayscale
previews).
* gp_file_set_type() and gp_file_get_type() are gone, these
functions are now implicit passed via arguments to the the
put_file and set_file_noop() functions.
* gp_filesystem_set_info_noop(), gp_filesystem_set_file_noop(),
gp_filesystem_put_file(), gp_camera_folder_put_file():
Added "filename" argument to pass in the filename. The one
from CameraFileInfoFile and CameraFile are no longer used.
Added "type" argument to pass in the filetype (GP_FILE_TYPE_*).
* Adjusted to new GPPortInfo handling.
* Rewrote gphoto2-filesys.c to be directory based (in a tree
structure). Change should not be visibile outside of gphoto2-filesys.c.
2008-05-18 Marcus Meissner <marcus@jet.franken.de>
* libgphoto2/gphoto2-filesys.c: Do not try to extract EXIF data
if the file is too large. This avoids memory allocating for
file descriptor based downloads.
2008-05-06 Hubert Figuiere <hub@figuiere.net>
* camlibs/ptp2/library.c: Added Nikon P5100
2008-04-20 Theodore Kilgore <kilgota@auburn.edu>
* libgphoto2/bayer.h: gp_ahd_interpolate() and gp_ahd_decode() added.
* libgphoto2/ahd_bayer.c: added.
* libgphoto2/Makefile.am: ahd_bayer.c hooked up.
* libgphoto2/libgphoto2.sym: gp_ahd_decode and gp_ahd_interpolate listed.
2008-03-31 Marcus Meissner <meissner@suse.de>
* libgphoto2/gphoto2-abilities-list.c: Use qsort() instead
of bubble sort. Saves 0.4 seconds on a 2Ghz machine.
Found by Szigeti Janos.
2008-02-26 Marcus Meissner <meissner@suse.de>
* packaging/generic/print-camera-list.c:
HAL's "info.bus" is been called "info.subsystem" now.
2007-10-21 Marcus Meissner <marcus@jet.franken.de>
* gphoto2/gphoto2-filesys.h: Change long
to uint64_t, int to uint32_t to fix the struct
sizes to a better known value (mostly for C#).
Include <stdint.h>, a ISO C99 feature.
This changes the "CameraFileInfo" and "CameraStorageInformation"
struct sizes on all platforms.
2007-10-16 Marcus Meissner <marcus@jet.franken.de>
* libgphoto2/gphoto2-list.c: Removed artificial limit
on entries in CameraList (now dynamic) and also
the artificial limit on name/value (now dynamic).
This is source code compatible, but not ABI compatible.
Bumped SO version to 6 (with libtool increment rules).
2007-07-25 Hubert Figuiere <hub@figuiere.net>
* camlibs/ptp2/library.c: Added Kodak Z712 IS
2007-06-21 Hubert Figuiere <hub@figuiere.net>
* camlibs/ptp2/library.c: Added Canon A560
2007-05-28 Hubert Figuiere <hub@figuiere.net>
* camlibs/ptp2/library.c: Added Nikon Coolpix L10.
2007-05-27 Hubert Figuiere <hub@figuiere.net>
* camlibs/ptp2/library.c: Added Canon A570 IS.
2007-05-05 Hubert Figuiere <hub@figuiere.net>
* camlibs/ptp2/library.c: Added FujiFilm F40 fd
http://gphoto.org/bugs/?id=1713438
2007-04-08 Hubert Figuiere <hub@figuiere.net>
* camlibs/directory/directory.c: added more RAW types.
Should fix bug #1696551
http://gphoto.org/bugs/?id=1696551
2007-03-01 Marcus Meissner <marcus@jet.franken.de>
Theodore Kilgore <kilgota@banach.math.auburn.edu>
* libgphoto2/bayer.{c,h}: Enhanced bayer algorithm.
2007-01-31 Hubert Figuiere <hub@figuiere.net>
* camlibs/ptp2/library.c: added Coolpix P4.
added Kodak P880
2007-01-21 Marcus Meissner <marcus@jet.franken.de>
* libgphoto2/gphoto2-filesys.c:
Bugfixes for LRU double linked list handling.
2007-01-03 Hubert Figuiere <hub@figuiere.net>
* libgphoto2_port/disk/disk.c (gp_port_library_list): handle
automounter properly when there is no HAL.
* camlibs/directory/directory.c (file_list_func): ignore entries
that start with '.'
(folder_list_func): ignore entries that start with '.'
Some code style cleaning.
2006-11-25 Hubert Figuiere <hub@figuiere.net>
* libgphoto2_port/configure.ac: bump soname for libgphoto2_port
post 2.3.0 branch
* configure.ac: 2.3.0.1.trunk because we branched 2.3.0
2006-10-14 Hubert Figuiere <hub@figuiere.net>
* camlibs/panasonic/l859/l859.c,
camlibs/enigma13/enigma13.c (enigma13_get_toc),
camlibs/panasonic/l859/README.panasonic-l859,
camlibs/panasonic/dc.h: Fixed typo
https://launchpad.net/distros/ubuntu/+source/libgphoto2/+bug/61163
2006-10-07 Hubert Figuiere <hub@figuiere.net>
* camlibs/canon/canon.c, camlibs/konica/qm150.c,
camlibs/ptp2/ptp.c, camlibs/sierra/library.c,
camlibs/sierra/sierra-desc.c, doc/camlib_devel.lyx,
libgphoto2/gphoto2-abilities-list.c: s/occured/occurred/
From Launchpad bug 61163:
https://launchpad.net/distros/ubuntu/+source/libgphoto2/+bug/61163
2006-09-19 Hubert Figuiere <hub@figuiere.net>
* camlibs/ptp2/config.c: More typo.
* camlibs/gsmart300/library.c (delete_file_func): Fixed typo
* camlibs/ptp2/ptp.h (PTP_DPC_NIKON_WhiteBalanceFluorescentBias):
Change typo in the const name
* camlibs/stv0680/bayer.c (light_enhance),
camlibs/minolta/dimagev/dimagev.c,
camlibs/konica/qm150.c (camera_manual),
camlibs/spca50x/library.c (delete_file_func),
camlibs/canon/usb.c (canon_usb_camera_init),
camlibs/sierra/olympus-desc.c,
camlibs/ptp2/ptp.c (ptp_get_property_description),
libgphoto2/gphoto2-camera.c (gp_camera_init),
camlibs/ptp2/library.c (camera_canon_capture): Fix typos
https://launchpad.net/products/libgphoto/+bug/61163
2006-06-07 Hubert Figuiere <hub@figuiere.net>
* AUTHORS: added credits for 5D capture support.
2006-04-18 Hubert Figuiere <hub@figuiere.net>
* configure.in: 2.2.0trunk version
2006-03-21 Marcus Meissner <marcus@jet.franken.de>
* libgphoto2/gphoto2-camera.[ch]:
Added gp_camera_wait_for_event() API, to wait for
specific camera events and return them to the caller.
See camlibs/ptp2/library.c for an example usage.
Contributed by Edward Flick <eddy@cdf-imaging.com>.
2006-01-27 Theodore Kilgore <kilgota@auburn.edu>
* camlibs/clicksmart310/*: Supports Logitech Clicksmart 310.
* configure.in: camlibs/clicksmart310 hooked up.
* AUTHORS: author of camlibs/clicksmart310 added.
* MAINTAINERS: maintainer of camlibs/clicksmart310 added.
2006-01-04 Hubert Figuiere <hub@figuiere.net>
* configure.in: bump the .so version
2005-12-26 Hubert Figuiere <hub@figuiere.net>
* CHANGES: updated for 2.1.99
2005-12-25 Hubert Figuiere <hub@figuiere.net>
* configure.in: Version 2.1.99 (pre-release)
2005-12-06 Theodore Kilgore <kilgota@auburn.edu>
* camlibs/digigr8/*: New camera library for 0x2770:0x905c cameras.
* configure.in: camlibs/digigr8 hooked up.
* AUTHORS: author of camlibs/digigr8 added.
* MAINTAINERS: maintainer of camlibs/digigr8 added.
2005-08-31 Hubert Figuiere <hfiguiere@teaser.fr>
* bindings/csharp: C# binding from f-spot 0.1.1
2005-08-30 Hubert Figuiere <hfiguiere@teaser.fr>
* bindings/java: Java bindings from patch# 1108091
http://sf.net/tracker/?func=detail&aid=1108091&group_id=8874&atid=308874
* bindings/python: Python binding from patch# 1152835
http://sf.net/tracker/?func=detail&aid=1152835&group_id=8874&atid=308874
2005-08-25 Marcus Meissner <marcus@jet.franken.de>
* libgphoto2/gphoto2-filesys.c
Got rid of most LRU heuristics, simplified to just store
the last <n> full datastreams.
This should be fully sufficient for 99.9% of all usecases
(download images lineary).
You can control this by the setting "libgphoto2" , "cached-images".
2005-08-14 Marcus Meissner <marcus@jet.franken.de>
* camlibs/directory.c, libgphoto2_port/disk,
libgphoto2/gphoto2-abilities-list.c:
Added support for mounted digitalcameras (USB
mass storage based).
Port type is:
disk:/full/path/
Camera driver is:
"Directory Browse"
2005-06-27 Hubert Figuiere <hfiguiere@teaser.fr>
* po/ru.po: Update ru.po
2005-06-11 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: new version 2.1.99.head.0
* camlibs/**/Makefile.am: link camlibs as libtool modules with
shorter names and explicit symbol list
* libgphoto2/Makefile.am: link libgphoto2 with explicit symbol list
2005-06-08 Theodore Kilgore <kilgota@auburn.edu>
* libgphoto2_port/: added functions to support new request types
* camlibs/sonix: initial hookup
* configure.in: hooked up camlibs/sonix
2005-05-13 Marcus Meissner <marcus@jet.franken.de>
* po/eu.po: new baskish from Hizkuntza Politikarako Sailburuordetza <hizkpol@ej-gv.es>
2005-04-14 Hans Ulrich Niedermann <gp@n-dimensional.de>
* */configure.in, */Makefile.am, ...: updated build system.
See "./autogen.sh --help" and ./configure --help" for help.
2005-04-05 Hubert Figuiere <hfiguiere@teaser.fr>
* camlibs/ptp: removing obsolete camlib.
2005-03-30 Hans Ulrich Niedermann <gp@n-dimensional.de>
* libgphoto2/gphoto2-file.c: replace stricmp() by strcasecmp()
#include <gphoto2-port-portability.h> should take care of
portability of strcasecmp()
2005-02-07 Marcus Meissner <marcus@jet.franken.de>
* libgphoto2/gphoto2-filesys.c:
Use the minimum of the 3 exif timestamps (time, capture time,
digitized time). This fixes use on the Traveller SX330Z as
reported.
2005-01-18 Marcus Meisser <marcus@jet.franken.de>
* po/ru.po: Update thanks to Vyacheslav Dikonov <sdiconov@mail.ru>
2005-01-17 Colin Marquardt <colin@marquardt-home.de>
* po/ja.po: Update thanks to Takeshi AIHANA.
2004-12-15 Hubert Figuiere <hfiguiere@teaser.fr>
* configure.in: 2.1.5
2004-11-26 Hubert Figuiere <hfiguiere@teaser.fr>
* configure.in: 2.1.5rc1
2004-11-26 Theodore Kilgore <kilgota@auburn.edu>
* camlibs/iclick/*: New camera driver written by T. K. and
Stephen Pollei <stephen_pollei@comcast.net>.
* configure.in: camlibs/iclick hooked up.
* AUTHORS: authors of camlibs/iclick added.
* MAINTAINERS: listed T. K. as the (current) maintainer.
2004-11-18 Lutz Mueller <lutz@users.sourceforge.net>
* camlibs/kodak/Makefile.am: Hook up the new ez200-driver.
2004-11-18 Lutz Mueller <lutz@users.sourceforge.net>
* camlibs/kodak/ez200/*: New camera driver written by
Edo <edo.bvdcorp@free.fr>. Slightly modified to remove some
warnings.
* configure.in: Hook it up.
2004-11-17 Hubert Figuiere <hfiguiere@teaser.fr>
* configure.in
* camlibs/toshiba: Revert deletion of driver pdrm11
2004-11-17 Lutz Mueller <lutz@users.sourceforge.net>
* configure.in
* camlibs/toshiba: Removed on request of Sean Bruno
<sean.bruno@dsl-only.net> (camera is supported by sierra driver).
2004-10-28 Hubert Figuiere <hfiguiere@teaser.fr>
* libgphoto2/gphoto2-context.h: Fix build for gcc 2.95
(bug #1055868)
2004-10-18 Hubert Figuiere <hfiguiere@teaser.fr>
* TESTERS: add myself as tester for Canon 20D
2004-08-23 Marcus Meissner <marcus@jet.franken.de>
* libgphoto/gphoto-result.h: Add gcc attributes
to specify format strings, so the compiler can warn
about misuse.
* libgphoto2/gphoto2-filesys.c: Fixed 2 problems with
format strings / arguments.
* libgphoto2/gphoto2-result.h: Translate libgphoto errors.
2004-08-02 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: Removed Toshiba PDR-M65 driver
* camlibs/toshiba/pdrm65/: Removed Toshiba PDR-M65 driver.
PDR-M65 uses the Sierra protocol.
2004-07-14 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: Added camlibs/toshiba/pdrm65/Makefile
* camlibs/toshiba/pdrm11/Makefile.am: Renamed current PDR-M11
camlib "toshiba" to "toshiba_pdrm11"
* camlibs/toshiba/pdrm65/: Added files for PDR-M65 driver.
The PDR-M65 driver is developed by Sean Bruno.
2004-05-29 Theodore Kilgore <kilgota@auburn.edu>
* MAINTAINERS: added myself as maintainer of aox, mars, sq905 camlibs.
2004-05-29 Theodore Kilgore <kilgota@auburn.edu>
* AUTHORS: added myself as author of aox, mars, sq905 camlibs.
2004-05-13 Raymond Penners <raymond@dotsphinx.com>
* camlibs/sonydscf55: Merged in Sony DSC-F55 patches from Alberto
Garlassi: added support for downloading MPEG files, and fixed
thumbnail downloading.
2004-05-01 Theodore Kilgore <kilgota@auburn.edu>
* configure.in: Hook up camlibs/mars
2004-04-08 Raymond Penners <raymond@dotsphinx.com>
* camlibs/sonydscf55: Merged in patch from Alberto Garlassi:
serial communication fixes on fast CPUs, and the native file names
are now used (instead of using the hardcoded "dsc%05d.jpg").
2004-01-06 Marcus Meissner <marcus@jet.franken.de>
* Multiple USB camera support.
2003-11-19 Theodore Kilgore <kilgota@auburn.edu>
* configure.in: Hook up camlibs/aox (driver by Theodore Kilgore).
2003-11-16 Patrick Mansfield <patmans@users.sourceforge.net>
* libgphoto2 gphoto2-camera.c, gphoto2-result.c, gphoto2-result.h:
Return GP_ERROR_CAMERA_BUSY if a command or I/O is in progress.
2003-08-27 Christophe Barbe <christophe@ufies.org>
* libgphoto2/gphoto2-filesys.c: Return the max when unable to know
the available memory instead of failing to build.
2003-06-26 Lutz Mueller <lutz@users.sourceforge.net>
* configure.in: Hook up camlibs/sq905 (driver by Theodore Kilgore
<kilgota@banach.math.auburn.edu).
2003-06-22 Christophe Barbe <christophe@ufies.org>
* gphoto2/main.c, po/*.po:
s/gphoto-devel@gphoto.org/gphoto-devel@lists.sourceforge.net/
2003-05-26 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.1.2rc1, with CVS tag
* libgphoto2/gphoto2-ability-list.c: replace colon by space
2003-05-17 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.1.2dev9, with CVS tags
* configure.in: 2.1.2dev10, without CVS tags, for development
2003-05-12 Marcus Meissner <marcus@jet.franken.de>
* configure.in: disabled gsmart, benq, spca504_flash camlibs
(now replaced by spca50x camlib).
Handle camlibs with - in the name by replacing it with _.
2003-05-12 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.1.2dev8
2003-05-12 Marcus Meissner <meissner@suse.de>
* configure.in: added agfa-cl20 driver (from cl20.poeml.de).
* CHANGES: adapted.
* AUTHORS: added agfa-cl20 authors.
2003-05-05 Marcus Meissner <marcus@jet.franken.de>
* configure.in: removed ptp driver (now replaced by ptp2)
* MAINTAINERS: ptp -> ptp2
2003-02-26 Hubert Figuiere <hfiguiere@teaser.fr>
* configure.in: added toshiba/pdrm11 to build
* MAINTAINERS: added toshiba/pdrm11 maintainer
2003-02-21 Hans Ulrich Niedermann <gp@n-dimensional.de>
* doc/Makefile.am: renamed man pages
* doc/gphoto2.3,doc/gphoto2_port.3: removed
* doc/libgphoto2.3,doc/libgphoto2_port.3: added
2003-02-01 Patrick Mansfield <patmans@users.sourceforge.net>
* TESTERS: Added Valentin Rusu as a tester for the Epson PhotoPC 850z
2002-12-03 Marcus Meissner <marcus@jet.franken.de>
* Imported stv0674 camlib from Vincent Sanders <vince@kyllikki.org>.
2002-11-21 Patrick Mansfield <patmans@users.sourceforge.net>
* libgphoto2/gphoto2-camera.c: Allow a NULL for the path to be
passed to the camera capture.
2002-11-12 Lutz Mueller <lutz@users.sourceforge.net>
* libgphoto2/gphoto2-version.c: Use HAVE_CC only if defined.
2002-11-10 Lutz Müller <lutz@users.sourceforge.net>
* libgphoto2/gphoto2-widget.[c,h] (gp_widget_set_value): Make the
argument const.
2002-11-08 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.1.1dev10, increased AGE to 3
* libgphoto2/gphoto2-version.[ch]: added
* libgphoto2/Makefile.am: added gphoto2-version.[ch]
2002-11-06 Hans Ulrich Niedermann <gp@n-dimensional.de>
* camlibs/*/Makefile.am:
* libgphoto2/Makefile.am:
* libgphoto2/libgphoto2.pc.in:
* configure.in: made camlibdir settable by cmdline option
2002-11-01 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.1.1dev9
2002-10-17 Hans Ulrich Niedermann <gp@n-dimensional.de>
* libgphoto2/gphoto2-abilities-list.c: removed the fscking "can't load *.la" message
* libgphoto2_port/m4/documentation.m4: removed unnecessary stuff (xmlto, fig2dev, etc.)
* configure.in: 2.1.1dev8
2002-10-13 Hans Ulrich Niedermann <gp@n-dimensional.de>
* *.am, libgphoto2_port/m4/packaging.m4, libgphoto2_port/m4/packaging.m4: moved definition of docdir from Makefile.am to m4 macros
* configure.in: 2.1.1dev7
2002-10-03 Lutz Müller <lutz@users.sourceforge.net>
* libgphoto2/gphoto2-abilities-list.[c,h] (gp_abilities_list_reset):
New.
* configure.in: Reflect above changes in VERSION.
2002-09-28 Marcus Meissner <marcus@jet.franken.de>
* Imported SiPix StyleCam Blink driver from
Vincent Sanders <vince@kyllikki.org>
2002-09-12 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.1.1dev6
2002-08-29 Lutz Müller <lutz@users.sourceforge.net>
* libgphoto2/gphoto2-filesys.c: Cosmetic changes. Made code consistent
to reflect the assumption that only GP_FILE_TYPE_[RAW,AUDIO,NORMAL]
contain a significant amount of data that needs to be removed from
cache.
2002-08-29 Lutz Müller <lutz@users.sourceforge.net>
* libgphoto2/gphoto-file.c (gp_file_get_data_and_size): If data or
size is NULL, ignore it.
2002-08-28 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.1.1dev5 (LRU cache, new drivers, etc.)
removed multiple intl/Makefile and po/Makefile
added by gettextize
2002-08-26 Hubert Figuiere <hfiguiere@teaser.fr>
* MAINTAINERS: Added Kodak DC210 maintainer.
2002-08-23 Hubert Figuiere <hfiguiere@teaser.fr>
* configure.in: added largan/lmini driver
* camlibs/largan/lmini: new driver for Largan Lmini
2002-08-22 Christophe Barbé <christophe.barbe@ufies.org>
* configure.in: test for /proc/meminfo (HAVE_PROCMEMINFO).
* libgphoto2/gphoto2-filesys.c: Use HAVE_PROCMEMINFO.
2002-08-22 Christophe Barbé <christophe.barbe@ufies.org>
* libgphoto2/gphoto2-filesys.c: Implemented code to free cached data when
we are going out of memory.
I still have to add a test in configure for the /proc filesystem.
2002-08-21 Vincent Weaver <vince@deater.net>
* camlibs/agfa/: Move camlibs/agfa to camlibs/soundvision
* camlibs/agfa/: Rename agfa files to new soundvision scheme
* camlibs/agfa/: Minor fixes for Tiger Fast Flicks support
2002-08-14 Christophe Barbé <christophe.barbe@ufies.org>
* libgphoto2/gphoto2-filesys.c: LRU implementation for the filesystem
cache.
2002-08-14 Peter Kajberg <pbk@odense.kollegienet.dk>
* MAINTAINERS: Add myself as camlibs/pccam600 maintainer.
* configure.in
* camlibs/pccam600: New driver for Creative PC-CAM600
2002-08-09 Till Adam <till@adam-lilienthal.de>
* MAINTAINERS: Add myself as camlibs/gsmart maintainer.
2002-08-08 Lutz Müller <lutz@users.sourceforge.net>
* configure.in: Create camlibs/gsmart/Makefile.
2002-08-08 Lutz Müller <lutz@users.sourceforge.net>
* configure.in
* camlibs/gsmart: New driver by Till Adam <till@adam-lilienthal.de>.
2002-08-01 Hubert Figuiere <hfiguiere@teaser.fr>
* libgphoto2/gphoto2-list.c (exchange): changed strcpy with memcpy
that prevents unterminated strings overflow.
2002-09-01 Lutz Müller <lutz@users.sourceforge.net>
* MAINTAINERS: Uli does the mailing lists.
2002-09-01 Lutz Müller <lutz@users.sourceforge.net>
* MAINTAINERS: Arnaud is now responsible for autogen.sh. Added
myself on top of Scott regarding libgphoto2(_port).
2002-07-30 Hans Ulrich Niedermann <gp@n-dimensional.de>
* autogen.sh: new package name: libgphoto2
* configure.in: 2.1.1dev3 -> 2.1.1dev4
2002-07-29 Lutz Müller <lutz@users.sourceforge.net>
* README: First attempt to separate gphoto2 from libgphoto2.
2002-07-28 Lutz Müller <lutz@users.sourceforge.net>
* configure.in: Detect new version of libexif (forgot to check
that in the last time).
* frontends: Removed. Now in the "gphoto2" module.
2002-07-27 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: new package name: libgphoto2
2002-07-25 Christophe Barbé <christophe.barbe@ufies.org>
po files from Stefan Bj|rnelund <stefanb@update.uu.se>
* po/sv.po: Update Swedish translation.
2002-07-25 Lutz Müller <lutz@users.sourceforge.net>
* configure.in: Detect new version of libexif.
* frontends/command-line/actions.c:
* libgphoto2/gphoto2-filesys.c: Adjust to new version of libexif
(if found).
2002-07-24 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.1.1dev3
* doc/gphoto2.xml: added reference to CSS stylesheet
* doc/docbook-xml.css: added CSS stylesheet for Docbook XML
2002-07-17 Lutz Müller <lutz@users.sourceforge.net>
* libgphoto2/libgphoto2.pc.in: Add driverdir variable.
2002-07-14 Hans Ulrich Niedermann <gp@n-dimensional.de>
* autogen.sh: explicitly delete autogenerated files and dirs not in CVS
* configure.in: 2.1.1dev2, fixed typo in message
2002-07-12 Lutz Müller <lutz@users.sourceforge.net>
* configure.in: Use ltdl if available.
2002-07-06 Patrick Mansfield <patman@aracnet.com>
* MAINTAINERS: Add myself to camlibs/sierra
2002-07-05 Lutz Müller <lutz@users.sourceforge.net>
* configure.in: Add camlibs/sx330z.
2002-06-27 Lutz Müller <lutz@users.sourceforge.net>
Patch from Arnaud Launay <asl@launay.org>:
* autogen.sh: Call libtoolize - newer automakes don't call it
automatically.
2002-06-27 Lutz Müller <lutz@users.sourceforge.net>
Patch from Arnaud Launay <asl@launay.org>:
* Makefile.am: /$(TAR)/tar/
2002-06-24 Christophe Barbé <christophe.barbe@ufies.org>
Patch for FreeBSD from Arnaud Launay <asl@launay.org>
* configure.in: Use -pthread instead of -lc_r, libtool 1.4.2a doesn't
like -lc_r (unlike plain 1.4.2).
2002-06-21 Christophe Barbé <christophe.barbe@ufies.org>
po files from Takeshi AIHANA <aihana@jcom.home.ne.jp>
* po/ja.po: Update Japan translation.
2002-06-20 Lutz Müller <lutz@users.sourceforge.net>
* ABOUT-NLS: Remove this file, it is generated by gettextize.
2002-06-19 Hubert Figuiere <hfiguiere@teaser.fr>
* camlibs/minolta/NEWER_MINOLTAS (UPDATE): updated the statement
about newer Minolta camera support.
2002-06-19 Christophe Barbé <christophe.barbe@ufies.org>
* Makefile.am: Added CHANGES in EXTRA_DIST.
2002-06-19 Lutz Müller <lutz@users.sourceforge.net>
* configure.in: Make the check for cdk.h search in $ac_default_prefix.
Make checks for libjpeg, libexif, libcdk, etc. consistent.
2002-06-19 Lutz Müller <lutz@users.sourceforge.net>
Suggestion from Hans Ulrich Niedermann <gp@n-dimensional.de>:
* autogen.sh: Remove the call to configure.
2002-06-19 Lutz Müller <lutz@users.sourceforge.net>
Suggestion from Arnaud Launay <asl@launay.org>:
* configure.in: Let users specify where to look for libjpeg
(--with-jpeg-prefix).
2002-06-18 Christophe Barbé <christophe.barbe@ufies.org>
po file from Fabian Mandelbaum <fabman@mandrakesoft.com>
* po/es.po: Spanish translation.
2002-06-18 Lutz Müller <lutz@users.sourceforge.net>
* configure.in: AC_PREREQ(2.50), because otherwise,
--enable-maintainer-mode will fail somehow.
2002-06-17 Lutz Müller <lutz@users.sourceforge.net>
Patch by Arnaud Launay <asl@launay.org>:
* doc/gphoto2.xml: Add missing '>'.
2002-06-17 Lutz Müller <lutz@users.sourceforge.net>
Marcus Meissner <meissner@suse.de> explained me how what
--enable-maintainer-mode is for:
* Makefile.am: Uncomment the automake and aclocal flags.
2002-06-17 Lutz Müller <lutz@users.sourceforge.net>
Patch by Arnaud Launay <asl@launay.org>, which corrects the
previous patch:
* Makefile.am: Correct the flags to tar.
2002-06-17 Lutz Müller <lutz@users.sourceforge.net>
Patch by Arnaud Launay <asl@launay.org>, slightly modified:
* Makefile.am: Get rid of the automake flags, use --bzip2 instead of
-j.
2002-06-17 Christophe Barbé <christophe.barbe@ufies.org>
Patch by Arnaud Launay <asl@launay.org>
* doc/Makefile.am : Don't try to move figures when fig2dev is not there.
2002-06-17 Christophe Barbé <christophe.barbe@ufies.org>
* Makefile.am: Removed autogen.sh from EXTRA_DIST.
2002-06-17 Christophe Barbé <christophe.barbe@ufies.org>
* configure.in: 2.1.0 branch created, main branch version 2.1.1dev1.
2002-06-17 Mariusz Woloszyn <emsi@ipartners.pl>
* doc/FAQ: Added "gphoto2 does not work..." general question
2002-06-15 Lutz Müller <lutz@users.sourceforge.net>
* configure.in: Fix readline error message.
2002-06-15 Christophe Barbé <christophe.barbe@ufies.org>
Patch by Arnaud Launay <asl@launay.org>
* autogen.sh: Copy po/Makevars.template to po/Makevars when necessary.
2002-06-14 Lutz Müller <lutz@users.sourceforge.net>
* libgphoto2/gphoto2-abilities-list.c: Cleanup the ltdl-specific
part.
2002-06-14 Lutz Müller <lutz@users.sourceforge.net>
Patch by Arnaud Launay <asl@launay.org>, slightly enhanced:
* autogen.sh: If gettext --version is something like 0.11.*,
add the --intl option to gettextize.
2002-06-14 Lutz Müller <lutz@users.sourceforge.net>
* libgphoto2/Makefile.am:
* configure.in: Fix (?) -version-info
2002-06-14 Lutz Müller <lutz@users.sourceforge.net>
* configure.in: Given the pending release, it is safer to disable
the use of the buggy libltdl.
2002-06-14 Lutz Müller <lutz@users.sourceforge.net>
Suggested by Arnaud Launay <asl@launay.org>, slightly modified:
* configure.in: Simplify check for readline.
2002-06-13 Hans Ulrich Niedermann <gp@n-dimensional.de>
* doc/figures/Makefile.am: don't build images we don't even use
* doc/Makefile.am:
- clean pdf and ps files if generated
- install pdf and ps manuals
- create figures before building manual
- made pdf and ps manual creation work when srcdir != builddir
- added symlink in manual/ to enable people to view manual in src tree
- use $(AMTAR) and install only the png and html files for the html manual
2002-06-13 Lutz Müller <lutz@users.sourceforge.net>
Patch by Arnaud Launay <asl@launay.org>, slightly corrected:
* configure.in: Fix check for readline.
2002-06-13 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.0.1dev13 (because of lots of build changes)
* doc/figures/Makefile.am: only install png images, but still build jpg and eps
* doc/Makefile.am: use $(XMLTO) instead of xmlto everywhere
2002-06-12 Christophe Barbé <christophe.barbe@ufies.org>
* doc/Makefile.am: no more figures link. install only png files for the
user manual.
2002-06-12 Lutz Müller <lutz@users.sourceforge.net>
* configure.in:
* libgphoto2/gphoto2-abilities-list.c: Make libgphoto2
use ltdl.h. I needed to introduce a global variable - code is
marked as UGLY_HACK. If you know how to fix it, please tell me.
2002-06-12 Lutz Müller <lutz@users.sourceforge.net>
* configure.in:
* libgphoto2/gphoto2-camera.c:
* libgphoto2/gphoto2-abilities-list.c: Fixes for HAVE_LTDL. Still
doesn't work.
2002-06-12 Christophe Barbé <christophe.barbe@ufies.org>
* libgphoto2_port/m4/documentation.m4: Added --with-doc-formats option and
removed xmlto tests to find the available formats.
* libgphoto2_port/configure.in: Duplicated tr hack from main configure.in.
2002-06-12 Lutz Müller <lutz@users.sourceforge.net>
* doc/FAQ: New entry.
2002-06-09 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.0.1dev11 (because of build changes)
2002-06-06 Lutz Müller <lutz@users.sourceforge.net>
* autogen.sh: No need for configuring the whole thing 3 times...
2002-06-06 Lutz Müller <lutz@users.sourceforge.net>
* autogen.sh: Fix the order of processing libgphoto2_port and .
2002-06-06 Lutz Müller <lutz@users.sourceforge.net>
* intl: Remove these files - they should be generated by gettextize.
* autogen.sh: Check for and run gettextize.
2002-06-06 Lutz Müller <lutz@users.sourceforge.net>
* INSTALL: Fix the aclocal command.
2002-06-06 Lutz Müller <lutz@users.sourceforge.net>
* acconfig.h: According to
http://www.gnu.org/manual/autoconf-2.53/html_mono/autoconf.html,
this file is obsolete.
* configure.in: Adapt to above.
2002-06-04 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.0.1dev10
* doc/gphoto2.xml: reformatted preparing for PDF
* doc/FAQ: added note about stv680 kernel driver
* INSTALL: autogen.sh works for me, also with older autotools than
Lutz mentioned, so I added note about that
2002-06-03 Lutz Müller <lutz@users.sourceforge.net>
* INSTALL: Add note about outdated autogen.sh.
2002-05-30 Hans Ulrich Niedermann <gp@n-dimensional.de>
* configure.in: 2.0.1dev9, as we have a manual now
* configure.in: added manual doc message, named API doc msg like
that, reformatted messages a little
* doc/Makefile.am: build manual only if possible,
clean manual only if building possible
* doc/gphoto2.xml:
- add "QuickStart" chapter
- improved existing setup chapter
- added first part of developer (API) documentation
- added chapter on ideas for the future
- added appendix with resources
2002-05-26 Hans Ulrich Niedermann <gp@n-dimensional.de>
* doc/gphoto2.xml: added gphoto2_port(3) man page
2002-05-26 Hans Ulrich Niedermann <gp@n-dimensional.de>
* doc/Makefile.am: only include rules if corresponding programs exist
2002-05-25 Hans Ulrich Niedermann <gp@n-dimensional.de>