Skip to content

Commit 143b31d

Browse files
committed
1.0.13
1 parent 31aa1b1 commit 143b31d

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

RELEASES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Releases
22

3-
## 1.0.12
3+
## 1.0.13
44

55
* Fixes issues in UTF-8 and UTF-16 decoder logic.
66

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mcu-renderer",
3-
"version": "1.0.12",
3+
"version": "1.0.13",
44
"keywords": "antialiased, color-displays, display-driver, embedded-systems, font, graphics-library, lcd-display, microcontrollers, monochrome-displays, oled-display, renderer, text, tft-display",
55
"description": "A C-language graphics library, focused on rendering non-flickering, anti-aliased text with low resource use on both monochrome and color LCD displays.",
66
"license": "MIT",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=mcu-renderer
2-
version=1.0.12
2+
version=1.0.13
33
author=Gissio
44
maintainer=Gissio
55
sentence=A low-resource graphics library, focused on rendering non-flickering, anti-aliased text on both monochrome and color LCD displays.

src/mcu-renderer.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ static mr_charcode mr_decode_utf16(uint8_t **strp)
9191
{
9292
uint16_t *str = (uint16_t *)*strp;
9393
uint16_t highSurrogate = str[0];
94-
mr_charcode value;
9594

9695
if ((highSurrogate >> 11) != 0x1b)
9796
{

0 commit comments

Comments
 (0)