mirror of
https://github.com/AntonioND/nitro-engine.git
synced 2025-06-18 16:45:33 -04:00
docs: library: Update version to 0.10.0
This commit is contained in:
parent
91abea3e87
commit
4d0066465e
@ -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)
|
||||
--------------------------
|
||||
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
||||
/// @}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
###################
|
||||
Nitro Engine v0.9.1
|
||||
###################
|
||||
####################
|
||||
Nitro Engine v0.10.0
|
||||
####################
|
||||
|
||||
Introduction
|
||||
============
|
||||
|
Loading…
Reference in New Issue
Block a user