forked from jichu4n/pilot-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
16057 lines (11418 loc) · 517 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-01-16 19:38 judd
* libpisock/calendar.c: Made code actually work with pi_buffer_t
parameters.
2010-01-16 19:37 judd
* tests/calendardb-test.c: Added code to test pack_CalendarAppInfo
2010-01-16 17:54 judd
* tests/calendardb-test.c: Changed to pass a pi_buffer_t into
unpack_CalendarAppInfo
2010-01-16 17:29 judd
* include/pi-calendar.h, libpisock/calendar.c: Changed
pack_CalendarAppInfo, and unpack_CalendarAppInfo to use
pi_buffer_t to match the APIs of the other applications.
2009-12-10 20:48 judd
* src/pilot-xfer.c: If a file is installed to VFS with the same
filename as an existing file the tail of the previous file is
still intact and at the end of the file. I added a
dlp_VFSFileResize call to truncate the file size to zero before
writing the new file.
2009-12-01 23:20 judd
* src/pilot-xfer.c: fixed minor signed/unsigned compiler warnings
2009-12-01 23:15 judd
* src/pilot-xfer.c: Fixed signed/unsigned comparisons that failed
with cards larger than 4G or so. The code would incorrectly
decide there wasn't enough free space to install.
2009-09-20 17:07 judd
* libpisock/calendar.c: location flag was not being used. Added
location flag and proper use of it.
2009-06-04 09:38 desrod
* src/pilot-schlep.c: Oops, stupid mistake. creat(2) is always the
last param. :)
(Coding-on-the-train)--
2009-06-04 09:32 desrod
* libpisock/os2serial.c, src/pilot-xfer.c, src/pilot-addresses.c,
src/pilot-foto-treo600.c, src/pilot-foto-treo650.c,
src/pilot-schlep.c, src/pilot-csd.c, src/pilot-getrom.c,
src/pilot-install-memo.c, src/pilot-read-todos.c: Cleaner O_CREAT
modes (done right!) Writing explicit numbers for file permissions
is bad practice. Not only is it not portable, it also requires
that everyone who reads your source to remember what the bits
mean.
2009-05-25 00:43 desrod
* ChangeLog: Pushing ChangeLog back upstream
2009-05-25 00:40 desrod
* include/Makefile.am, tests/Makefile.am: Last-minute fixes before
releasing 0.12.4
2009-05-25 00:19 desrod
* libpisock/usb.c: Fix for Sony SJ-22 device sync (fixes bug #1957
filed at bugs.pilot-link.org)
2009-05-25 00:16 desrod
* doc/xml/pilot-xfer.xml: Updated documentation to reflect a
cleaner layout and output (closes bug #1913 in the bugtracker at
bugs.pilot-link.org
2009-02-23 06:59 nicholas
* ChangeLog, include/pi-contact.h, libpisock/contact.c,
tests/contactsdb-test.c: Integrate jpilot's contacts support. See
http://lists.pilot-link.org/pipermail/pilot-link-devel/2009-February/001762.html
.
This is based on:
===================================================================
File: jp-contact.c Status: Up-to-date
Working revision: 1.10
Repository revision: 1.10
/cvs/jpilot/jpilot_src/jp-contact.c,v
Sticky Tag: (none)
Sticky Date: (none)
Sticky Options: (none)
===================================================================
File: jp-pi-contact.h Status: Up-to-date
Working revision: 1.5
Repository revision: 1.5
/cvs/jpilot/jpilot_src/jp-pi-contact.h,v
Sticky Tag: (none)
Sticky Date: (none)
Sticky Options: (none)
2009-02-22 17:54 nicholas
* bindings/Python/.cvsignore: Add generated file to .cvsignore
2009-02-22 03:08 nicholas
* include/Makefile.am, include/pi-blob.h, include/pi-calendar.h,
include/pi-location.h, libpisock/Makefile.am, libpisock/blob.c,
libpisock/calendar.c, libpisock/location.c, tests/.cvsignore,
tests/Makefile.am, tests/calendardb-test.c,
tests/locationdb-test.c: Adding CalendarDB support to pilot-link
2009-02-21 18:44 desrod
* configure.ac: Adding minor tweak for m4 macro optimizations
2009-02-21 17:22 desrod
* libpisock/contact.c: Minor fix for a buffer size miscalculation
(from Nicholas Piper)
2009-02-07 11:09 desrod
* include/Makefile.am: Adding missing newline at the end of the
file.
2009-02-07 11:05 desrod
* include/Makefile.am: Just testing a commit, debugging failure in
CVS locks. Debian--
2008-11-06 05:45 desrod
* include/: pi-debug.h, pi-threadsafe.h: Cleaning up unnecessary
references to config.h here.
2008-11-05 20:14 judd
* configure.ac: Added pi-md5.h.in
2008-11-05 20:14 judd
* include/pi-md5.h.in: generates pi-md5.h
2008-11-05 20:13 judd
* include/pi-md5.h: Now autogenerated from pi-md5.h.in
2008-05-03 16:23 desrod
* libpisock/bluetooth.c: Add minor fix for reported segfault when
closing down bluetooth connection.
This closes bug #1872
2007-12-17 22:03 judd
* include/pi-md5.h: UINT32 was broken on 64-bit systems. This
should fix it on most systems.
2007-12-17 20:56 desrod
* ChangeLog: Increment ChangeLog to test/validate an LDAP
permission issue with LockDir
2007-11-22 17:19 desrod
* libpisock/usb.c: Implementing a Zire 22 fix from Tom Billiet
2007-11-12 13:42 desrod
* configure.ac: Bump for 0.12.4
2007-11-12 13:01 desrod
* configure.ac: [no log message]
2007-11-12 12:56 desrod
* bindings/Perl/Pilot.xs: Added Aaron's fixes (oof! This has been
in the queue for awhile. Sorry Aaron). This closes bug #1448.
2007-11-12 12:30 desrod
* NEWS: Bump for 0.12.3 release
2007-11-12 11:58 desrod
* ChangeLog: Bump ChangeLog to current
2007-11-12 11:28 desrod
* doc/xml/: pilot-foto-treo600.xml, pilot-foto-treo650.xml: Adding
manpages for renamed conduits
2007-11-12 11:25 desrod
* doc/xml/pilot-link.docbook, doc/xml/pilot-link.xml,
src/Makefile.am: Updated for new conduit renames and new manpages
to follow them
2007-11-12 09:38 desrod
* doc/: man/Makefile.am, xml/pilot-650foto.xml,
xml/pilot-treofoto.xml: Removing legacy manpages for renamed
conduits
2007-11-12 09:26 desrod
* src/: pilot-650foto.c, pilot-read-todos.c, pilot-treofoto.c:
Replaced pilot-650foto.c with pilot-foto-treo650.c and
pilot-treofoto.c with pilot-foto-treo600.c.
Fixed pilot-read-todos.c to allow reading files from outside its
own directory
2007-11-09 11:01 desrod
* src/pilot-addresses.c: Fix for devices > OS5. Instead of bailing
out, we'll just report a warning for now until I can rewrite
this.
2007-11-09 10:48 desrod
* src/pilot-install-memo.c: Fix for installing files to Memo Pad
when they aren't in the current working directory
2007-11-09 09:52 desrod
* doc/xml/pilot-read-todos.xml: More clarity about what is and is
not supported by this conduit. This closes bug #1837
2007-11-09 09:43 desrod
* bindings/Java/Makefile.am: Update to allow parallel builds of
pilot-link's Java bindings. This closes bug #1802.
2007-11-09 09:40 desrod
* bindings/Java/Makefile.am: Updated Java bindings to fix unescaped
vars. This prevents accidental installation of the Java bindings.
2007-11-09 09:35 desrod
* configure.ac, m4/bluez.m4: Update to fix the BlueZ detection,
also add a --without-bluez option to explicitly disable BlueZ for
builds on systems where BlueZ is detected.
This also closes bug #17795 and Debian bug 413051 in the Debian
BTS
2007-11-09 09:07 desrod
* src/pilot-csd.c: Minor fix for -H issue by Philipp Matthias Hahn.
This closes #1824 in the pilot-link bugtracker and #430808 in the
Debian BTS.
2007-11-09 08:59 desrod
* libpisock/usb.c: Fix for Sony NR70 devices by Serguei Miridonov.
This closes issue #1830
2007-10-11 12:02 desrod
* configure.ac: Fixed a small cosmetic error with PNG detection
(resolves bug #1804)
2007-07-30 00:56 desrod
* src/pilot-addresses.c: Minor update to attempt to fix the > OS5
detection
2007-07-29 22:09 desrod
* configure.ac, doc/Makefile.am: Updated the xsltproc check to only
build when xsltproc is found, else skip
This resolves bug #1805.
2007-07-29 22:05 desrod
* configure.ac: Increment CURRENT and REVISION for libpisync as
required by autoconf guidelines:
http://sources.redhat.com/autobook/autobook/autobook_91.html
2007-05-31 21:13 desrod
* doc/xml/pilot-install-netsync.xml, src/pilot-install-netsync.c:
Clarified the network parameters which are allowed for this
conduit.
2007-04-16 12:47 desrod
* m4/bluez.m4: Trying to clean up the autoconf by moving to .m4
files. BlueZ is a mess :)
2007-03-17 15:15 desrod
* src/pilot-install-datebook.c: Missed application of
pi_buffer_new(). This closes bug #1789.
2007-03-17 15:04 desrod
* bindings/Perl/Makefile.PL.in: Closing bug #1705 from 7-15,
patched with Aaron's Perl fix
2007-03-08 12:54 desrod
* configure.ac: Oops, that wasn't right, this one is.
2007-03-08 12:37 desrod
* configure.ac: Bump pisock to the next level
2007-02-21 12:27 desrod
* pilot-link.m4.in: This was here to test and debug a BlueZ
problem, which has now been fixed by completely rewriting the
autoconf test for it. This also closes pilot-link bug #1793 and
Debian bug #411382
2007-02-19 08:59 desrod
* libpisock/usb.c: Oops, forgot to commit Matt Davey's fix. This
closes bug #1782.
2007-02-18 21:16 desrod
* doc/xml/pilot-memos.xml: Closing Debian bug #391984
2007-02-16 23:26 desrod
* doc/xml/: docbook.xsl.in, pilot-install-todo.xml,
pilot-install-todos.xml: Updated documents: docbook.xsl.in: Can't
have comments above the opening declaration
pilot-install-todo[s].xml: Reference each other until we merge
together
2007-02-16 21:40 desrod
* bindings/Tcl/: Makefile.am, pitcl.c: Fixing Tcl bindings so they
build clean. I don't know if they'll work, but this should at
least fix them so they do not error out and crash a build when
enabled. This also closes bug #1488
2007-02-16 13:42 desrod
* doc/xml/pilot-link.docbook: Oops, can't have anything above the
XML declaration. My bad.
2007-02-16 13:26 desrod
* doc/: 60-libpisock.rules, CodingGuidelines, README,
README.debugging, README.libusb, README.usb, TODO,
xml/Makefile.am, xml/README, xml/catalog.xml.in,
xml/docbook.xsl.in, xml/pilot-link.docbook: Updating some docs to
add the CVS Id header, added README file at the top level to
clarify where things are
2007-02-16 12:28 desrod
* configure.ac: Fixes for xsltproc detection. Prior behavior was
reporting a nonsensical error and continuing past it. This should
report a useful error.
2007-02-16 11:16 desrod
* pilot-link.m4.in: Fix unbalanced parens and brackets
2007-02-14 21:18 desrod
* configure.ac: Fix for bluetooth argument not being properly
passed at configure time. Closes bug #1791
2007-02-14 20:01 desrod
* configure.ac, doc/xml/pilot-xfer.xml: Fixing another XML issue,
how this got back in there post-release, I don't know, but its
fixed and verified now. Also bumped for 0.12.3.
2007-02-11 15:17 desrod
* NEWS: Oops! How did I forget to commit this? Bump for 0.12.2 NEWS
items.
2007-02-09 17:00 desrod
* configure.ac: Minor BlueZ retrofit
2007-02-09 15:52 desrod
* doc/TODO, doc/xml/pilot-ietf2datebook.xml,
doc/xml/pilot-link.xml, src/Makefile.am, src/ietf2datebook.PL,
src/pilot-undelete.PL, src/sync-plan.PL: Updated more userland
namespace issues
2007-02-09 15:43 desrod
* bindings/Makefile.am: Hans Meine's fix for building Python in a
sandbox environment ($DESTDIR)
2007-02-09 15:35 desrod
* configure.ac: Minor fix for BlueZ output and config.h sanity
2007-02-09 13:49 desrod
* ChangeLog: ChangeLog for 0.12.2
2007-02-09 12:58 desrod
* bindings/: README, README.de: More extraneous Java cruft in the
wrong dir, reformatted a README
2007-02-09 12:28 desrod
* bindings/: libjpisock.h, test.java: More extraneous Java junk in
the wrong directory
2007-02-09 12:27 desrod
* bindings/: Makefile.am, libjpisock.c: I'm not sure why this was
in the bindings directory, it belongs in the Java directory..
removed.
2007-02-09 11:16 desrod
* bindings/Perl/Pilot.xs: Fix for using newSVpvn(buf,size) instead
of newSVpv(buf,size) where necessary. This closes bug 1736 from
Aaron.
2007-02-09 11:11 desrod
* include/pi-usb.h: Solaris doesn't directly support uint8_t,
uint16_t and uint32_t.. fixed.
This closes bug 1759, reported by Jyu.
2007-02-09 11:06 desrod
* libpisock/libusb.c: Fix for a missing define for __FUNCTION__ on
Solaris; closes bug 1760 submitted by Jyu.
2007-02-09 11:01 desrod
* doc/xml/: pilot-link.xml, pilot-schlep.xml: Small fixes here and
there, just a dab of salt, a pinch of pepper..
2007-02-09 10:51 desrod
* doc/xml/docbook.xsl.in: We're already importing docbook.xsl which
includes xref.xsl and lists.xsl from /html/, there's no reason to
do it twice (closes pilot-link bug 1773).
2007-02-09 09:24 desrod
* doc/60-libpisock.rules: Fix for a struct change in upstream udev
from SYSFS to ATTRS. This also closes Debian bug #410152 for the
same issue.
2007-02-08 12:08 desrod
* doc/Makefile.am, doc/README.debugging, doc/xml/docbook.xsl.in,
doc/xml/ietf2datebook.xml, doc/xml/pilot-650foto.xml,
doc/xml/pilot-addresses.xml, doc/xml/pilot-clip.xml,
doc/xml/pilot-csd.xml, doc/xml/pilot-debugsh.xml,
doc/xml/pilot-dedupe.xml, doc/xml/pilot-dlpsh.xml,
doc/xml/pilot-file.xml, doc/xml/pilot-foto.xml,
doc/xml/pilot-getram.xml, doc/xml/pilot-getrom.xml,
doc/xml/pilot-ietf2datebook.xml, doc/xml/pilot-getromtoken.xml,
doc/xml/pilot-hinotes.xml, doc/xml/pilot-install-datebook.xml,
doc/xml/pilot-install-expenses.xml,
doc/xml/pilot-install-hinote.xml, doc/xml/pilot-install-memo.xml,
doc/xml/pilot-install-netsync.xml,
doc/xml/pilot-install-todo.xml, doc/xml/pilot-install-todos.xml,
doc/xml/pilot-install-user.xml, doc/xml/pilot-link.xml,
doc/xml/pilot-memos.xml, doc/xml/pilot-nredir.xml,
doc/xml/pilot-read-expenses.xml, doc/xml/pilot-read-ical.xml,
doc/xml/pilot-read-notepad.xml, doc/xml/pilot-read-palmpix.xml,
doc/xml/pilot-read-screenshot.xml, doc/xml/pilot-read-todos.xml,
doc/xml/pilot-read-veo.xml, doc/xml/pilot-reminders.xml,
doc/xml/pilot-schlep.xml, doc/xml/pilot-treofoto.xml,
doc/xml/pilot-wav.xml, doc/xml/pilot-xfer.xml,
include/pi-bluetooth.h, libpisock/bluetooth.c, src/Makefile.am:
Documentation bump for 0.12.2
2007-02-08 10:02 desrod
* doc/CodingGuidelines: Update to add a few minor clarifications
2007-02-08 09:26 desrod
* doc/syncabs.sgml: Removing deprecated syncabs information, needs
to be rewritten based on the new changes in the 0.12.x codebase.
2007-02-06 10:17 desrod
* libpisock/: libusb.c, usb.c: Fix for a Tungsten X issue. This
will detect that the usb control message send has failed and skip
the interface until the correct one appears, and the usb control
message is successfully send/recieved.
2007-02-05 12:53 desrod
* libpisock/Makefile.am: Last-minute fixes for BlueZ support from
Daniel Gollub.. fixes an oopsie in userland conduits
2007-02-05 12:21 desrod
* configure.ac, libpisock/Makefile.am: Incorporating Daniel
Gollub's BlueZ patches and fixes
2007-02-04 20:57 desrod
* configure.ac: Fix a small issue with libtool not creating
ltmain.sh on a clean checkout
2007-02-04 20:47 desrod
* doc/: man/Makefile.am, xml/pilot-read-todos.xml,
xml/pilot-read-veo.xml: Fixing up some doc building issues
2007-02-04 18:05 desrod
* doc/man/Makefile.am, doc/xml/ietf2datebook.xml,
doc/xml/install-datebook.xml, doc/xml/install-hinote.xml,
doc/xml/pilot-ietf2datebook.xml, doc/xml/install-memo.xml,
doc/xml/install-netsync.xml, doc/xml/install-todo.xml,
doc/xml/install-todos.xml, doc/xml/install-user.xml,
doc/xml/pilot-650foto.xml, doc/xml/pilot-addresses.xml,
doc/xml/pilot-clip.xml, doc/xml/pilot-csd.xml,
doc/xml/pilot-debugsh.xml, doc/xml/pilot-dedupe.xml,
doc/xml/pilot-dlpsh.xml, doc/xml/pilot-file.xml,
doc/xml/pilot-getram.xml, doc/xml/pilot-getrom.xml,
doc/xml/pilot-getromtoken.xml, doc/xml/pilot-hinotes.xml,
doc/xml/pilot-install-datebook.xml,
doc/xml/pilot-install-expenses.xml,
doc/xml/pilot-install-hinote.xml, doc/xml/pilot-install-memo.xml,
doc/xml/pilot-install-netsync.xml,
doc/xml/pilot-install-todo.xml, doc/xml/pilot-install-todos.xml,
doc/xml/pilot-install-user.xml, doc/xml/pilot-link.docbook,
doc/xml/pilot-link.xml, doc/xml/pilot-memos.xml,
doc/xml/pilot-nredir.xml, doc/xml/pilot-read-expenses.xml,
doc/xml/pilot-read-ical.xml, doc/xml/pilot-read-notepad.xml,
doc/xml/pilot-read-palmpix.xml,
doc/xml/pilot-read-screenshot.xml, doc/xml/pilot-reminders.xml,
doc/xml/pilot-schlep.xml, doc/xml/pilot-treofoto.xml,
doc/xml/pilot-wav.xml, doc/xml/pilot-xfer.xml,
doc/xml/read-expenses.xml, doc/xml/read-ical.xml,
doc/xml/read-notepad.xml, doc/xml/read-palmpix.xml,
doc/xml/read-todos.xml, doc/xml/read-veo.xml, src/Makefile.am,
src/install-datebook.c, src/install-hinote.c, src/install-memo.c,
src/install-netsync.c, src/install-todo.c, src/install-todos.c,
src/install-user.c, src/pilot-install-netsync.c,
src/pilot-read-expenses.c, src/pilot-read-ical.c,
src/pilot-read-notepad.c, src/pilot-read-palmpix.c,
src/pilot-read-todos.c, src/pilot-read-veo.c,
src/read-expenses.c, src/read-ical.c, src/read-notepad.c,
src/read-palmpix.c, src/read-todos.c, src/read-veo.c: More
renaming of userland conduits to avoid namespace pollution,
cleaned the XML manpage sources to align with these changes.
Whew!
2007-02-04 16:25 desrod
* doc/: README.libusb, README.usb: Documentation cleanup with
respect to usb and libusb connections. Needed to update and
clarify some minor details reported by users.
2007-02-04 15:28 desrod
* configure.ac, bindings/Java/Makefile.am,
doc/xml/ietf2datebook.xml, doc/xml/install-datebook.xml,
doc/xml/install-hinote.xml, doc/xml/install-memo.xml,
doc/xml/install-netsync.xml, doc/xml/install-todo.xml,
doc/xml/install-todos.xml, doc/xml/install-user.xml,
doc/xml/pilot-addresses.xml, doc/xml/pilot-clip.xml,
doc/xml/pilot-debugsh.xml, doc/xml/pilot-dedupe.xml,
doc/xml/pilot-dlpsh.xml, doc/xml/pilot-file.xml,
doc/xml/pilot-foto.xml, doc/xml/pilot-getram.xml,
doc/xml/pilot-getrom.xml, doc/xml/pilot-getromtoken.xml,
doc/xml/pilot-hinotes.xml, doc/xml/pilot-ietf2datebook.xml,
doc/xml/pilot-install-datebook.xml,
doc/xml/pilot-install-expenses.xml,
doc/xml/pilot-install-hinote.xml, doc/xml/pilot-install-memo.xml,
doc/xml/pilot-install-netsync.xml,
doc/xml/pilot-install-todo.xml, doc/xml/pilot-install-todos.xml,
doc/xml/pilot-install-user.xml, doc/xml/pilot-link.xml,
doc/xml/pilot-memos.xml, doc/xml/pilot-read-expenses.xml,
doc/xml/pilot-read-ical.xml, doc/xml/pilot-read-notepad.xml,
doc/xml/pilot-read-palmpix.xml,
doc/xml/pilot-read-screenshot.xml, doc/xml/pilot-read-todos.xml,
doc/xml/pilot-schlep.xml, doc/xml/pilot-treofoto.xml,
doc/xml/pilot-wav.xml, doc/xml/pilot-xfer.xml,
doc/xml/read-expenses.xml, doc/xml/read-ical.xml,
doc/xml/read-notepad.xml, doc/xml/read-palmpix.xml,
doc/xml/read-todos.xml, doc/xml/pilot-read-veo.xml,
doc/xml/read-veo.xml, include/pi-contact.h, libpisock/contact.c:
1. Updated some of the manpages (more to come) 2. Fixed a DESTDIR
problem in bindings/Java/Makefile.am (thanks Hans Meine!) 3.
Fixed up a problem with Python detection (thanks Nicholas Piper
and Hans Meine) 4. Other miscellaneous cleanup as necessary
2007-02-02 06:55 desrod
* libpisock/Makefile.am: Minor fix for building with bluetooth
support, was missing a source file declaration.
2007-02-02 06:35 desrod
* configure.ac, pilot-link.m4.in, src/pilot-dlpsh.c: Minor tweaks
and fixes here and there.. trying to figure out a bluetooth
autoconf issue, still unresolved.
2007-01-19 14:30 fpillet
* libpisock/Makefile.am: missing WITH_BLUEZ test
2007-01-15 01:11 desrod
* src/pilot-addresses.c: Fixed a minor typo, closes bug #1745
(thanks Ludovic!)
2007-01-10 09:07 fpillet
* configure.ac, include/pi-bluetooth.h, libpisock/bluetooth.c:
Applied dgollub's fix for BlueZ support. Fixes building
pilot-link on Mac OS X
2006-12-13 11:06 desrod
* doc/README.usb: oops, minor typo when copying the header from
README.libusb back in
2006-11-22 17:52 adridg
* include/pi-address.h, include/pi-appinfo.h,
include/pi-datebook.h, include/pi-memo.h, include/pi-todo.h,
libpisock/address.c, libpisock/appinfo.c, libpisock/datebook.c,
libpisock/memo.c, libpisock/todo.c: Big batch of constness
2006-11-18 17:43 adridg
* libpisock/Makefile.am: WITH_BLUEZ is not defined as a
conditional, so automake 1.9.6 barfs on it. Remove it for now,
since there's no way to get BLUEZ defined.
2006-11-09 05:26 fpillet
* libpisock/darwinusb.c: forgot to undefine DEBUG_USB -- otherwise
you get LOTS of traces
2006-11-09 04:42 fpillet
* libpisock/darwinusb.c: Added support for high-speed USB devices
(large packet sizes, 512 bytes). Somehow, with some versions of
OS X on Intel Macs and depending on the machine the bulk packet
maxsize may be bigger than 64. In this case the previous code was
getting data overruns when reading.
2006-11-07 16:13 adridg
* libpisock/: cmp.c, expense.c, socket.c: Warning suppression: use
(void) foo for unused parameters foo [which demonstrates that
expense packing and unpacking has interesting possible buffer
overflows]; initialize the uninitialized; #if 0 unused debugging
functions. (KPilot r. 502)
2006-11-07 15:42 adridg
* include/pi-address.h, libpisock/address.c, libpisock/dlp.c,
libpisock/socket.c: Typedef the Address fields enum so it has a
name; add constness to some pack/unpack functions; remove C++
style comments from C code. (KPilot r.500)
2006-11-07 04:05 fpillet
* libpisock/socket.c: Fix for RAW mode: protocol_queue_build was
trying to build the protocol stack even though RAW mode is not
supposed to have one
2006-11-07 04:03 fpillet
* libpisock/darwinusb.c: Fix to support PPP connections over USB:
recognize ppp_ function for USB endpoints
2006-11-02 09:54 desrod
* src/: Makefile.am, pilot-read-screenshot.c: Removed conflicting
option (-t == timeout, not type). Will clean up further.
2006-11-02 09:40 desrod
* configure.ac, doc/man/Makefile.am, doc/xml/pilot-link.docbook,
doc/xml/pilot-link.xml, doc/xml/pilot-read-screenshot.xml,
doc/xml/read-screenshot.xml, src/Makefile.am: Screenshot renaming
to avoid namespace pollution
2006-11-02 09:34 desrod
* src/: pilot-read-screenshot.c, read-screenshot.c: Renamed
read-screenshot to avoid some namespace pollution
2006-10-17 09:24 desrod
* ChangeLog, doc/README.debugging, doc/README.libusb,
doc/README.usb, doc/man/Makefile.am, doc/xml/ietf2datebook.xml,
doc/xml/install-datebook.xml, doc/xml/install-hinote.xml,
doc/xml/install-memo.xml, doc/xml/install-netsync.xml,
doc/xml/install-todo.xml, doc/xml/install-todos.xml,
doc/xml/install-user.xml, doc/xml/pilot-650foto.xml,
doc/xml/pilot-addresses.xml, doc/xml/pilot-clip.xml,
doc/xml/pilot-csd.xml, doc/xml/pilot-debugsh.xml,
doc/xml/pilot-dedupe.xml, doc/xml/pilot-dlpsh.xml,
doc/xml/pilot-file.xml, doc/xml/pilot-foto.xml,
doc/xml/pilot-getram.xml, doc/xml/pilot-getrom.xml,
doc/xml/pilot-getromtoken.xml, doc/xml/pilot-hinotes.xml,
doc/xml/pilot-ietf2datebook.xml,
doc/xml/pilot-install-datebook.xml,
doc/xml/pilot-install-expenses.xml,
doc/xml/pilot-install-hinote.xml, doc/xml/pilot-install-memo.xml,
doc/xml/pilot-install-netsync.xml,
doc/xml/pilot-install-todo.xml, doc/xml/pilot-install-todos.xml,
doc/xml/pilot-install-user.xml, doc/xml/pilot-link.xml,
doc/xml/pilot-memos.xml, doc/xml/pilot-nredir.xml,
doc/xml/pilot-read-expenses.xml, doc/xml/pilot-read-ical.xml,
doc/xml/pilot-read-notepad.xml, doc/xml/pilot-read-palmpix.xml,
doc/xml/pilot-read-screenshot.xml, doc/xml/pilot-read-todos.xml,
doc/xml/pilot-read-veo.xml, doc/xml/pilot-reminders.xml,
doc/xml/pilot-schlep.xml, doc/xml/pilot-treofoto.xml,
doc/xml/pilot-wav.xml, doc/xml/pilot-xfer.xml,
doc/xml/read-expenses.xml, doc/xml/read-ical.xml,
doc/xml/read-notepad.xml, doc/xml/read-palmpix.xml,
doc/xml/read-screenshot.xml, doc/xml/read-todos.xml,
doc/xml/read-veo.xml, include/pi-address.h, include/pi-appinfo.h,
include/pi-args.h, include/pi-buffer.h, include/pi-cmp.h,
include/pi-contact.h, include/pi-datebook.h, include/pi-debug.h,
include/pi-dlp.h, include/pi-error.h, include/pi-expense.h,
include/pi-file.h, include/pi-foto.h, include/pi-header.h,
include/pi-hinote.h, include/pi-inet.h, include/pi-macros.h,
include/pi-mail.h, include/pi-md5.h, include/pi-memo.h,
include/pi-money.h, include/pi-net.h, include/pi-notepad.h,
include/pi-padp.h, include/pi-palmpix.h, include/pi-serial.h,
include/pi-slp.h, include/pi-sockaddr.h, include/pi-socket.h,
include/pi-source.h, include/pi-sync.h, include/pi-sys.h,
include/pi-syspkt.h, include/pi-threadsafe.h, include/pi-todo.h,
include/pi-usb.h, include/pi-userland.h, include/pi-util.h,
include/pi-veo.h, include/pi-versamail.h, src/install-hinote.c,
src/install-memo.c, src/pilot-install-hinote.c,
src/pilot-install-memo.c: This is what you do when your flight
gets delayed several hours... just some general cleanup and
maintenance housecleaning.
2006-10-16 13:57 fpillet
* libpisock/socket.c: Following Matt Davey's advice on bluetooth:
support: only allow the keyword to be used when bluetooth support
is being linked in
2006-10-16 13:46 fpillet
* libpisock/socket.c: Fixed port string matching for bt:/bluetooth:
(thanks Matt)
2006-10-13 13:36 fpillet
* include/pi-bluetooth.h, libpisock/bluetooth.c,
include/Makefile.am, libpisock/Makefile.am, libpisock/socket.c:
Linux bluetooth support (Bluez) contributed by Bastien Nocera
2006-10-13 05:56 fpillet
* libpisock/socket.c: commented out the pi_dumpdata() call in
protocol detection as I only use it for debugging this part
2006-10-13 05:52 fpillet
* libpisock/: dlp.c, socket.c: dlp_ReadSysInfo() now updates the
socket's dlpVersion and maxrecsize. We don't issue a separate
dlp_ReadSysInfo() from pi_version() anymore as it can cause big
trouble if called from within a DLP call. Tweaked pi_version(),
and also tweaked protocol detection again for more accurate
serial / bluetooth protocol detection
2006-10-13 05:52 fpillet
* libpisock/: padp.c, slp.c: better logging for debug in padp/slp
2006-10-12 10:21 desrod
* src/install-datebook.c, src/install-hinote.c, src/install-memo.c,
src/install-netsync.c, src/install-todo.c, src/install-todos.c,
src/pilot-install-datebook.c, src/pilot-install-hinote.c,
src/pilot-install-memo.c, src/pilot-install-netsync.c,
src/pilot-install-todo.c, src/pilot-install-todos.c,
src/install-user.c, src/kittykiller.c, src/pd-tty.c,
src/pilot-650foto.c, src/pilot-addresses.c, src/pilot-clip.c,
src/pilot-csd.c, src/pilot-debug.c, src/pilot-debugsh.c,
src/pilot-dedupe.c, src/pilot-dlpsh.c, src/pilot-file.c,
src/pilot-foto-treo600.c, src/pilot-foto-treo650.c,
src/pilot-foto.c, src/pilot-getram.c, src/pilot-getrom.c,
src/pilot-getromtoken.c, src/pilot-hinotes.c,
src/pilot-install-expenses.c, src/pilot-install-user.c,
src/pilot-memos.c, src/pilot-nredir.c, src/pilot-port.c,
src/pilot-read-expenses.c, src/pilot-read-ical.c,
src/pilot-read-notepad.c, src/pilot-reminders.c,
src/pilot-schlep.c, src/pilot-treofoto.c, src/pilot-wav.c,
src/pilot-xfer.c, src/plu_args.c, src/read-expenses.c,
src/read-ical.c, src/read-notepad.c, libpisock/address.c,
libpisock/appinfo.c, libpisock/cmp.c, libpisock/connect.c,
libpisock/contact.c, libpisock/darwinusb.c, libpisock/datebook.c,
libpisock/debug.c, libpisock/dlp.c, libpisock/expense.c,
libpisock/freebsdusb.c, libpisock/hinote.c, libpisock/inet.c,
libpisock/libusb.c, libpisock/linuxusb.c, libpisock/mail.c,
libpisock/md5.c, libpisock/memo.c, libpisock/money.c,
libpisock/net.c, libpisock/notepad.c, libpisock/os2serial.c,
libpisock/padp.c, libpisock/palmpix.c, libpisock/pi-buffer.c,
libpisock/pi-file.c, libpisock/pi-header.c, libpisock/serial.c,
libpisock/slp.c, libpisock/socket.c, libpisock/sys.c,
src/pilot-read-palmpix.c, src/pilot-read-screenshot.c,
src/pilot-read-todos.c, src/pilot-read-veo.c, src/read-palmpix.c,
src/read-screenshot.c, src/read-todos.c, src/read-veo.c,
src/userland.c, libpisock/syspkt.c, libpisock/threadsafe.c,
libpisock/todo.c, libpisock/unixserial.c, libpisock/usb.c,
libpisock/utils.c, libpisock/veo.c, libpisock/versamail.c: Just
some long-needed CVS house-cleaning..
2006-10-12 09:02 fpillet
* libpisock/: address.c, appinfo.c, cmp.c, connect.c, contact.c,
datebook.c, debug.c, dlp.c, expense.c, freebsdusb.c, hinote.c,
inet.c, libusb.c, linuxusb.c, mail.c, md5.c, memo.c, money.c,
net.c, notepad.c, os2serial.c, padp.c, palmpix.c, pi-buffer.c,
pi-file.c, pi-header.c, serial.c, slp.c, socket.c, sys.c,
syspkt.c, threadsafe.c, todo.c, unixserial.c, usb.c, utils.c,
veo.c, versamail.c: Add CVS Id to all source files, I hate it
when I get an updated file and I don't know which release it
originates from
2006-10-12 09:01 fpillet
* libpisock/darwinusb.c: updated comment in USB entry 0830/0061 for
Treo 650
2006-10-12 08:32 fpillet
* libpisock/dlp.c: Integrated Scott Gruby's big record fix: reading
records that have the maximum allowed size could lock up some
devices. We now read maxRecordSize-100 and perform a second read
if the record is large. Also some casts to make compilers happy,
and a safeguard when reading username / password to properly
terminate the strings.
2006-10-09 12:43 desrod
* libpisock/usb.c: More sanity to catch both Sony models, including
the NRxx series handhelds
2006-10-09 12:30 desrod
* libpisock/usb.c: Minor fix for Sony Clie detection
2006-09-28 14:43 angusa
* doc/xml/pilot-650foto.xml: Manual page for pilot-650foto
2006-09-28 14:38 angusa
* ChangeLog: [no log message]
2006-09-28 01:41 angusa
* src/Makefile.am: Added pilot-650foto
2006-09-28 01:35 angusa
* src/: pilot-650foto.c, pilot-foto-treo650.c: Extract treo 650
photos
2006-09-21 16:23 warp
* libpisock/usb.c: Fix a bug where we were looking at
override_device instead of known_device[i].
Removed override_device, given that nothing sets it, anywhere.
2006-09-19 16:11 desrod
* NEWS, doc/xml/install-expenses.xml,
doc/xml/pilot-install-expenses.xml, doc/xml/pilot-link.docbook,
doc/xml/pilot-link.xml, src/Makefile.am, src/install-expenses.c,
src/pilot-install-expenses.c: More userland renaming to avoid
clobbering any potential future binaries that might use or reuse
the same naming conventions. Still quite a few left to go in
here.
2006-09-04 15:16 desrod
* ChangeLog, doc/xml/Makefile.am: Updates for 0.12.1 release
2006-08-28 20:57 desrod
* ChangeLog, configure.ac, libpisock/cmp.c, libpisock/padp.c,
src/ccexample.cc, src/install-datebook.c, src/install-expenses.c,
src/install-hinote.c, src/install-memo.c, src/install-netsync.c,
src/install-user.c, src/pilot-install-datebook.c,
src/pilot-install-expenses.c, src/pilot-install-hinote.c,
src/pilot-install-memo.c, src/pilot-install-netsync.c,
src/pilot-install-user.c: More cleanup for 0.12.1
2006-08-27 14:51 desrod
* ChangeLog, include/pi-cmp.h, include/pi-foto.h,
libpisock/darwinusb.c, libpisock/dlp.c, libpisock/freebsdusb.c,
libpisock/inet.c, libpisock/libusb.c, libpisock/linuxusb.c,
tests/dlp-test.c: Minor code cleanup, removing redundant calls to
headers, some minor code docs going into place here.
2006-08-27 09:47 desrod
* ChangeLog, configure.ac, doc/Makefile.am, doc/xml/Makefile.am:
Fix for building as a non-root user with udev rules. They now go
into $datadir/pilot-link/udev by default.
2006-08-26 18:53 desrod
* NEWS, README, configure.ac, doc/60-libpisock.rules,
doc/README.libusb, doc/xml/Makefile.am: A few more last-minute
tweaks to get 0.12.0 out the door!
2006-08-25 13:57 desrod
* configure.ac: Rolling to a .1 in CVS, preparing for a 0.12.0
release
2006-08-25 13:52 desrod
* ChangeLog, configure.ac, doc/Makefile.am, doc/xml/Makefile.am,
m4/xslt.m4, src/prc/Makefile.am: Updated a few things to get
distcheck to function properly. Sigh.
2006-08-25 11:56 desrod
* doc/Makefile.am: Remove extra terminating slash
2006-08-25 11:52 desrod
* doc/: Makefile.am, libpisock.rules: CVS surgery to rename the
libpisock.rules file to its proper 60-libpisock name per the udev
documentation
2006-08-25 11:11 desrod
* src/pilot-xfer.c: Oops, that wasn't supposed to go through, just
a quick test of something new
2006-08-25 11:09 desrod
* doc/60-libpisock.rules, doc/Makefile.am, doc/libpisock.rules,
src/pilot-xfer.c: Adding libpisock.rules for the udev/libusb
users who wish to try that
2006-08-25 10:54 desrod
* ChangeLog, doc/xml/pilot-dlpsh.xml, include/pi-util.h,
libpisync/util.c, src/pilot-dlpsh.c, src/pilot-xfer.c,
tests/contactsdb-test.c: Some last minute tweaks, and the changes
to facilitate the PILOT_CHARSET to be changed with an environment
variable from the shell at runtime.
2006-08-25 10:29 desrod
* doc/xml/: ietf2datebook.xml, install-datebook.xml,
install-expenses.xml, install-hinote.xml, pilot-addresses.xml,
pilot-csd.xml, pilot-dlpsh.xml, pilot-ietf2datebook.xml,
pilot-install-datebook.xml, pilot-install-expenses.xml,
pilot-install-hinote.xml, pilot-getromtoken.xml,
pilot-read-notepad.xml, pilot-read-screenshot.xml,
pilot-read-veo.xml, read-notepad.xml, read-screenshot.xml,
read-veo.xml: More tweaks and pokes for the 0.12.0 release... its
coming soon!
2006-08-25 10:06 desrod
* doc/: man/Makefile.am, xml/pilot-debugsh.xml,
xml/pilot-dlpsh.xml, xml/pilot-hinotes.xml, xml/pilot-memos.xml,
xml/pilot-reminders.xml: Some last-minute fixes for the renaming
of the userland binaries