Skip to content

Commit

Permalink
docs: library: Update changelog and version number to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioND committed Nov 16, 2023
1 parent 5c0ae4a commit edc0326
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
NightFox's Lib Ver. 1.1.0
--------------------------------------------------------------------------------
- Translate examples comments in library to English.
- Cleanup examples and library files.
- Improve deletion code of 3D sprites
- Update BlocksDS makefiles.
- A few minor fixes.


NightFox's Lib Ver. 1.0.0
--------------------------------------------------------------------------------
- Add original assets and conversion scripts to all examples.
Expand Down
4 changes: 2 additions & 2 deletions include/nf_lib.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ extern "C" {
/// Major version of NightFox's Lib
#define NF_LIB_MAJOR (1)
/// Minor version of NightFox's Lib
#define NF_LIB_MINOR (0)
#define NF_LIB_MINOR (1)
/// Patch version of NightFox's Lib
#define NF_LIB_PATCH (0)

/// 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.0.0"
#define NF_LIB_VERSION_STRING "1.1.0"

#endif // NF_LIB_H__

Expand Down

0 comments on commit edc0326

Please sign in to comment.