NEWS
GlobalOptions 0.1.2 (2020-06-10)
- '.DollarNames.GlobalOptionsFun' now only completes with public options
- adjust the print method
GlobalOptions 0.1.1 (2019-09-30)
- do not refresh if the value is not an executable function
GlobalOptions 0.1.0 (2018-06-09)
- add 'print.GlobalOptionsFun()' and 'dump_opt()'.
- add '.DollarNames.GlobalOptionsFun()' to allow auto completion after '$'.
- add '.v()' and '.v$..' to access other option values when configuring
current option.
- add 'set_opt()' to replace 'setGlobalOptions()'
- add 'ADD' argument in the option function to add new options after the
option function is created.
GlobalOptions 0.0.13 (2018-03-15)
- register S3 method in NAMESPACE
GlobalOptions 0.0.12 (2017-05-21)
GlobalOptions 0.0.11 (2017-03-06)
- improved docs
- opt$nm can be set to NULL now
- 'failed_msg' are wrapped
GlobalOptions 0.0.10 (2016-04-17)
- '$<-GlobalOptionsFun' are now invoked in right environment
GlobalOptions 0.0.9 (2016-03-19)
GlobalOptions 0.0.8 (2015-08-18)
- assign a class for the generated functions
- option value can be assigned by '$' symbol
GlobalOptions 0.0.6 (2015-01-29)
- re-construct by reference class
- default value for '.filter' and '.validate' are set to 'NULL'
- private value will not be reset if calling environment is not same as generating
environment
GlobalOptions 0.0.5 (2014-12-24)
- change interval options to '__generatedNamespace__'
GlobalOptions 0.0.4 (2014-12-02)
- completely replace 'is' with 'inherits'
GlobalOptions 0.0.3 (2014-11-03)
- remove dependency of 'methods' package
- 'value_fun' is deleted after setting every option
- function is attached to the value if option values is set as a dynamic function
so that opt(opt(READ.ONLY = FALSE)) will be correct if there are option values
set as dynamic functions.
GlobalOptions 0.0.2 (2014-10-07)
- use knitr to build the vignette.
- add .private and .visible fields for making options specification. Private options
can only be modified if the namespace in which the options function is generated and the
namespace where the options function is called is the same namespace. Invisible options
will not be returned when getting the option values.
GlobalOptions 0.0.1 (2014-09-16)