- Removed
CaretSeparatedText
in favor ofCST
class - Due to technical reasons, .NET Standard Standard support was removed
- Parser function can now be consumed from non-.NET programming languages.
- Support for .NET 8
- Properly commented and documented the rest of the code.
This version supports both .NET Standard 2.1 and .NET 6 and brings with it (much needed) quality of life changes internally. Apart from that, nothing has changed to the API itself apart from much needed documentation.
Based on FreeSO's API, the UIText
class allows for traversing in /<directory>/<language>.dir
directories and searching CST files by their Id number. (e.g. _154_miscstrings.cst). By defualt, the base path is /<program directory>/uitext/<language>.dir
. You may also create your own implementation based on these APIs using the IUIText
interface which mine also uses.
For more info, see usage.md.
- Minor patch.
- Backport switch to CSTNet namespace
- Internal improvements.
- Fixed the multiple line parsing in the v2 format.
- Replaced "
[ENTRY NOT FOUND]
" message with "***MISSING***
".
Despite only being a patch release, this includes a major refinement to the normalizing algorithm.
The normalizing algorithm has been rewritten to be more efficient and hopefully more reliable. The new algorithm de-constructs each line after converting it to the system's native line ending. Then it searches for the key and returns value. The rewrite also normalizes line endings to match the system's within the entry itself before returning the final output. This should make things more stable and predictable.
- Skipping comments is still a little buggy.
- Multiline parsing with the v2 format is still a little unpredictable.
- Initial release.