-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
179 lines (109 loc) · 4.89 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
2024-03-12 Enrico Schumann <[email protected]>
* DESCRIPTION (Suggests): add tinytest
2024-01-31 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.5-0
* NAMESPACE (cleanOrg): no longer export function
2018-03-20 Enrico Schumann <[email protected]>
* R/toOrg.R (cleanOrg): add function
2019-04-02 Enrico Schumann <[email protected]>
* R/toOrg.R (readOrg): when a table specified via
'table.name' is not found, the function now returns
'NULL'. To get the previous behaviour (throwing an
error), specify the new argument 'table.missing' to
"stop"
2017-06-30 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.4-2
* R/toOrg.R (readOrg): new argument 'text', as
in 'read.table'. It allows to write (small)
inline tables as in
data <- readOrg(text =
"
| when | amount |
|------------+--------|
| 2016-01-01 | -1 |
| 2016-02-01 | 2 |
| 2016-03-01 | -2 |
"
2017-03-21 Enrico Schumann <[email protected]>
* DESCRIPTION (Suggests): add RUnit package
(Version): 0.4-0
* vignettes/orgutils_examples.Rnw: add vignette
2017-03-20 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.2-3
* man/toOrg.Rd: document 'toOrg.POSIXt'
2017-02-27 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.2-2
* R/toOrg.R (readOrg): fixed -- argument 'dec'
had been ignored
2017-01-25 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.2-1
* R/toOrg.R (toOrg.POSIXt): new method, which
works for both 'POSIXct' and 'POSIXlt'
2016-12-16 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.2-0
* DESCRIPTION (Package): rename package to
'orgutils'
2016-11-21 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.1-8
* NAMESPACE: explicitly import 'read.csv' from
package 'utils'
* inst/unitTests/ut_readOrg.R: add test cases
for empty files and header-only files
2016-11-02 Enrico Schumann <[email protected]>
* R/toOrg.R (toOrg.Date): fixed -- active
timestamps were not correctly formated
2016-09-06 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.1-7
* R/toOrg.R (readOrg): fixed --
'stringsAsFactors' could not passed; it is now
an explicit argument
* inst/unitTests/runTests.R: fix path to unit
tests; call report 'test_results.txt'
2016-03-15 Enrico Schumann <[email protected]>
* R/toOrg.R (toOrg.data.frame): 'row.names' can
be a character string
2016-03-15 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.1-6
* R/toOrg.R (toOrg.data.frame): new argument
'row.names'
* inst/unitTests/ut_toOrg.R: add tests for
'toOrg'
2016-03-02 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.1-5
* R/toOrg.R (readOrg): horizontal separator
lines, i.e. those starting with '|-', are now
skipped.
2016-02-29 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.1-4
* R/toOrg.R (toOrg.data.frame): fixed -- Dates
are now explicitly coerced to character
2016-02-05 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.1-3
* R/toOrg.R (toOrg.data.frame): fixed -- factor
columns are now converted to character before
they are converted to org markup (not doing so
had caused their column names become NA)
2016-01-07 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.1-2
* R/toOrg.R (readOrg): stop when 'table.name'
is not unique in the org file
* inst/unitTests/ut_readOrg.R (test.readOrg):
added unit tests
2015-12-03 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.1-1
* R/toOrg.R (toOrg.Date): new method
2015-12-03 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.1-0
* R/toOrg.R (readOrg): argument 'table.name' is
now supported: when provided, the function will
look for a table that begins with '#+NAME:
table.name' in the specified org-file
2015-10-28 Enrico Schumann <[email protected]>
* NAMESPACE: import 'trim' from package 'textutils'
2015-04-21 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.0-2
* man/toOrg.Rd: updated documentation
2015-04-15 Enrico Schumann <[email protected]>
* DESCRIPTION (Version): 0.0-1
* R/toOrg.R (readOrg): new function
(toOrg): new generic; a method for data.frames exists