aboutsummaryrefslogtreecommitdiffstats
path: root/changelog.txt
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-07-08 13:51:20 +1000
committerinmarket <andrewh@inmarket.com.au>2018-07-08 13:51:20 +1000
commite61f0ae4248bdafeace54c330d488904a495c045 (patch)
tree448c5f4e99ae94fd41a99b3082b35208b2ba7c5f /changelog.txt
parentd9258efd4dac2b7939bb11707cbbdfa135c02bf5 (diff)
downloaduGFX-e61f0ae4248bdafeace54c330d488904a495c045.tar.gz
uGFX-e61f0ae4248bdafeace54c330d488904a495c045.tar.bz2
uGFX-e61f0ae4248bdafeace54c330d488904a495c045.zip
Added type gOrientation to replace V2.x orientation_t, and values gOrientationX replace GDISP_ROTATE_X
Diffstat (limited to 'changelog.txt')
-rw-r--r--changelog.txt21
1 files changed, 11 insertions, 10 deletions
diff --git a/changelog.txt b/changelog.txt
index 77606947..9586ff90 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -14,20 +14,21 @@ FEATURE: Added GFX_COMPAT_V2 to maintain source compatibility with V2.x programs
FEATURE: Added GFX_COMPAT_OLDCOLORS to allow V2.x Red, Green, Blue color names. It is turned on by default.
CHANGE: Added GFX_RED, GFX_BLUE, GFX_GREEN etc to replace V2.x Red, Gree, Blue color names
CHANGE: Added GFXON/GFXOFF to replace V2.x TRUE/FALSE for configuration options.
-CHANGE: Added gBool type and gTrue/gFalse to replace TRUE/FALSE for booleans.
CHANGE: Added types gI8, gU8 .. gI32, gU32 to replace V2.x int8_t etc
+CHANGE: Added type gBool to replace V2.x bool_t, and values gTrue/gFalse to replace TRUE/FALSE
+CHANGE: Added type gPoint to replace V2.x point and point_t
+CHANGE: Added type gCoord to replace V2.x coord_t
+CHANGE: Added type gPixel to replace V2.x pixel_t
+CHANGE: Added type gColor to replace V2.x color_t
+CHANGE: Added type gFont to replace V2.x font_t
+CHANGE: Added type gPowermode to replace V2.x powermode_t, and values gPowerXXX replace powerXXX
+CHANGE: Added type gJustify to replace V2.x justify_t, and values gJustifyXXX replace justifyXXX
+CHANGE: Added type gFontmetric to replace V2.x fontmetric_t, and values gFontXXX replace fontXXX
+CHANGE: Added type gOrientation to replace V2.x orientation_t, and values gOrientationX replace GDISP_ROTATE_X
+CHANGE: Added macros JUSTIFYMASK_HORIZONTAL, JUSTIFYMASK_VERTICAL to replace macros JUSTIFYMASK_LEFTRIGHT, JUSTIFYMASK_TOPBOTTOM
FEATURE: Added types gPtr and gPtrDiff
FEATURE: Added gI64 and gU64 when the compiler supports it. GFX_TYPE_64 macro is defined as GFXON if it does.
FEATURE: Fixed headers to ensure size_t, NULL are always defined. size_t is not used as it may be 64bit.
-CHANGE: Added type gPoint to replace V2.x point and point_t
-CHANGE: Added type gCoord to replace V2.x coord_t
-CHANGE: Added type gPixel to replace V2.x pixel_t
-CHANGE: Added type gColor to replace V2.x color_t
-CHANGE: Added type gFont to replace V2.x font_t
-CHANGE: Added type gPowermode to replace V2.x powermode_t, and values gPowerXXX replace powerXXX
-CHANGE: Added type gJustify to replace V2.x justify_t, and values gJustifyXXX replace justifyXXX
-CHANGE: Added type gFontmetric to replace V2.x fontmetric_t, and values gFontXXX replace fontXXX
-CHANGE: Added macros JUSTIFYMASK_HORIZONTAL, JUSTIFYMASK_VERTICAL to replace macros JUSTIFYMASK_LEFTRIGHT, JUSTIFYMASK_TOPBOTTOM
FIX: Added gfxRealloc() to Qt port
FIX: Fixed UC1610 driver private area initialisation
FIX: Fixed ST7735 driver and added kapacuk changes