From c0d41eabff9f16651fe7f74b5c77e640a282bd6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ni=C3=B1o=20D=C3=ADaz?= Date: Sat, 2 Mar 2024 14:17:17 +0000 Subject: [PATCH] doc: library: Increase version to 0.11.0 --- changelog.rst | 6 +++--- documentation/Doxyfile | 2 +- include/NEMain.h | 4 ++-- readme.rst | 5 +++-- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/changelog.rst b/changelog.rst index 64c34cf..b93effe 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,11 +1,11 @@ Changelog ========= -Version 0.DEV (XXXX-XX-XX) --------------------------- +Version 0.11.0 (2024-03-02) +--------------------------- - Added a rich text system. This allows the user to draw non-monospaced text, - and it's based on [BMFont](https://www.angelcode.com/products/bmfont/). An + and it's based on `BMFont `_. An example has been added to show how to use it to render text. It can render text by using one quad per character, or by rendering to a texture which is then drawn as a single quad. diff --git a/documentation/Doxyfile b/documentation/Doxyfile index f25e5e8..138ec3e 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.10.0 +PROJECT_NUMBER = 0.11.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 4412346..fa47da4 100644 --- a/include/NEMain.h +++ b/include/NEMain.h @@ -44,7 +44,7 @@ extern "C" { /// Major version of Nitro Engine #define NITRO_ENGINE_MAJOR (0) /// Minor version of Nitro Engine -#define NITRO_ENGINE_MINOR (10) +#define NITRO_ENGINE_MINOR (11) /// Patch version of Nitro Engine #define NITRO_ENGINE_PATCH (0) @@ -54,7 +54,7 @@ extern "C" { (NITRO_ENGINE_PATCH)) /// String with the version of Nitro Engine -#define NITRO_ENGINE_VERSION_STRING "0.10.0" +#define NITRO_ENGINE_VERSION_STRING "0.11.0" /// @} diff --git a/readme.rst b/readme.rst index 35be7f0..69dc08f 100644 --- a/readme.rst +++ b/readme.rst @@ -1,5 +1,5 @@ #################### -Nitro Engine v0.10.0 +Nitro Engine v0.11.0 #################### Introduction @@ -22,7 +22,8 @@ Features: `ptexconv `_). - Dual 3D (render 3D to both screens, but at 30 FPS instead of 60 FPS). - Functions to render 2D images accelerated by 3D hardware. -- Basic text system. +- Text system based on `libDSF `_, which is + based on `BMFont `_. - Basic GUI elements like buttons and scrollbars. - Basic physic system: Axis-aligned bounding boxes (AABB) only.