properties 0.4.4 copy "properties: ^0.4.4" to clipboard
properties: ^0.4.4 copied to clipboard

outdatedDart 1 only

A simple library to manage properties file (and something more) in Dart

0.4.4 - 16-03-2013
Added new named constructor fromMap.
Added getList method to get a list out of a property's value.
Now every method returns a Properties instance instead of a Map.
Minor code improvements.
Minor doc improvements.

0.4.3 - 12-03-2013
Added support for defaults (value and key) on getter methods.
Added property updated event support.
Now events may be enabled/disabled.
Some minor, implementation fixes.


0.4.2 - 03-03-2013
Minor fixes.
Added two new methods to get integer and double out of a property.


0.4.1 - 02-03-2013
Project structure refactoring in order to be published with PUB.


0.4.0 - 27-02-2013

- the method everyKey() is now every() and may optionally filter on property's value too;
- added AddEvent? class, extending PropertiesEvent?, having key and value properties set to the corresponding values of the newly added property;
- add key has now an additional optional parameter to decide whether to overwrite existing property, if any;
- improved doc and tests.


0.3.0 - 20-02-2013

- addFromXXX methods have been renamed into mergeXXX, giving the user the capability to choose whether to overwrite or keep existing matching properties:

// dinamically merge properties from input Properties object into the 
// current instance's properties, without overwriting eventually existing properties
p.merge(anotherPropertiesInstance, false);

// dinamically merge properties from input JSON object into the 
// current instance's properties, overwriting existing ones
p.mergeJSON('{"test.key.3":"value 3","test.key.4":"value 4"}', true);

- added very simple event management: now one may listen to "add property" events triggered when a new property is added at runtime

p.onAdd.listen((PropertiesEvent e) => print("Received: " + e.type));


0.2.0 - 17-02-2013

Added some tools to work with JSON objects too

// create a new instance from a JSON map
Properties p = new Properties.fromJSON(jsonMap);

// export the (whole) content as a JSON map
p.toJSON(prefix:"keyprefix", suffix:"keysuffix");

// dinamically add new properties to the current instance from JSON
p.addFromJSON('{"test.key.3":"value 3","test.key.4":"value 4"}');


0.1.0 - 16-02-2013

First release: basic tools, support for plain old properties files. 
9
likes
0
pub points
86%
popularity

Publisher

verified publisherintinio.com

A simple library to manage properties file (and something more) in Dart

Homepage

License

unknown (license)

Dependencies

unittest

More

Packages that depend on properties