-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathChangeLog
More file actions
1416 lines (808 loc) · 29.4 KB
/
ChangeLog
File metadata and controls
1416 lines (808 loc) · 29.4 KB
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
2018-06-19 16:48 warnes
* DESCRIPTION, NAMESPACE: Update DESCRIPTION and NAMESPACE for
gtools 3.8.0.
2018-06-19 16:43 warnes
* R/split_path.R, man/split_path.Rd: Add spit_path() function.
2018-06-19 16:43 warnes
* R/baseOf.R, man/baseOf.Rd: Improvements to baseOf() function.
2017-08-23 23:03 warnes
* R/baseOf.R, man/baseOf.Rd: Add `baseOf` function and
documentation to support updated `gplots::venn` function.
(Provided by Steffen Möller.)
2017-08-23 22:59 warnes
* R/roman2int.R, R/setTCPNoDelay.R: Use correct 'PACKAGE='
parameter to '.C' calls.
2017-06-14 19:44 warnes
* inst/ChangeLog, inst/NEWS: Update NEWS and ChangeLog
2017-06-14 19:42 warnes
* DESCRIPTION, NAMESPACE, R/checkRVersion.R,
R/newVersionAvailable.R, R/roman2int.R, R/setTCPNoDelay.R,
man/combinations.Rd, man/defmacro.Rd, src/gtools.h,
src/gtools_load.c, src/setTCPNoDelay.c,
tests/test_setTCPNoDelay.R: Explicitly register C routines used
by gtools
2017-06-13 00:16 warnes
* man/combinations.Rd, man/defmacro.Rd: Update R News URLS
2017-06-12 23:30 warnes
* man/capwords.Rd: Update link for taxise::taxize_capwords in
gtools::capwords man page
2017-06-12 23:28 warnes
* inst/ChangeLog: Fix typos
2017-06-12 23:28 warnes
* man/capwords.Rd: Update link for taxise::taxize_capwords in
gtools::capwords man page
2017-06-12 23:21 warnes
* DESCRIPTION, NAMESPACE, inst/ChangeLog, inst/NEWS: Update meta
files for gtools 3.7.0
2017-06-12 22:53 warnes
* tests/smartbind_emptynames.R: Fix test for smartbind with empty
column names
2017-06-12 22:52 warnes
* man/setTCPNoDelay.Rd, tests/test_setTCPNoDelay.R: Add improved
example to man page for setTCPnoDelat() and fix test function.
2017-06-12 22:51 warnes
* man/ask.Rd: Add 'con' argument to ask() to allow specification of
the connection to query for input.
2017-06-12 22:49 warnes
* R/capwords.R, man/capwords.Rd: Add capwords() function to apply
standard capitalization rules to a scharacter string.
2017-05-23 15:55 warnes
* R/ask.R, R/quantcut.R, R/smartbind.R: - Integrate changes made by
Mango Solutions at https://github.com/MangoTheCat/SASxport.
- Remove functions duplicated from the Hmisc package.
- Minor code cleanup.
2016-08-24 19:48 warnes
* tests/test_setTCPNoDelay.R: Add more testing code.
2016-08-15 19:17 warnes
* inst/ChangeLog: Update ChangeLog
2016-08-15 19:16 warnes
* DESCRIPTION: Update version number and date
2016-08-15 19:14 warnes
* tests/test_setTCPNoDelay.R: Add test code for setTCPNoDelay
2016-08-15 19:14 warnes
* R/setTCPNoDelay.R: Modify setTCPNoDelay to work with current
socket objects
2016-08-15 19:13 warnes
* src/setTCPNoDelay.c: checkStatus() was not correctly getting the
error message.
2016-04-22 16:10 warnes
* NAMESPACE, R/capwords.R, man/capwords.Rd: Add capwords() function
to properly capatilize strings for use in titles
2016-04-22 16:08 warnes
* R/na.replace.R, man/na.replace.Rd: na.replace() now accepts a
function providing the replcement value.
2015-11-24 17:58 warnes
* R/smartbind.R: Correct error when column types don't match
(reported by
2015-10-15 21:15 warnes
* R/smartbind.R: smartbind() was not properly handling columsn that
were numeric on one df and character in the other and other
similar ctype conflicts. Fixed.
2015-08-08 05:01 warnes
* tests/smartbind_emptynames.R: Add half-hearted test file
2015-08-08 03:14 warnes
* R/smartbind.R: - Improve assignment of default names in
smartbind.
- Disambiguate 'list' into an object named 'list' and the
function
base::list() in smartbind().
2015-08-08 01:47 warnes
* DESCRIPTION, man/smartbind.Rd: Add example of using 'list'
argument to smartbind() man page.
2015-08-08 01:44 warnes
* R/smartbind.R, man/smartbind.Rd: - smartbind() gets a new
argument 'list' to pass a list of data
frames, instead of/in addition to data frames as arguments.
- Fix bug in smartbind's handling of factor levels.
2015-07-14 21:19 warnes
* R/loadedPackages.R, man/loadedPackages.Rd: Modify
loadedPackages() to return data silently so that the results
don't get printed twice.
2015-05-27 17:01 warnes
* data/badDend.rda, man/badDend.Rd, man/unByteCode.Rd: Create local
dataset to use in the example code for unByteCode instead of
relying on web access.
2015-05-27 16:38 warnes
* R/trimws.R: Fix missing closing paren.
2015-05-27 16:36 warnes
* R/keywords.R, R/roman2int.R, R/trim.R, R/trimws.R: Two functions
in gtools need to use either gdata::trim() or
base::trimws() (added in R 3.2.0). The previous solution was to
include gdata/R/gdata/R/trim.R in gtools using a symbolic link.
Unfortunately, Rforge doesn't seem to like the symbolic link when
building packages, and generates an error.
So, instead, create the file trimws.R, which creates trimws() if
it
isn't already available (e.g. via base::trimws), and modify
keywords()
and roman2int() to use trimws() instead of gdata::trim().
2015-05-27 02:48 warnes
* man/roman2int.Rd: Add man page for roman2int().
2015-05-27 02:29 warnes
* man/mixedsort.Rd: Remove extraneous closing paren.
2015-05-27 02:26 warnes
* NAMESPACE: Add roman2int() to exported function list.
2015-05-27 02:26 warnes
* R/asc.R: Looks like we also lost the change of argument name to
chr(). Fixed.
2015-05-27 02:23 warnes
* R/asc.R: Somehow lost 'simplify=TRUE' argument to asc. Fixed.
2015-05-27 02:19 warnes
* DESCRIPTION: Update gtools version number to 3.5.0
2015-05-27 02:17 warnes
* DESCRIPTION, inst/ChangeLog, inst/NEWS: Update DESCRIPTION,
ChangeLog, NEWS
2015-05-27 01:37 warnes
* R/mixedsort.R, man/mixedsort.Rd: Add roman numeral support to
mixedorder() and mixedsort().
2015-05-27 00:21 warnes
* man/asc.Rd: Add asc() and chr() functions for converting between
characters and ASCII codes
2015-05-27 00:20 warnes
* R/roman2int.R: roman2int() now returns NA for invalid roman
numeral strings instead of generating an error.
2015-05-27 00:19 warnes
* NAMESPACE: Add asc(), chr(), assignEdgewise(), unByteCode(), and
unByteCodeAssign() to package NAMESPACE.
2015-05-27 00:17 warnes
* R/asc.R: Add asc() and chr() functions for converting between
characters and ASCII codes
2015-05-26 16:22 warnes
* inst/ChangeLog: Add changelog to svn repository
2015-05-25 14:30 warnes
* tests/test_ddirichlet.R: Add library call.
2015-05-25 14:29 warnes
* man/unByteCode.Rd: Fix typo and add documentation for argument
'name'.
2015-05-25 14:29 warnes
* man/mixedsort.Rd: Fix typo.
2015-05-25 14:16 warnes
* man/mixedsort.Rd: Add description of blanklast argument, fix
typo.
2015-05-25 14:13 warnes
* man/quantcut.Rd: Change usage to match actual definition.
2015-05-25 14:10 warnes
* man/mixedsort.Rd: Note characters sorting ignores case.
2015-05-25 14:08 warnes
* man/mixedsort.Rd: Remove '...' from arglist to match source code.
2015-05-25 14:05 warnes
* man/mixedsort.Rd: Replace unicode quotes with \code{..}.
2015-05-23 22:21 warnes
* tests/test_ddirichlet.R: Add regression test ddirichlet() bug for
x[i]=0, alpha[i]=1:
ddirichlet(x, alpha) was returning NA rather than 0.
2015-05-23 22:12 warnes
* R/dirichlet.R: ddirichlet() was incorrectly returning NA when
x[i]=0 and
alpha[i]=1. In this case, the one calculation became (-Inf * 0),
which R evaluates to NaN. The correction is to detect this case
and
substitute -Inf instead of NaN.
2015-05-08 22:49 warnes
* R/mixedsort.R: Summary: Speed up mixedorder by moving
suppressWarnings outside of
lapply loops. (Suggestion by Henrik Bengtsson.)
2015-05-02 17:38 warnes
* Rename 'trunk' to 'pkg' for compatibility with R-forge
2015-05-02 13:50 warnes
* Minor layout change.
2015-05-02 13:48 warnes
* Remove stray 'svn' that was inserted into the code.
2015-05-02 13:47 warnes
* Add man page for unByteCode(), assignEdgeWise(), and
unByteCodeAssign()
2015-04-28 04:27 warnes
* Changes to mixedsort():
- Hands off objects that are not character vectors to the default
sort.
- Add 'decreasing', 'na.last', and 'blank.last' arguments.
2015-04-28 04:16 warnes
* Add private function 'checkReverseDependencies'.
2015-04-23 21:53 warnes
* Update NEWS and ChangeLog
2015-04-23 21:47 warnes
* - The 'q' argument to quantcut()'s 'q' now accept an integer
indicating the number of equally spaced quantile groups to
create. (Suggestion and patch submitted by Ryan C. Thompson.)
2015-04-23 21:10 warnes
* Revers accidental text deletion:
2015-04-23 21:09 warnes
* Update for gtools 3.4.3
2015-04-23 21:06 warnes
* Remove debugging code and stray browser() call
2015-04-14 19:39 warnes
* Fix typo
2015-04-09 19:46 warnes
* Update gtools ChangeLog
2015-04-09 19:45 warnes
* Move first()/last()/left()/right() to gdata.
Add new functions na.replace() and loadedPackages().
Add more text to package description.
2015-04-08 19:55 warnes
* Move first/last/left/right to from gtools to gdata
2015-04-06 22:09 warnes
* Correct URL
2015-04-06 22:04 warnes
* Update NEWS and ChangeLog for gtools 3.5.0
2015-04-06 21:52 warnes
* Add ChangeLog files to repository
2015-04-06 21:44 warnes
* Implement fix to keywords() needed for R-3.4.1, as suggested by
Kurt
Hornik.
2015-04-06 21:40 warnes
* - Export S3 methods for first(), last(), left() and right().
- Ensure code matches man page for first(), last(), left(), and
right().
2014-10-09 18:56 warnes
* Update for 3.5.0 release of gtools
2014-10-09 18:52 warnes
* Make right() and left() S3 methods for classes data.frame and
matrix
2014-08-27 00:44 warnes
* Fix man page
2014-08-27 00:36 warnes
* Finish adding first(), last(), left(), and right().
2014-08-27 00:12 warnes
* Add functions first(), last(), left(), and right().
2014-05-28 00:24 warnes
* Update for gtools 3.4.1
2014-05-28 00:18 warnes
* Add test to ensure smartbind() properly handles Date columns.
2014-05-28 00:14 warnes
* smartbind: Convert non-native type columns (except factor) to
character.
2014-04-18 18:11 arnima
* Main arg is 'x' like showNonASCII(x), preformatted notes instead
of verb
2014-04-17 17:33 warnes
* Update ASCIIfy man page to match source code and add keywords
2014-04-17 17:25 warnes
* Update NEWS for gtools 3.4.0
2014-04-17 16:56 warnes
* Add ASCIIfy function posted to RDevel by Arni Magnusson
2014-03-01 20:15 warnes
* Fix cut-and-paste error.
2014-03-01 20:12 warnes
* Update files for gtools 3.3.1 release
2014-03-01 20:02 warnes
* Fix bug in gtools::mixedorder regular expression for regognizing
numbers. (Periods weren't escaped).
2014-02-11 17:44 warnes
* Create and use locate copy of tools:::.split_op_version.
2014-02-11 17:25 warnes
* Update for gtools 3.3.0.
2014-02-11 17:19 warnes
* Fix arguments
2014-02-11 17:17 warnes
* Update arguments to match code.
2014-02-11 17:14 warnes
* Add getDependencies() function to return a list of package
dependencies.
2014-01-14 19:43 warnes
* Update for bug-fix release
2014-01-14 19:37 warnes
* Add test file for binsearch() function.
2014-01-14 15:56 warnes
* Fixed bug where binsearch() returned the wrong endpoint & value
when the found value was at the upper endpoint.
2014-01-13 18:16 warnes
* Fix typo
2014-01-11 23:39 warnes
* Update for gtools release 3.2.0
2014-01-11 23:38 warnes
* fixes for R CMD check
2014-01-11 23:24 warnes
* Fixes for gtools release 3.2.0
2013-12-23 18:48 warnes
* Extend the keywords() function to return keywords associated with
a specified topic via 'keywords(topic)'.
2013-12-23 16:08 warnes
* Add keyword.
2013-12-23 16:04 warnes
* Add stars.pval() function to convert p-values into significance
symbols.
2013-11-26 14:38 warnes
* mixedorder() was failing to correctly handle numbers including
decimals due to a faulty regular expression. Prior to the fix:
> drr
[1] "Dose 0.3 mg" "Dose 0.04 mg" "Dose 0.5 mg"
> gtools::mixedsort(drr)
[1] "Dose 0.3 mg" "Dose 0.04 mg" "Dose 0.5 mg"
After the fix:
> drr
[1] "Dose 0.3 mg" "Dose 0.04 mg" "Dose 0.5 mg"
> mixedsort(drr)
[1] "Dose 0.04 mg" "Dose 0.3 mg" "Dose 0.5 mg"
In addition, an optimization was added that checked if the input
vector
was numeric. If so, simply use the existing base::order function.
2013-11-18 16:06 warnes
* Use ".Deprecated" instead of warning.
2013-11-06 14:53 warnes
* Update files for gtools 3.1.1
2013-11-06 14:51 warnes
* Fix problem with mixedorder/mixedsort when there is only zero or
one elements in the vector.
2013-09-23 15:46 warnes
* Comment out empty sections in gtools-deprecated.Rd
2013-09-23 15:41 warnes
* Update files for gtools 3.1.0 release
2013-09-23 15:37 warnes
* Make 'addLast()' defunct.
2013-09-23 15:29 warnes
* Mark 'addLast()' as defunct and move 'lastAdd()' function to a
separate file.
2013-09-23 15:23 warnes
* Update for gtools 3.0.1 release
2013-09-23 15:19 warnes
* Use 'suppressWarnings() instead of 'options(warn=-1)' in
'mixedorder()'.
2013-07-07 00:11 warnes
* Fix typo.
2013-07-06 23:55 warnes
* Fix Rd warning.
2013-07-06 23:49 warnes
* Include lastAdd in NAMESPACE
2013-07-06 23:46 warnes
* Change assert from deprecated to defunct.
2013-07-06 23:45 warnes
* Improve deprecation message
2013-07-06 23:43 warnes
* Update for gtools 3.0.0
2013-07-06 23:26 warnes
* Create new function lastAdd to replace addLast and mark addLast
as deprecated.
2013-07-05 23:48 warnes
* Point out that addLast() modifies the value of .Last in the
global environment.
2013-07-05 23:47 warnes
* Point out that addLast() modifies the value of .Last in the
global environment.
2013-07-05 23:34 warnes
* Update for gtools 2.7.2 mark 2
2013-07-05 23:33 warnes
* Remove cross-reference to (obsolete?) moc package
2013-07-05 17:31 warnes
* Update for gtools 2.7.2
2013-07-05 17:29 warnes
* Update for R version 3.0.0 and later
2013-03-17 02:21 warnes
* Fix error in smartbind: factor levels were not being handled if
the factor column was not present in the first data frame.
2012-06-19 19:00 warnes
* Update for gtools 2.7.0.
2012-06-19 14:00 warnes
* Document new 'verbose' argument to smartbind().
2012-06-19 13:56 warnes
* Clean up R CMD check warnings.
2012-05-04 16:06 warnes
* smartbind(): Improve handling of factors and ordered factors.
2011-10-05 17:05 warnes
* Update version number for release
2011-10-05 16:53 warnes
* Add 'sep' argument to smartbind() to allow specification of
character used to separate components of constructed names
2011-09-28 22:56 warnes
* smartbind(): Prevent coersion to data frame from mangling column
names.
2011-09-28 22:53 warnes
* Add 'fill' argument to smartbind() to specify a value to use for
missing entries.
2011-09-28 22:53 warnes
* Add 'fill' argument to smartbind() to specify a value to use for
missing entries.
2010-08-14 19:28 warnes
* Modify mixedorder()/mixedsort() to better handle strings
containing multiple periods, like version numbers (e.g 1.1.2,
1.2.1. 1.1.1.1).
2010-05-01 22:14 warnes
* Update version number for new release
2010-05-01 22:03 warnes
* Change Greg's email address to greg@warnes.net
2010-05-01 21:59 warnes
* Fix error in checkRVersion()
2010-04-28 17:23 ggrothendieck2
* fixed problems with R CMD CHECK
2009-05-09 03:35 warnes
* Escape $ in .Rd file to avoid latex issues
2009-05-09 03:26 warnes
* Update NEWS and create softlinks for NEWS and ChangeLog in top
level directory
2009-05-09 03:15 warnes
* Move actual NEWS file into inst.
2009-05-09 03:13 warnes
* Update Greg's email address and fix Rd syntax errors
2009-02-16 15:34 warnes
* Correct windows make flags as suggested by Brian Ripley.
2008-08-15 13:15 warnes
* Add keywords() function to show /doc/KEYWORDS file
2008-05-29 23:19 warnes
* Add newVersionAvailable() function to compare running and latest
available R versions
2008-05-26 19:15 warnes
* Update license specification
2008-05-26 15:04 warnes
* Remove 'assert' man page
2008-05-22 16:40 warnes
* Finish rename of assert.R to assert-depricated.Rd
2008-05-22 16:35 warnes
* Add checkRVersion.R file
2008-05-22 16:34 warnes
* Rename again to get correct extension!
2008-05-22 16:30 warnes
* Update NEWS for 2.5.0
2008-05-22 16:17 warnes
* Add man page for checkRVersion
2008-05-22 16:16 warnes
* Rename assert-deprecated.R to assert.R to meet R file name
requirements.
2008-05-22 16:15 warnes
* Add checkRVersion to NAMESPACE, and increment version in
DESCRIPTION.
2008-05-22 16:14 warnes
* Remove broken SEE LSO reference
2008-04-12 19:42 warnes
* Improve text explanation of how defmacro() and strmacro() differ
from
function().
2008-04-12 19:19 warnes
* assert() is now deprecated in favor of base::stopifnot()
2008-04-12 19:19 warnes
* Rename 'assert.R' to 'deprecated.R'.
2008-04-12 19:14 warnes
* Assert is now deprecated in favor of base::stopifnot(), so add
call to
.Deprecated() to inform the user.
2007-11-30 18:05 warnes
* Update defnitions of odd() and even() to use modulus operator
instead of division. Prettier, I think, :-D
2007-08-08 13:52 warnes
* Fix bug identified by R-2.6's check routings in binsearch()
2007-08-08 13:48 warnes
* Add the binsearch(), previously in the genetics package.
2007-07-18 11:48 ggorjan
* typo fixed
2007-04-12 21:16 warnes
* Add ask() function to prompt the user and collect a single
response.
2007-04-07 13:41 warnes
* Fix improper escapes in regexp detected by R 2.5.0 package check.
2007-03-23 22:53 warnes
* Allow permutations for r>n provided repeats.allowed=TRUE
2006-11-28 00:53 warnes
* Replace F with FALSE in smartbind example.
2006-11-27 22:42 warnes
* Replace T with TRUE in smartbind example
2006-11-27 21:40 warnes
* Temprary remove to reset binary flag
2006-11-27 21:40 warnes
* Temprary remove to reset binary flag
2006-11-27 21:34 warnes
* Add smartbind() to list of exported functions, and add
corresponding
documentation file.
2006-11-27 20:52 warnes
* Update my email address
2006-11-14 22:25 ggorjan
* Removed executable property
2006-08-02 22:21 warnes
* Update my email address
2006-05-05 18:13 nj7w
* Fixed minor typo - in {value} - n was replaced by r
2006-05-05 16:55 nj7w
* Fixed minor typos
2006-03-01 19:12 warnes
* Add smartbind function
2006-01-18 16:28 warnes
* Add concept tags to make mixedsort easier to locate.
2005-12-21 15:23 warnes
* Update version number and date
2005-12-21 06:11 warnes
* Note changes for 2.2.3
2005-12-21 06:08 warnes
* Should now work on Windows
2005-12-20 20:25 warnes
* Temporary fix to allow setTCPNoDelay.c to compile on Windows. If
compiled on windows calling setTCPNoDelay will just raise an
error.
2005-12-14 15:48 warnes
* Change C++ comment to standard comment
2005-12-13 16:19 nj7w
* *** empty log message ***
2005-12-13 16:18 nj7w
* Updated NEWS and removed ChangeLog
2005-12-12 22:10 nj7w
* Updated version for CRAN release
2005-12-08 20:21 warnes
* Add C source code for setTCPNoDelay.
2005-12-01 16:54 nj7w
* Updated Greg's email address
2005-11-29 22:30 warnes
* Add UseDynLib to NAMESPACE so the shared library gets properly
loaded.
2005-11-29 22:25 warnes
* - Remove debugging comments
- Change return value on success to "Success".
2005-11-22 22:54 warnes
* NAMESPACE
2005-11-22 22:54 warnes
* Update news for 2.2.1 release.
2005-11-22 22:51 warnes
* Fixes for R CMD check
2005-11-22 22:31 warnes
* Add setTCPNoDelay() function and documentation
2005-11-22 15:46 warnes
* New function 'addLast' that adds functions to R's .Last() so that
they will be executed when R is terminating.
2005-09-22 18:12 warnes
* More changes for strmacro(), also changes for 2.1.1 release
2005-09-22 17:26 warnes
* Add strmaco() which defines functions that use strings for macro
definition
2005-09-21 18:51 warnes
* Add support for DOTS/... arguments to defmacro
2005-09-12 15:44 nj7w
* Updated Greg's email
2005-09-02 22:53 nj7w
* Exported assert
2005-09-02 22:53 nj7w
* Updated the version number
2005-09-02 22:52 nj7w
* Added NEWS
2005-09-02 22:52 nj7w
* Added ChangeLog
2005-09-02 22:51 nj7w
* Fixed syntax errors
2005-09-02 16:43 warnes
* Add assert() and documentation
2005-09-02 16:28 warnes
* Fix problem in defmacro.Rd file: don't use \code{} in the example
section.
2005-08-31 20:00 warnes