docs: library: Update changelog and version number to 1.1.9

This commit is contained in:
Antonio Niño Díaz 2025-03-26 18:11:06 +00:00
parent 2089aab7f9
commit f834dd6bcb
2 changed files with 5 additions and 4 deletions

View File

@ -1,11 +1,12 @@
NightFox's Lib Ver. DEV NightFox's Lib Ver. 1.1.9
----------------------- -------------------------
- The devkitARM makefiles have been removed as they only work with old versions - The devkitARM makefiles have been removed as they only work with old versions
of devkitARM, which aren't supported by its maintainers. The code and examples of devkitARM, which aren't supported by its maintainers. The code and examples
of NFLib will probably need changes to work with current devkitARM. of NFLib will probably need changes to work with current devkitARM.
- In all scripts to convert assets, check if the environment variable - In all scripts to convert assets, check if the environment variable
``BLOCKSDS`` is set, which overrides the default path. ``BLOCKSDS`` is set, which overrides the default path.
- Build library with debug symbols to help debug applications that use it.
NightFox's Lib Ver. 1.1.8 NightFox's Lib Ver. 1.1.8
------------------------- -------------------------

View File

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