docs: library: Update version to 0.10.0

This commit is contained in:
Antonio Niño Díaz 2024-01-28 02:33:18 +00:00
parent 91abea3e87
commit 4d0066465e
4 changed files with 33 additions and 7 deletions

View File

@ -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)
--------------------------

View File

@ -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

View File

@ -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"
/// @}

View File

@ -1,6 +1,6 @@
###################
Nitro Engine v0.9.1
###################
####################
Nitro Engine v0.10.0
####################
Introduction
============