Release v7.10.1
This commit is contained in:
2
Kconfig
2
Kconfig
@@ -1,4 +1,4 @@
|
|||||||
# Kconfig file for LVGL v7.8.1
|
# Kconfig file for LVGL v7.10.1
|
||||||
|
|
||||||
menu "LVGL configuration"
|
menu "LVGL configuration"
|
||||||
|
|
||||||
|
|||||||
2
lvgl.h
2
lvgl.h
@@ -16,7 +16,7 @@ extern "C" {
|
|||||||
#define LVGL_VERSION_MAJOR 7
|
#define LVGL_VERSION_MAJOR 7
|
||||||
#define LVGL_VERSION_MINOR 10
|
#define LVGL_VERSION_MINOR 10
|
||||||
#define LVGL_VERSION_PATCH 1
|
#define LVGL_VERSION_PATCH 1
|
||||||
#define LVGL_VERSION_INFO "dev"
|
#define LVGL_VERSION_INFO ""
|
||||||
|
|
||||||
/*********************
|
/*********************
|
||||||
* INCLUDES
|
* INCLUDES
|
||||||
|
|||||||
@@ -255,10 +255,18 @@ static uint32_t lv_txt_lam_alef(uint32_t ch_curr, uint32_t ch_next)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
ch_code = ap_chars_map[ch_next].char_offset + LV_AP_ALPHABET_BASE_CODE;
|
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 == 0x0622) {
|
||||||
if (ch_code == 0x0623) { return 0xFEF7; } // (lam-alef) top hamza
|
return 0xFEF5; // (lam-alef) mad
|
||||||
if (ch_code == 0x0625) { return 0xFEF9; } // (lam-alef) bot hamza
|
}
|
||||||
if (ch_code == 0x0627) { return 0xFEFB; } // (lam-alef) alef
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user