-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathChangeLog
140 lines (85 loc) · 4.11 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
2020-07-17 Li Jianfeng <[email protected]>
* add filename check
2018-11-13 Li Jianfeng <[email protected]>
* add params global.vars.field
2018-09-19 Li Jianfeng <[email protected]>
* fix failed names selectioon in config.help
2018-06-22 Li Jianfeng <[email protected]>
* add function str2config in R/read.R
* add function config.help in R/help.R
2018-05-29 Li Jianfeng <[email protected]>
* fix warning in extra.list parse using latest stringi
2018-05-03 Li Jianfeng <[email protected]>
* update vignettes theme
2018-02-26 Li Jianfeng <[email protected]>
* prevent run attr() on NULL object
* use python toml to write TOML file
2017-12-04 Li Jianfeng <[email protected]>
* update README.md
* update document
2017-12-04 Li Jianfeng <[email protected]>
* fetch.config can pass paraters to read.config
2017-11-28 Li Jianfeng <[email protected]>
* is.*.file only return TRUE or FALSE
2017-11-21 Li Jianfeng <[email protected]>
* fetch.config be added in R/fetch.R
2017-07-18 Li Jianfeng <[email protected]>
* parameter 'sections' be added in R/write.R 'write.config'
* a new function 'config.sections.del' be added in R/del.R
2017-06-22 Li Jianfeng <[email protected]>
* glue parse be supported in R/parse.R
* bash.parse and glue.parse added in R/read.R
* Reduce README.md and two vignettes be added in vignettes
2017-05-23 Li Jianfeng <[email protected]>
* Add file.type parameter in read.config function
* bash.cmd.parse be supported (#># echo bash #<#)
2017-05-07 Li Jianfeng <[email protected]>
* Add a more complicated example in inst/extdata/config.toml
* rcmd.parse becoming more user friendly in TOML configuration file
* {{key:value}} can be paresed by extra.list eg. extra.list=list('key:value'=123)
2017-04-30 Li Jianfeng <[email protected]>
* {{key@}} can be recognition
* Rename eval.config.groups to eval.config.sections
* eval.config.merge parameter groups change to sections
2017-04-10 Li Jianfeng <[email protected]>
* Add EOF flag when write a JSON format configuration file
2017-03-23 Li Jianfeng <[email protected]>
* %'% in configuration when rcmd.parse=TRUE, can be parsed to double
quote that can to avoid double quote escape which can raise error
2017-03-17 Li Jianfeng <[email protected]>
* 0.2.1 release
* '@>@ R statement @<@' in config can be paresed in parse.extra(rcmd.parse =
TRUE)
* Fix mulitple var parse in parse.R parse.config
2017-03-09 Li Jianfeng <[email protected]>
* 0.2.0 release
* Add parse.extra example in read.config and eval.config
2017-03-07 Li Jianfeng <[email protected]>
* Add parse.extra function in R/parse.R
* Import stringr
* Change tests output format
2017-02-14 Li Jianfeng <[email protected]>
* Use RcppTOML 0.1.1
2017-02-04 Li Jianfeng <[email protected]>
* Cancel import config package
2017-01-29 Li Jianfeng <[email protected]>
* Cancel import stringr package
2017-01-22 Li Jianfeng <[email protected]>
* Cancel import futile.logger package
2017-01-20 Li Jianfeng <[email protected]>
* Add is.configfile.active/is.config.active in R/active.R
* Change the default paramerter of configuration file to
Sys.getenv("R_CONFIGFILE_ACTIVE", "config.cfg")
2017-01-19 Li Jianfeng <[email protected]>
* json.file.debug/ini.file.debug/yaml.file.debug/toml.file.debug be
added in is.*.file function family that can show the error message
of the configuration file, which can be used in 'configr' most other function
* Add config.error.json/config.error.yaml/config.error.ini/config.error.toml
in inst/extdata as the test file that all of them have be modified as
non-standard format(JSON/INI/YAML/TOML) configuration files
* Add additional tests for code coverage
* Rename inst/config.yml to inst/config.yaml
2017-01-17 Li Jianfeng <[email protected]>
* Add TOML parse (RcppTOML)
* Add convert.config function in R/convert.R
* Use '...' as the parameter rather than 'encoding' only