-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
1775 lines (1081 loc) · 45.6 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
2021-01-26 09:20 xguerin
* Miscellanous updates for v1.2.3:
- Added a conanfile
- Remove miscellaneous compilation warnings
2017-12-26 14:30 macbishop
* Bugfix release for 1.2 branch (v1.2.2):
- Fixed a few typos
- Fixed ZshCompletionOutput
- Fixed brief output with TCLAP_NAMESTRING defined
- Initialize theDelimiter (supress warning) in DocBookOutput
- Fixed an issue with config.h and compiling on systems
without sstream.h
- Fixed } outside of include guards in ArgTraits.h
2011-04-10 17:08 mes5k
* include/tclap/Arg.h: patch that allows arg start strings to be
pound defined to easily conform to different platforms
2011-04-09 11:58 mes5k
* docs/Makefile.am: being slightly more precise about what we clean
2011-04-09 11:30 mes5k
* include/tclap/: DocBookOutput.h, StdOutput.h,
ZshCompletionOutput.h: fixed shadow variable name problem
2011-04-09 11:05 mes5k
* include/tclap/CmdLine.h: fixed minor memory leak
2011-03-15 04:26 macbishop
* configure.in, config/ac_cxx_warn_effective_cxx.m4: Check if
compiler supports Weffec++ and if so use it (fixes compilation
issue with e.g. SunStudio compiler)
2011-01-15 09:45 macbishop
* include/tclap/ArgTraits.h: Updated documentation for ArgTraits to
reference StringLike and ValueLike classes.
2011-01-15 09:32 macbishop
* examples/test10.cpp: Added explicit cast to supress warning about
deprecated conversion from string constant to char*
2011-01-02 17:18 mes5k
* docs/Makefile.am: now using a slightly different variable for doc
install to support out-of-tree builds
2011-01-02 16:37 mes5k
* configure.in: bumped version number to 1.2.1
2011-01-02 16:30 mes5k
* docs/style.css: tweaked style so it doesn't blink
2011-01-02 16:21 mes5k
* tests/: test57.out, test57.sh, test76.out: tweaked tests to
reflect fix for mutually exclusive switches
2011-01-02 16:20 mes5k
* include/tclap/: SwitchArg.h, XorHandler.h: finally fixed bug
relating to mutually exclusive combined switched
2011-01-02 15:12 mes5k
* include/tclap/Arg.h: minor reformat
2011-01-02 15:10 mes5k
* include/tclap/CmdLine.h: minor reformatting
2011-01-02 12:13 mes5k
* examples/Makefile.am, examples/test20.cpp, tests/Makefile.am,
tests/test74.out, tests/test74.sh, tests/test75.out,
tests/test75.sh, tests/test76.out, tests/test76.sh,
tests/test77.out, tests/test77.sh: added failing tests for XOR
error message bug
2011-01-02 11:52 mes5k
* include/tclap/StandardTraits.h: applied Tom Fogal's win64 patch
for size_t
2011-01-02 11:38 mes5k
* docs/Makefile.am: hopefully fixed out-of-tree doc installation
2011-01-02 10:50 mes5k
* include/tclap/: Arg.h, ArgTraits.h, CmdLine.h, HelpVisitor.h,
MultiArg.h, ValueArg.h, ValuesConstraint.h, VersionVisitor.h,
XorHandler.h, ZshCompletionOutput.h: fixed all effective c++
warnings based on patch from Andrew Marlow
2010-12-06 22:41 mes5k
* configure.in: added more compiler warnings
2009-10-24 20:49 mes5k
* include/tclap/SwitchArg.h, include/tclap/ValueArg.h,
tests/test22.out, tests/test24.out: make error message a bit more
meaningful
2009-10-23 14:42 mes5k
* include/tclap/StandardTraits.h: added a check for wchar_t to deal
with a potential problem with MS compilers
2009-09-28 11:28 mes5k
* docs/index.html: updated for 1.2.0
2009-09-26 14:41 mes5k
* docs/Makefile.am: another update to support older automake
2009-09-26 14:23 mes5k
* docs/Makefile.am: removed an errant space
2009-09-26 14:15 mes5k
* docs/Makefile.am: added a definition for docdir, which doesnt
exist for old versions of automake
2009-09-26 14:02 mes5k
* docs/Makefile.am: corrected the doc install directory structure
2009-09-26 13:55 mes5k
* NEWS: updated for 1.2.0
2009-09-26 13:53 mes5k
* docs/: manual.html, manual.xml: updated for 1.2.0 including text
on ArgTraits
2009-08-22 12:26 mes5k
* Makefile.am, configure.in, tclap.pc.in, docs/Makefile.am,
examples/Makefile.am: applying patches to make gnu compiler args
conditional, to install docs, and to add pkgconfig support to the
installation
2009-07-28 12:49 mes5k
* configure.in, tests/Makefile.am, tests/test73.out,
tests/test73.sh: added test 73 based on bug reported by user
2009-07-15 08:09 mes5k
* include/tclap/UnlabeledValueArg.h: updated incorrect api docs
again
2009-07-15 08:04 mes5k
* include/tclap/UnlabeledValueArg.h: updated incorrect api doc
2009-01-09 16:10 mes5k
* AUTHORS: added author
2009-01-09 16:05 mes5k
* include/tclap/: Arg.h, CmdLine.h, CmdLineInterface.h, MultiArg.h,
MultiSwitchArg.h, SwitchArg.h, ValueArg.h: added support for
resetting a command line
2008-11-07 12:04 mes5k
* docs/manual.html, docs/manual.xml, examples/Makefile.am,
examples/test19.cpp, include/tclap/Arg.h, tests/Makefile.am,
tests/test29.out, tests/test29.sh, tests/test71.out,
tests/test71.sh, tests/test72.out, tests/test72.sh: added support
for parsing hex and octal ints as well as small fix to support
gcc 4.4
2008-09-10 11:29 mes5k
* docs/manual.xml: updated note on xor
2008-09-10 11:21 mes5k
* docs/manual.xml: added note on xor
2008-08-19 15:18 zeekec
* examples/test18.cpp, include/tclap/CmdLine.h, tests/Makefile.am,
tests/test70.out, tests/test70.sh: Rethrow ExitExceptions if
we're not handling exceptions.
2008-08-19 14:52 zeekec
* include/tclap/Arg.h: Silence some compiler warnings. The const
on return-by-value is ignored.
2008-07-21 10:20 zeekec
* include/tclap/CmdLine.h, examples/Makefile.am,
examples/test18.cpp, tests/Makefile.am, tests/test69.out,
tests/test69.sh: Allow internal handling of parse errors to be
turned off. This allows exceptions for parse errors to be
propagated to the caller. Exiting the program in parse is a bad
idea generally, as we have no way of knowing what cleanup needs
to be done in the main program.
2008-06-17 09:48 mes5k
* include/tclap/StdOutput.h: bug in while loop
2008-05-23 15:15 mes5k
* include/tclap/: CmdLine.h, SwitchArg.h: added length checks to
strings that can otherwise break with Metroworks compilers
2008-05-21 14:21 macbishop
* examples/: Makefile.am, test17-a.cpp, test17.cpp: Added test that
tclap does not define any hard symbols (bug 1907017)
2008-05-13 12:04 mes5k
* include/tclap/CmdLine.h: added a new include to support exit in
environments where it isnt defined
2008-05-05 23:02 mes5k
* examples/test7.cpp, include/tclap/Arg.h, tests/test46.out:
tweaked tests to support dashes in arg names
2008-05-05 22:28 mes5k
* include/tclap/Arg.h: allowed dash char in arg names
2008-01-18 15:05 zeekec
* include/tclap/Makefile.am: Added Traits files to the list of
files to be installed.
2007-10-09 11:18 macbishop
* examples/test14.cpp, examples/test15.cpp, examples/test16.cpp,
include/tclap/Arg.h, include/tclap/ArgTraits.h,
include/tclap/StandardTraits.h, configure.in,
config/ac_cxx_have_long_long.m4, examples/Makefile.am:
Refactoring of the arg-traits functionality. The purpose is to
make it easier to make you own classes, and types defined in the
standard library work well with tclap. I'll try to write up some
documenation of how to achieve this as-well.
2007-10-01 23:33 mes5k
* examples/test13.cpp: added attribution
2007-10-01 23:30 mes5k
* examples/test13.cpp: fixed a warning message
2007-10-01 23:27 mes5k
* examples/Makefile.am, examples/test13.cpp,
include/tclap/SwitchArg.h, tests/Makefile.am, tests/test68.out,
tests/test68.sh: a bug fix for parsing vectors of strings and
making sure that combined switches dont get confused
2007-09-27 13:49 mes5k
* include/tclap/OptionalUnlabeledTracker.h: added inline
2007-09-12 19:09 mes5k
* include/tclap/Arg.h, tests/test42.out, tests/test54.out: fixed
the delimiter in Arg::longID and Arg::shortID
2007-09-01 01:17 macbishop
* examples/Makefile.am, include/tclap/Arg.h,
include/tclap/DocBookOutput.h,
include/tclap/ZshCompletionOutput.h: Suppress some warnings,
compile with -Wextra by default
2007-06-14 14:02 macbishop
* include/tclap/Arg.h, include/tclap/MultiArg.h,
include/tclap/ValueArg.h, tests/runtests.sh, tests/test63.out,
tests/test63.sh, tests/test64.out, tests/test64.sh,
tests/test65.out, tests/test65.sh, tests/test66.out,
tests/test66.sh, tests/test67.out, tests/test67.sh,
tests/testCheck.sh, examples/Makefile.am, examples/test11.cpp,
examples/test12.cpp: Use ArgTraits instead of ValueExtractor
specialization Bug 1711487
2007-05-02 13:11 macbishop
* examples/Makefile.am, examples/test10.cpp,
include/tclap/CmdLine.h, include/tclap/CmdLineInterface.h: Run
CmdLine::parse with argv as pointer to const pointer to const
char
2007-04-20 22:28 mes5k
* include/tclap/Arg.h, tests/test18.out: changed the blankChar to
the bell character instead of *
2007-03-04 11:28 mes5k
* examples/test4.cpp, include/tclap/DocBookOutput.h,
include/tclap/Makefile.am, include/tclap/ZshCompletionOutput.h:
added patches for ZSH and DocBook output
2007-03-04 11:08 mes5k
* include/tclap/: CmdLine.h, CmdLineInterface.h: added a new parse
method that accepts a vector
2007-02-17 06:59 macbishop
* include/tclap/: MultiArg.h, MultiSwitchArg.h,
UnlabeledMultiArg.h, UnlabeledValueArg.h, ValueArg.h: Supressed
some warnings
2007-02-17 06:59 macbishop
* include/tclap/CmdLine.h: Catch ExitException and exit. This
allows all resources used during parsing to be released, bug
1662188.
2007-02-17 06:57 macbishop
* include/tclap/: DocBookOutput.h, HelpVisitor.h, StdOutput.h,
VersionVisitor.h: raise ExitException instead of calling exit
2007-02-17 06:54 macbishop
* include/tclap/ArgException.h: Added exit-exception class
2007-02-17 06:52 macbishop
* tests/testCheck.sh: Exit with exit status 1 if a test fails
(required by runtests.sh)
2007-02-17 06:52 macbishop
* tests/runtests.sh: Run the correct tests (not 0)
2007-02-17 06:51 macbishop
* examples/: test4.cpp, test7.cpp: Supressed warnings
2007-02-07 18:12 mes5k
* include/tclap/StdOutput.h: minor change to support a bug in
VisualC++ 2005
2006-11-26 10:42 mes5k
* docs/: README, manual.html, manual.xml: updated docs to reflect
that Output must handle the exit rather than the CmdLine object
2006-11-26 10:32 mes5k
* include/tclap/: CmdLine.h, DocBookOutput.h, StdOutput.h: moved
exit from CmdLine to StdOutput to provide users more control over
when/how the exit happens
2006-11-26 10:29 mes5k
* examples/test4.cpp: added exit() to failure method
2006-11-26 10:13 mes5k
* docs/: manual.html, manual.xml: fixed typo in SwitchArg
constructors
2006-11-04 14:05 mes5k
* include/tclap/CmdLine.h, tests/Makefile.am, tests/test10.out,
tests/test17.out, tests/test4.out, tests/test51.out,
tests/test62.out, tests/test62.sh: printing more useful message
when missing required args and catching ArgException reference
2006-10-06 09:49 mes5k
* include/tclap/SwitchArg.h, tests/Makefile.am, tests/test61.out,
tests/test61.sh: made a fix for a bug where - chars were within
unlabeled value args
2006-08-21 23:13 mes5k
* include/tclap/StdOutput.h: minor tweak to a min function
signature
2006-08-18 20:05 mes5k
* docs/index.html: updated for 1.1.0
2006-08-18 20:04 mes5k
* AUTHORS: new author
2006-05-14 17:55 mes5k
* config/Makefile.am: so that m4 macros will be included in release
files to ease incorporation of tclap in other projects
2006-05-14 17:36 mes5k
* include/tclap/CmdLine.h: removed a deprecated constructor
2006-05-14 17:35 mes5k
* docs/: manual.xml, manual.html: manual update
2006-05-14 13:11 mes5k
* Makefile.am, configure.in: added m4 macros to help others
distributing the software and updated the version number
2006-05-14 12:52 mes5k
* config/bb_enable_doxygen.m4: for some reason, the AS_HELP_STRING
function was messing up autoconf 2.57 -- maybe that's just an old
version? We can change it back as necessary
2006-05-14 12:51 mes5k
* examples/test8.cpp, include/tclap/SwitchArg.h: SwitchArg
interface change
2006-04-18 03:59 macbishop
* docs/: manual.html, manual.xml: Updated the example
2006-04-05 23:44 mes5k
* include/tclap/ArgException.h: patch for a mem leak in
ArgException
2006-03-18 11:16 mes5k
* include/tclap/: CmdLineOutput.h, Visitor.h: added virtual
destructors
2006-02-21 18:15 zeekec
* examples/: test1.cpp, test2.cpp, test3.cpp, test4.cpp, test5.cpp,
test6.cpp, test7.cpp, test8.cpp, test9.cpp: Use local header
files first instead of installed headers.
2006-02-21 18:12 zeekec
* Makefile.am: Added ACLOCAL_AMFLAGS for autoreconf.
2006-02-21 18:10 zeekec
* config/: ac_cxx_have_sstream.m4, ac_cxx_have_strstream.m4: Moved
the requires, header check, and language save and restore outside
of the cache check.
2006-02-21 04:00 zeekec
* config/: stamp-h.in, stamp-h1: Removed timestamp files (generated
by configure).
2006-02-21 03:05 zeekec
* include/tclap/Constraint.h: Added virtual destructor to silence
warnings.
2006-02-21 03:01 zeekec
* ChangeLog: Generated with cvs2cl.
2005-09-10 16:25 mes5k
* config/stamp-h1, examples/test2.cpp, examples/test3.cpp,
examples/test5.cpp, examples/test8.cpp, include/tclap/Arg.h,
include/tclap/CmdLine.h, include/tclap/MultiArg.h,
include/tclap/StdOutput.h, include/tclap/UnlabeledMultiArg.h,
include/tclap/UnlabeledValueArg.h, include/tclap/ValueArg.h,
include/tclap/XorHandler.h: added gcc warning patch
2005-07-12 20:36 zeekec
* examples/Makefile.am: Set INCLUDES to top_srcdir for out of
source builds.
2005-07-12 20:33 zeekec
* include/tclap/: UnlabeledMultiArg.h, UnlabeledValueArg.h: Add
using toString statements (for gcc >= 3.4).
2005-07-12 20:31 zeekec
* config/bb_enable_doxygen.m4: Properly quote BB_ENABLE_DOXYGEN.
2005-06-29 15:04 mes5k
* include/tclap/Arg.h: merged some new changes
2005-06-08 08:28 mes5k
* docs/index.html: fixed spelling mistake
2005-06-02 19:35 mes5k
* include/tclap/: Makefile.am, OptionalUnlabeledTracker.h,
UnlabeledMultiArg.h, UnlabeledValueArg.h: fix to handle optional
unlabeled args
2005-06-02 19:33 mes5k
* examples/: test2.cpp, test3.cpp, test7.cpp, test8.cpp, test9.cpp:
Unlabeled changes
2005-02-03 15:04 mes5k
* include/tclap/: Arg.h, DocBookOutput.h, MultiArg.h: updated
docbook output
2005-02-03 08:08 mes5k
* include/tclap/: ValuesConstraint.h, XorHandler.h: add std::
prefix to some finds
2005-02-01 13:35 zeekec
* include/tclap/CmdLine.h: Made deleteOnExit's protected to
facilitate derivation.
2005-02-01 13:30 zeekec
* config/config.h.in: Removed autotools generated file.
2005-01-28 13:26 zeekec
* configure.in, docs/Doxyfile.in, tests/Makefile.am,
tests/test1.sh, tests/test10.sh, tests/test11.sh,
tests/test12.sh, tests/test13.sh, tests/test14.sh,
tests/test15.sh, tests/test16.sh, tests/test17.sh,
tests/test18.sh, tests/test19.sh, tests/test2.sh,
tests/test20.sh, tests/test21.sh, tests/test22.sh,
tests/test23.sh, tests/test24.sh, tests/test25.sh,
tests/test26.sh, tests/test27.sh, tests/test28.sh,
tests/test29.sh, tests/test3.sh, tests/test30.sh,
tests/test31.sh, tests/test32.sh, tests/test33.sh,
tests/test34.sh, tests/test35.sh, tests/test36.sh,
tests/test37.sh, tests/test38.sh, tests/test39.sh,
tests/test4.sh, tests/test40.sh, tests/test41.sh,
tests/test42.sh, tests/test43.sh, tests/test44.sh,
tests/test45.sh, tests/test46.sh, tests/test47.sh,
tests/test48.sh, tests/test49.sh, tests/test5.sh,
tests/test50.sh, tests/test51.sh, tests/test52.sh,
tests/test53.sh, tests/test54.sh, tests/test55.sh,
tests/test56.sh, tests/test57.sh, tests/test58.sh,
tests/test59.sh, tests/test6.sh, tests/test60.sh, tests/test7.sh,
tests/test8.sh, tests/test9.sh: Made changes to directory
references to allow out of source builds.
2005-01-26 10:25 mes5k
* aclocal.m4: doh
2005-01-23 19:18 mes5k
* include/tclap/CmdLine.h: removed -v from version switch
2005-01-23 19:14 mes5k
* include/tclap/Arg.h: removed value required
2005-01-23 19:03 mes5k
* examples/: test2.cpp, test3.cpp, test6.cpp, test8.cpp, test9.cpp:
UnlabeledValueArg change
2005-01-23 19:02 mes5k
* tests/: test10.out, test11.out, test12.out, test15.out,
test16.out, test17.out, test22.out, test23.out, test24.out,
test26.out, test27.out, test28.out, test29.out, test30.out,
test31.out, test32.out, test35.out, test36.out, test38.out,
test39.out, test4.out, test40.out, test41.out, test42.out,
test43.out, test44.out, test45.out, test46.out, test49.out,
test50.out, test51.out, test52.out, test53.out, test54.out,
test57.out, test59.out, test60.out, test7.out: new output for
default version and value required
2005-01-23 19:01 mes5k
* tests/: test59.sh, test8.sh: new style version and required
UnlabeledValueArgs
2005-01-23 18:59 mes5k
* tests/testCheck.sh: a script to compare test output
2005-01-23 17:54 mes5k
* include/tclap/UnlabeledValueArg.h: now optionally required
2005-01-23 16:33 mes5k
* tests/: test58.out, test59.out, test58.sh, test59.sh, test60.out,
test60.sh, Makefile.am: tests for MultiSwitchArg
2005-01-23 16:27 mes5k
* include/tclap/Makefile.am, examples/Makefile.am,
examples/test9.cpp: MultiSwitchArg
2005-01-23 16:26 mes5k
* include/tclap/: CmdLine.h, CmdLineInterface.h, StdOutput.h: added
a bool to the constructor that allows automatic -h and -v to be
turned off
2005-01-23 14:57 mes5k
* docs/: manual.html, manual.xml: added MultiSwitchArg docs
2005-01-23 14:33 mes5k
* include/tclap/MultiSwitchArg.h: fixed typo
2005-01-23 14:29 mes5k
* include/tclap/SwitchArg.h: Fixed minor bug involving combined
switch error messages: now they're consistent.
2005-01-23 14:28 mes5k
* include/tclap/MultiSwitchArg.h: initial checkin
2005-01-22 20:41 mes5k
* include/tclap/UnlabeledMultiArg.h: added alreadySet
2005-01-20 20:13 mes5k
* tests/Makefile.am: xor test
2005-01-20 20:04 mes5k
* examples/test5.cpp: change for xor bug
2005-01-20 20:04 mes5k
* tests/: test20.out, runtests.sh, test20.sh, test21.out,
test21.sh, test22.out, test23.out, test24.out, test25.out,
test25.sh, test33.out, test33.sh, test44.out, test57.out,
test57.sh: changes for xor bug
2005-01-20 20:03 mes5k
* include/tclap/: Arg.h, MultiArg.h, UnlabeledMultiArg.h,
XorHandler.h: fixed xor bug
2005-01-17 12:48 macbishop
* include/tclap/Arg.h: Removed check on description in
Arg::operator== since multiple args should be able to have the
same description.
2005-01-06 20:41 mes5k
* NEWS: updated for constraints
2005-01-06 20:37 mes5k
* docs/: manual.html, manual.xml: updated for constraints
2005-01-06 20:05 mes5k
* examples/test7.cpp: changed for constraint
2005-01-06 20:00 mes5k
* include/tclap/: MultiArg.h, ValueArg.h: fixed exceptions and
typeDesc for constraints
2005-01-06 19:59 mes5k
* tests/: test35.out, test36.out, test38.out, test39.out: changed
for constraints
2005-01-06 19:07 mes5k
* examples/test6.cpp: changed to constraint
2005-01-06 19:06 mes5k
* include/tclap/Makefile.am: added constraints
2005-01-06 19:05 mes5k
* include/tclap/: Constraint.h, ValuesConstraint.h: initial checkin
2005-01-06 19:05 mes5k
* include/tclap/StdOutput.h: comment change
2005-01-06 19:01 mes5k
* include/tclap/CmdLine.h: added Constraint includes
2005-01-06 18:55 mes5k
* include/tclap/: MultiArg.h, UnlabeledMultiArg.h,
UnlabeledValueArg.h, ValueArg.h: Changed allowedList to
Constraint
2005-01-05 16:08 mes5k
* configure.in: next vers
2005-01-05 12:13 mes5k
* NEWS: update
2005-01-05 10:51 mes5k
* docs/: manual.html, manual.xml: fixed output override bug
2005-01-05 10:45 mes5k
* tests/: test18.out, test43.out: change for output override bug
2005-01-05 10:28 mes5k
* examples/test4.cpp: fixed output override bug
2005-01-05 10:22 mes5k
* include/tclap/: CmdLine.h, HelpVisitor.h, VersionVisitor.h: fixed
output bug
2005-01-04 14:01 mes5k
* configure.in: 1.0.4
2005-01-04 13:16 mes5k
* examples/test7.cpp: changed for long prog names bug
2005-01-04 13:15 mes5k
* tests/: test38.out, test39.out, test46.out: changed test7 for
long prog names
2005-01-04 12:31 mes5k
* NEWS: updates for 1.0.3a
2005-01-04 12:21 mes5k
* docs/manual.html, docs/manual.xml, include/tclap/CmdLine.h: fixed
output memory leak
2004-12-08 21:10 mes5k
* include/tclap/StdOutput.h: hacky fix to long prog name bug
2004-12-07 19:57 mes5k
* configure.in: 1.0.3a
2004-12-07 19:53 mes5k
* tests/: Makefile.am, test15.out, test16.out, test17.out,
test31.out, test32.out, test13.sh, test14.sh, test15.sh,
test16.sh, test17.sh, test42.out, test55.out, test55.sh,
test56.out, test56.sh: updated for - arg bug
2004-12-07 19:51 mes5k
* examples/test3.cpp: tweaked to support tests for '-' arg bug
2004-12-07 18:16 mes5k
* include/tclap/Arg.h: fixed a bug involving blank _flags and - as
an UnlabeledValueArg
2004-12-03 12:19 mes5k
* docs/style.css: minor tweak for h1
2004-12-03 12:10 mes5k
* NEWS: update
2004-12-03 11:39 mes5k
* include/tclap/CmdLine.h: removed ostream include
2004-11-30 19:11 mes5k
* include/tclap/: Arg.h, CmdLine.h, CmdLineOutput.h, StdOutput.h:
cleaned up iterator names
2004-11-30 19:10 mes5k
* include/tclap/DocBookOutput.h: removed ostream
2004-11-30 18:35 mes5k
* configure.in, docs/Doxyfile.in: added dot check
2004-11-24 19:58 mes5k
* configure.in: 1.0.3
2004-11-24 19:57 mes5k
* include/tclap/: UnlabeledMultiArg.h, UnlabeledValueArg.h: removed
two stage lookup ifdefs
2004-11-24 19:56 mes5k
* docs/index.html: updated
2004-11-24 19:45 mes5k
* docs/: manual.html, manual.xml: updates for using stuff and new
output
2004-11-05 21:05 mes5k
* include/tclap/: DocBookOutput.h, Makefile.am: adding docbook
stuff
2004-11-04 21:07 mes5k
* examples/test4.cpp: reflects new output handling
2004-11-04 21:07 mes5k
* include/tclap/: Arg.h, CmdLine.h, CmdLineInterface.h,
CmdLineOutput.h, HelpVisitor.h, Makefile.am, StdOutput.h,
VersionVisitor.h, XorHandler.h: changed output around
2004-11-04 21:06 mes5k
* include/tclap/PrintSensibly.h: subsumed by StdOutput
2004-10-31 14:13 mes5k
* docs/manual.html: tweak
2004-10-30 15:58 mes5k
* NEWS, README: updates
2004-10-30 15:51 mes5k
* docs/Makefile.am: added manual.xml
2004-10-30 15:47 mes5k
* docs/: manual.html, manual.xml, style.css: minor tweaks
2004-10-30 15:34 mes5k
* configure.in: 1.0.2
2004-10-30 15:30 mes5k
* docs/README: init
2004-10-30 15:30 mes5k
* docs/style.css: new style
2004-10-30 15:30 mes5k
* docs/: manual.html, manual.xml: manual.html is now generated from
manual.xml
2004-10-30 15:26 mes5k
* include/tclap/: MultiArg.h, ValueArg.h: yet another fix for
HAVE_SSTREAM stuff
2004-10-30 08:42 mes5k
* NEWS: 1.0.1
2004-10-30 08:03 mes5k
* configure.in: new release
2004-10-28 09:41 mes5k
* include/tclap/: ValueArg.h, MultiArg.h: fixed config.h problems
2004-10-27 19:44 mes5k
* docs/manual.xml: manual as docbook
2004-10-22 08:56 mes5k
* docs/style.css: added visited color to links
2004-10-22 07:38 mes5k
* docs/index.html: fixed mailto
2004-10-21 18:58 mes5k
* docs/: manual.html: minor tweaks
2004-10-21 18:13 mes5k
* docs/manual.html: updated for new test1
2004-10-21 18:02 mes5k
* include/tclap/CmdLine.h: catch by ref
2004-10-21 18:01 mes5k
* examples/: test1.cpp, test2.cpp, test3.cpp, test4.cpp, test5.cpp,
test6.cpp, test7.cpp, test8.cpp: changed test1 and now catching
exceptions by ref
2004-10-21 17:38 mes5k
* tests/: test1.out, test1.sh, test2.out, test3.out, test3.sh,
test4.out, test40.out: changes for new test1
2004-10-21 15:50 mes5k
* examples/test1.cpp: fixed includes
2004-10-21 10:03 mes5k
* docs/index.html: changed link
2004-10-21 09:02 mes5k
* include/tclap/: ValueArg.h, MultiArg.h: changed enum names
because of alpha conflicts
2004-10-20 20:04 mes5k
* include/tclap/: CmdLine.h, CmdLineInterface.h, MultiArg.h,
PrintSensibly.h, SwitchArg.h, UnlabeledMultiArg.h,
UnlabeledValueArg.h, ValueArg.h, XorHandler.h: cleaned up some
includes and added ifdefs for sstream
2004-10-20 19:00 mes5k
* examples/test5.cpp: fixed a bizarre bug
2004-10-20 18:59 mes5k
* tests/: test20.out, test21.out, test25.out, test33.out: fixed a
test5 bug
2004-10-20 16:17 mes5k
* Makefile.am: added msc
2004-10-20 16:06 mes5k
* configure.in: added msc stuff
2004-10-20 16:05 mes5k
* msc/: examples/Makefile.am, Makefile.am: init
2004-10-20 16:00 mes5k
* NEWS: update
2004-10-20 15:58 mes5k
* msc/README: init
2004-10-20 15:47 mes5k
* msc/: tclap-beta.ncb, tclap-beta.sln, tclap-beta.suo,
tclap-beta.vcproj, examples/test1.vcproj, examples/test2.vcproj,
examples/test3.vcproj, examples/test4.vcproj,
examples/test5.vcproj, examples/test6.vcproj,
examples/test7.vcproj, examples/test8.vcproj: init
2004-10-19 11:18 mes5k