-
-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix handling of `name=value` selectors for root arrays [#64](mikee47/ConfigDB#64) Support conversion of named selector into range [#65](mikee47/ConfigDB#65) * Allows item deletion using `"x[name=object 1]": []` syntax Add `ExportOptions` [#68](mikee47/ConfigDB#68) Allows `pretty` to be configured on a per-stream basis. Add optional `useName`, `asObject` flags.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule ConfigDB
updated
22 files
+75 −4 | README.rst | |
+6 −5 | src/Database.cpp | |
+11 −8 | src/Json/Format.cpp | |
+22 −12 | src/Json/Printer.cpp | |
+5 −4 | src/Json/Printer.h | |
+19 −10 | src/Json/ReadStream.cpp | |
+9 −5 | src/Json/ReadStream.h | |
+11 −4 | src/Json/WriteStream.cpp | |
+3 −4 | src/Object.cpp | |
+18 −5 | src/include/ConfigDB/Database.h | |
+40 −4 | src/include/ConfigDB/Format.h | |
+5 −12 | src/include/ConfigDB/Json/Format.h | |
+40 −5 | src/include/ConfigDB/Object.h | |
+2 −2 | src/include/ConfigDB/Store.h | |
+1 −1 | test/README.rst | |
+4 −1 | test/app/application.cpp | |
+8 −0 | test/include/ConfigDBTest.h | |
+36 −33 | test/include/array-test.h | |
+75 −3 | test/modules/Streaming.cpp | |
+18 −2 | test/resource/array-test.json | |
+1 −1 | test/resource/database1.json | |
+27 −10 | test/tools/array-test.py |