Skip to content

Commit

Permalink
docs: library: Update changelog and bump version to 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioND committed Jul 6, 2024
1 parent d892d6c commit 50437c3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
NightFox's Lib Ver. 1.1.4
-------------------------

- Fix "\n" not working in NF_WriteText() and NF_WriteText16().
- Stop documenting old extensions of custom maps and fonts, use the default grit
extensions instead.

NightFox's Lib Ver. 1.1.3
-------------------------

Expand Down
4 changes: 2 additions & 2 deletions include/nf_lib.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 (3)
#define NF_LIB_PATCH (4)

/// 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.3"
#define NF_LIB_VERSION_STRING "1.1.4"

#endif // NF_LIB_H__

Expand Down

0 comments on commit 50437c3

Please sign in to comment.