From 531ae85ff3f62d0fd7f88d9e333e45c8be39525f Mon Sep 17 00:00:00 2001 From: fincs Date: Sat, 19 Dec 2020 17:23:11 +0100 Subject: [PATCH] citro2d v1.5.0 --- Changelog.md | 23 +++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index d98b56f..66692f1 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,28 @@ # Changelog +## Version 1.5.0 + +- Added for manipulating the View Transformation. +- Fixed rendering of transparent circles. +- Fixed bug affecting text parsing of empty lines. +- Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. + +## Version 1.4.0 + +- Added text alignment and wrapping support to the text API. +- Added support for 800px wide mode. +- Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. + +## Version 1.3.1 + +- Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. + +## Version 1.3.0 + +- Added C2D_DrawLine (line drawing support). +- Fixed bug that resulted in incorrect rendering after certain combinations of images and untextured primitives. +- Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. + ## Version 1.2.0 - Added custom font support, courtesy of @piepie62. diff --git a/Makefile b/Makefile index 45ac4b4..726fa6a 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ endif include $(DEVKITARM)/3ds_rules export CITRO2D_MAJOR := 1 -export CITRO2D_MINOR := 4 +export CITRO2D_MINOR := 5 export CITRO2D_PATCH := 0 VERSION := $(CITRO2D_MAJOR).$(CITRO2D_MINOR).$(CITRO2D_PATCH)