-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathChangeLog
15785 lines (11247 loc) · 509 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
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
2006-08-25 09:44 desrod
* src/: install-user.c, pilot-install-user.c: Quick fix to properly
parse the args as passed in. We were previously ignoring
PILOTPORT in the process. This is a temporary quick-hack fix, and
will be removed and replaced with a more elegant solution later.
2006-08-25 09:27 desrod
* doc/xml/: debugsh.xml, dlpsh.xml, hinotes.xml, memos.xml,
pi-csd.xml, pi-getram.xml, pi-getrom.xml, pi-getromtoken.xml,
pi-nredir.xml, pilot-csd.xml, pilot-getram.xml, pilot-getrom.xml,
pilot-getromtoken.xml, pilot-link.docbook, pilot-link.xml,
pilot-nredir.xml, reminders.xml: Cleaned up the documentation to
conform to the userland renaming pass
2006-08-25 09:26 desrod
* src/: Makefile.am, debugsh.c, dlpsh.c, hinotes.c, memos.c,
pi-csd.c, pi-getram.c, pi-getrom.c, pi-getromtoken.c,
pi-nredir.c, pi-port.c, pilot-csd.c, pilot-debugsh.c,
pilot-dlpsh.c, pilot-getram.c, pilot-getrom.c,
pilot-getromtoken.c, pilot-hinotes.c, pilot-memos.c,
pilot-nredir.c, pilot-port.c, pilot-reminders.c, reminders.c:
Renamed several userland binaries to avoid clobbering of other
application binaries when installed
2006-05-31 13:59 desrod
* ChangeLog, configure.ac, bindings/Perl/Pilot.pm,
bindings/Perl/Pilot.xs, bindings/Python/README,
bindings/Python/setup-standalone.py.in,
bindings/Python/setup.py.in, bindings/Python/src/general-maps.i,
bindings/Python/src/helperfuncs.i,
bindings/Python/src/pi-dlp-maps.i,
bindings/Python/src/pi-error.i,
bindings/Python/src/pi-file-maps.i,
bindings/Python/src/pi-socket-maps.i, doc/man/README,
doc/xml/debugsh.xml, doc/xml/dlpsh.xml, doc/xml/hinotes.xml,
doc/xml/ietf2datebook.xml, doc/xml/install-datebook.xml,
doc/xml/install-expenses.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/memos.xml, doc/xml/pi-csd.xml,
doc/xml/pi-getram.xml, doc/xml/pi-getrom.xml,
doc/xml/pi-getromtoken.xml, doc/xml/pi-nredir.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-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, doc/xml/reminders.xml,
libpisock/darwinusb.c, libpisync/sync.c, libpisync/util.c,
m4/socklen.m4, src/debugsh.c, src/dlpsh.c, src/pilot-debugsh.c,
src/pilot-dlpsh.c, src/hinotes.c, src/ietf2datebook.PL,
src/install-datebook.c, src/install-expenses.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/kittykiller.c, src/memos.c, src/pd-tty.c, src/pi-csd.c,
src/pi-getram.c, src/pi-getrom.c, src/pi-getromtoken.c,
src/pi-nredir.c, src/pi-port.c, src/pilot-addresses.c,
src/pilot-clip.c, src/pilot-csd.c, src/pilot-debug.c,
src/pilot-dedupe.c, src/pilot-file.c, src/pilot-foto-treo600.c,
src/pilot-foto.c, src/pilot-getram.c, src/pilot-getrom.c,
src/pilot-getromtoken.c, src/pilot-hinotes.c,
src/pilot-ietf2datebook.pl, 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-todo.c, src/pilot-install-todos.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-read-palmpix.c, src/pilot-read-screenshot.c,
src/pilot-read-todos.c, src/pilot-read-veo.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,
src/read-palmpix.c, src/read-screenshot.c, src/read-todos.c,
src/read-veo.c, src/reminders.c, src/userland.c,
tests/dlp-test.c, tests/vfs-test.c: Correcting FSF permanent
address in all source files to bring to current.
This is also reflected in the following GNOME bug entry:
http://mail.gnome.org/archives/gtk-devel-list/2006-March/msg00087.html
2006-05-31 13:49 desrod
* include/: pi-dlp.h, pi-file.h, pi-syspkt.h, pi-threadsafe.h,
pi-versamail.h: Oops, forgot to commit these with the last batch.
Good catch, Nicholas!
2006-05-24 14:49 desrod
* libpisock/: dlp.c, expense.c, hinote.c, palmpix.c, pi-file.c,
socket.c, syspkt.c, utils.c, versamail.c: Bunchafixes here, code
cleanup, var renames, some oddball code taken out, fixing up some
globals and other obvious faux pas.
2006-05-09 16:19 desrod
* libpisock/serial.c: Minor fix where s_poll returns 0 on success,
and the previous behavior would assume the packet was dropped.
2006-04-22 11:47 desrod
* src/pilot-xfer.c: Just adding some notes, so I don't forget what
needs to be added in the next point release.
2006-04-14 14:52 desrod
* libpisock/libusb.c: Applied patch from Jijun Yu, fixes issue
#1578
2006-04-14 14:50 desrod
* libpisock/socket.c: Clean up empty else clause
2006-04-14 14:47 desrod
* src/pilot-clip.c: Reformatting and some type renaming to avoid
shadowing globals
2006-04-14 14:46 desrod
* src/: pi-getrom.c, pilot-getrom.c: Just some minor (very minor)
reformatting of the output.
2006-04-14 14:43 desrod
* src/pilot-addresses.c: Added code to exit (for now) when an OS5
device is found.
2006-04-14 14:42 desrod
* src/: pilot-sync-plan.pl, sync-plan.PL: Aaron's patch for bug
1535. Thanks Aaron!
2006-04-14 13:16 desrod
* include/pi-userland.h, libpisock/socket.c, src/memos.c,
src/pilot-memos.c, src/pilot-schlep.c, src/pi-nredir.c,
src/pilot-nredir.c, src/pilot-xfer.c: Minor cleanup to fix some
small buglets and warnings. No Breakage++
2006-04-05 14:18 desrod
* configure.ac: Minor fix when checking xslt in a CVS checked-out
tree
2006-03-30 14:38 desrod
* include/pi-socket.h: Minor typo fixed up
2006-03-30 14:26 desrod
* include/pi-dlp.h: Minor doc cleanup, fixes doxygen output buglet
2006-03-24 15:11 desrod
* bindings/Python/: NEWS, README, src/pisock.py, src/pisock_wrap.c:
Some cleanup in the Python tree
2006-03-24 15:02 desrod
* configure.ac, m4/python.m4: A better, cleaner, smaller Python
check. This time we check if the user passes --with-python, THEN
check for Python.h, so we can build the extension. If Python.h is
NOT found, we disable python, even if the user passes the option
to flag it on.
2006-03-24 14:45 neilw
* ChangeLog, doc/xml/pilot-schlep.xml: Fix bug 1545, pilot-schlep
summary
2006-03-24 14:24 neilw
* ChangeLog, src/memos.c, src/pilot-memos.c: fix typo
2006-03-24 13:11 desrod
* ChangeLog: Updated ChangeLog
2006-03-24 12:58 desrod
* configure.ac, m4/python.m4: Minor fix for python to check for
Python.h when python is flagged on
2006-03-17 00:10 desrod
* src/pilot-sync-plan.pl, src/sync-plan.PL, bindings/Makefile.am:
These slipped through the cracks.. (thanks Aaron for catching me
asleep at the wheel again =)
2006-03-15 07:44 desrod
* bindings/Perl/: Makefile.PL.in, Pilot.pm, Pilot.xs: Forgot that
these needed to go with the others. DOH!
2006-03-14 12:43 desrod
* ChangeLog, configure.ac: Rolling up ChangeLog and configure.ac in
prep for a 0.12.0 final release
2006-03-14 12:19 desrod
* bindings/Java/: MidiMgr.java, test.java,
org/gnu/pilotlink/Record.java: Some minor Java fixes. This needs
a revisit, there are quite a few places in here where some OOP
constructs could keep things much cleaner.
2006-03-14 11:34 neilw
* ChangeLog, configure.ac: Use CVS check instead of file check for
manpage build
2006-03-14 10:58 desrod
* configure.ac, bindings/Perl/h2xs-pilot-link, m4/xslt.m4: Fixes
for userland conduits, xsltproc checks, and a big Perl commit
(thanks Aaron!)
2006-02-27 18:22 neilw
* ChangeLog: ChangeLog
2006-02-27 18:13 neilw
* doc/xml/: README, debugsh.xml, dlpsh.xml, hinotes.xml,
install-datebook.xml, install-expenses.xml, install-hinote.xml,
install-memo.xml, install-netsync.xml, install-todo.xml,
install-todos.xml, install-user.xml, memos.xml, pi-csd.xml,
pi-getram.xml, pi-getrom.xml, pi-getromtoken.xml, pi-nredir.xml,
pilot-addresses.xml, pilot-archive.xml, pilot-clip.xml,
pilot-csd.xml, pilot-debugsh.xml, pilot-dedupe.xml,
pilot-dlpsh.xml, pilot-file.xml, pilot-foto.xml,
pilot-getram.xml, pilot-getrom.xml, pilot-getromtoken.xml,
pilot-hinotes.xml, pilot-install-datebook.xml,
pilot-install-expenses.xml, pilot-install-hinote.xml,
pilot-install-memo.xml, pilot-install-netsync.xml,
pilot-install-todo.xml, pilot-install-todos.xml,
pilot-install-user.xml, pilot-memos.xml, pilot-nredir.xml,
pilot-read-expenses.xml, pilot-read-ical.xml,
pilot-read-notepad.xml, pilot-read-palmpix.xml,
pilot-read-screenshot.xml, pilot-read-todos.xml,
pilot-read-veo.xml, pilot-reminders.xml, pilot-schlep.xml,
pilot-treofoto.xml, pilot-wav.xml, pilot-xfer.xml,
read-expenses.xml, read-ical.xml, read-notepad.xml,
read-palmpix.xml, read-screenshot.xml, read-todos.xml,
read-veo.xml, reminders.xml: Update options list handling in each
manpage to a more consistent formatting.
2006-02-27 18:10 neilw