docs: library: Update version to 1.1.1

This commit is contained in:
Antonio Niño Díaz 2024-01-28 02:45:31 +00:00
parent 06557f1773
commit 30bdb320c8
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
NightFox's Lib Ver. 1.1.1
--------------------------------------------------------------------------------
- Support files with the default extensions generated by grit instead of the old
custom extensions of NFlib (img, pal, map instead of fnt, dat and cmp).
NightFox's Lib Ver. 1.1.0
--------------------------------------------------------------------------------
- Translate examples comments in library to English.

View File

@ -33,13 +33,13 @@ extern "C" {
/// Minor version of NightFox's Lib
#define NF_LIB_MINOR (1)
/// Patch version of NightFox's Lib
#define NF_LIB_PATCH (0)
#define NF_LIB_PATCH (1)
/// Full version of NightFox's Lib
#define NF_LIB_VERSION ((NF_LIB_MAJOR << 16) | (NF_LIB_MINOR << 8) | (NF_LIB_PATCH))
/// String with the version of NightFox's Lib
#define NF_LIB_VERSION_STRING "1.1.0"
#define NF_LIB_VERSION_STRING "1.1.1"
#endif // NF_LIB_H__