Release v7.10.1

This commit is contained in:
Gabor Kiss-Vamosi
2021-02-16 15:25:31 +01:00
parent 11a2f82027
commit 5247094727
8 changed files with 26 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
# Kconfig file for LVGL v7.8.1
# Kconfig file for LVGL v7.10.1
menu "LVGL configuration"

2
lvgl.h
View File

@@ -16,7 +16,7 @@ extern "C" {
#define LVGL_VERSION_MAJOR 7
#define LVGL_VERSION_MINOR 10
#define LVGL_VERSION_PATCH 1
#define LVGL_VERSION_INFO "dev"
#define LVGL_VERSION_INFO ""
/*********************
* INCLUDES

View File

@@ -255,10 +255,18 @@ static uint32_t lv_txt_lam_alef(uint32_t ch_curr, uint32_t ch_next)
return 0;
}
ch_code = ap_chars_map[ch_next].char_offset + LV_AP_ALPHABET_BASE_CODE;
if (ch_code == 0x0622) { return 0xFEF5; } // (lam-alef) mad
if (ch_code == 0x0623) { return 0xFEF7; } // (lam-alef) top hamza
if (ch_code == 0x0625) { return 0xFEF9; } // (lam-alef) bot hamza
if (ch_code == 0x0627) { return 0xFEFB; } // (lam-alef) alef
if(ch_code == 0x0622) {
return 0xFEF5; // (lam-alef) mad
}
if(ch_code == 0x0623) {
return 0xFEF7; // (lam-alef) top hamza
}
if(ch_code == 0x0625) {
return 0xFEF9; // (lam-alef) bot hamza
}
if(ch_code == 0x0627) {
return 0xFEFB; // (lam-alef) alef
}
return 0;
}