All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Fixed Issue #6 with
when defined(windows)
instead of usingdistros.detectOs(Windows)
.
- Changed return type of
getAssetToByteSeq
fromstring
to the correctseq[byte]
- Removed
distros
fordetectOs(Windows)
since it caused issues.
- Add support for encoding asset to seq[byte]
- Add zstd compression
- Add zstd and base64 combined encoding (zstd -> byteArrayToString -> base64)
- Minor formatting. Removed trailing whitespace from generated assetfile.
- New testcase for the fast version of the bundler
- This changelog
- The MIT LICENSE file that was mentioned in the .nimble file
- A simple test inside the tests directory
- Nimble tasks that will be executed before
nimble test
to generate the assetfile to be tested.
- The generated assetfile now uses the
[]=
operator instead of.add
for registering assets in the internal table since.add
for tables has been deprecated since Nim 1.4 - Examples now live inside the
examples
directory - The binary will now be built using the -d:release flag
- Initial Release