Skip to content

Commit

Permalink
Lime 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
metayeti committed Aug 14, 2023
1 parent 5b4d6b3 commit e30bd54
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
1 change: 0 additions & 1 deletion BUGS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@

1. Relative paths don't work as expected.
2. Empty categories (without keys) leads to vector overflow.
3. Help shows wrong delimiters in chksum help page
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
## 1.0.1 (August 14, 2023)
- Updates zlib and SFML for Windows builds.
- `BUGFIX` Fixes delimiters in "chksum" help page.

## 1.0.0 (November 11, 2019)
- 1.0.0 released
- 1.0.0 released
4 changes: 2 additions & 2 deletions lime/src/const.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@

namespace Lime
{
const std::string LIME_VERSION = "1.0.0";
const std::string LIME_COPYRIGHT_YEAR = "2019";
const std::string LIME_VERSION = "1.0.1";
const std::string LIME_COPYRIGHT_YEAR = "2023";
const std::string LIME_COPYRIGHT_AUTHOR = "Danijel Durakovic";

// format revision number
Expand Down
4 changes: 2 additions & 2 deletions lime/src/lime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ int main(int argc, char* argv[])
<< "A checksum is attached to each user resource and is used for data integrity\n"
<< "check. Adler32 is faster and slightly less reliable than CRC32.\n\n"
<< "The type of the checksum function is implicitly defined by the bgn and end\n"
<< "endpoints in the Lime datafile. Adler32 will use LM> and <LM, CRC32 will\n"
<< "use LM] and [LM, and a file with no checksums will use LM) and (LM.\n\n"
<< "endpoints in the Lime datafile. Adler32 will use L> and <M, CRC32 will\n"
<< "use L] and [M, and a file with no checksums will use L) and (M.\n\n"
<< "Regardless of the checksum function used (or not used), you can skip data\n"
<< "integrity check when unpacking the file if you so desire.\n\n"
<< "Usage: -chksum=[adler32|crc32|none]\n\n"
Expand Down

0 comments on commit e30bd54

Please sign in to comment.