Skip to content

Commit

Permalink
docs: library: Update version to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioND committed Jan 28, 2024
1 parent 91abea3 commit 4d00664
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 7 deletions.
26 changes: 26 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
Changelog
=========

Version 0.10.0 (2024-01-28)
---------------------------

- Create variants of ``NE_Process()`` and ``NE_ProcessDual()`` that can pass an
argument to the screen draw callbacks.

- Add function to load textures in GRF format (BlocksDS only).

- Add functions to load compressed textures (Texel 4x4 format).

- Add examples to load assets from the filesystem, both in binary and GRF
function.

- Cleanup code style: Use stdint types, turn some functions ``static inline``...

- Remove unneeded call to ``DC_FlushAll()``.

- ``obj2dl``: Improve error message. Fix vertical coordinates being flipped.

- ``img2ds``: Deprecate it except for generating ``DEPTHBMP`` binaries.

- The makefile for BlocksDS now installs the tools to ``/opt/blockds/external``,
not only the library and headers.

- Migrate all examples to using ``grit`` instead of ``img2ds``.

Version 0.9.1 (2023-11-12)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion documentation/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ PROJECT_NAME = "Nitro Engine"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.9.1
PROJECT_NUMBER = 0.10.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
6 changes: 3 additions & 3 deletions include/NEMain.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ extern "C" {
/// Major version of Nitro Engine
#define NITRO_ENGINE_MAJOR (0)
/// Minor version of Nitro Engine
#define NITRO_ENGINE_MINOR (9)
#define NITRO_ENGINE_MINOR (10)
/// Patch version of Nitro Engine
#define NITRO_ENGINE_PATCH (1)
#define NITRO_ENGINE_PATCH (0)

/// Full version of Nitro Engine
#define NITRO_ENGINE_VERSION ((NITRO_ENGINE_MAJOR << 16) | \
(NITRO_ENGINE_MINOR << 8) | \
(NITRO_ENGINE_PATCH))

/// String with the version of Nitro Engine
#define NITRO_ENGINE_VERSION_STRING "0.9.1"
#define NITRO_ENGINE_VERSION_STRING "0.10.0"

/// @}

Expand Down
6 changes: 3 additions & 3 deletions readme.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
###################
Nitro Engine v0.9.1
###################
####################
Nitro Engine v0.10.0
####################

Introduction
============
Expand Down

0 comments on commit 4d00664

Please sign in to comment.