diff --git a/changelog.txt b/changelog.txt index 741b4aa..5774a7d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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. diff --git a/include/nf_lib.h b/include/nf_lib.h index 4861e8b..106b29c 100644 --- a/include/nf_lib.h +++ b/include/nf_lib.h @@ -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__