Releases: retrozinndev/JSONutils
v0.2.1 beta
This update features:
Resume
Makes use of a single JSON object queue, in JSONBuilder class instead of having two of them in JSON and JSONBuilder classes. Also removes the unnecessary writeFile()
function from JSONBuilder, makes use of the new writeJSON(File)
function, which the File
input is the output file directory as a File class instance.
Commits
- 💥 fix: javadoc syntax issues by @retrozinndev in #7
- perf: use single queue instead of two by @retrozinndev in #8
- 💥 fix: return a File instead of null by @retrozinndev in #9
Full Changelog: v0.2.0-beta...v0.2.1-beta
v0.2.0 beta
This update features:
Resume
This update adds full functionality for writing and reading JSON files and makes necessary functions centralized in the JSON class.
Functionalities
- Added "daily" usage functions to the JSON class;
- Added JSONReader class, with the necessary functions for reading JSONs;
- Modified documentations, for better explanation of the Libraries main functions.
Commits
- ✨ feat: add JSONReader features and bug fixes by @retrozinndev in #3
- 📚️ docs: add new examples and better explanation by @retrozinndev in #1
Full Changelog: v0.1.0-alpha...v0.2.0-beta
v0.1.0 alpha
JSONutils just updated!
This release features:
Library's code
JSONBuilder.newVariable()
function adds a variable to a HashMap queue;JSON.getQueuedChanges()
returns queued variables;JSON.toMap()
returns the JSON file variables as a HashMap;JSON.writeModifications()
used in JSONBuilder.makeJSON() to write queued changes to a file.JSONBuilder.makeJSON()
finalizes a JSONBuilder line, creating a new JSON file with everything you added in builder. e.g.:newVariable("name", "value")
.
Library's JavaDoc
- Better language inside the JavaDoc;
- New documentations in new functions.
Full Changelog: v0.0.1-alpha.1...v0.1.0-alpha
v0.0.1-alpha
JSONutils first pre-release!
Library is still in development, not all features are included yet.
Features:
- Creates empty JSON file with body
- Adds JSON and JSONBuilder classes.
Full Changelog: https://github.com/retrozinndev/JSONutils/commits/v0.0.1
Know Java? Help me code JSONutils!