diff --git a/changelog.rst b/changelog.rst index 5bf9096..97dae0e 100644 --- a/changelog.rst +++ b/changelog.rst @@ -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) -------------------------- diff --git a/documentation/Doxyfile b/documentation/Doxyfile index 8963688..f25e5e8 100644 --- a/documentation/Doxyfile +++ b/documentation/Doxyfile @@ -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 diff --git a/include/NEMain.h b/include/NEMain.h index 81aaa37..681b78e 100644 --- a/include/NEMain.h +++ b/include/NEMain.h @@ -43,9 +43,9 @@ 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) | \ @@ -53,7 +53,7 @@ extern "C" { (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" /// @} diff --git a/readme.rst b/readme.rst index fa1997c..35be7f0 100644 --- a/readme.rst +++ b/readme.rst @@ -1,6 +1,6 @@ -################### -Nitro Engine v0.9.1 -################### +#################### +Nitro Engine v0.10.0 +#################### Introduction ============