From e40a4775d429d431cc413e92866d2ae499ca8a85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Fri, 10 Jan 2025 07:30:31 +0100 Subject: [PATCH] Update enum Charset in engine-api.d.ts --- res/controllers/engine-api.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/res/controllers/engine-api.d.ts b/res/controllers/engine-api.d.ts index 3a8022ce9db..8df095ac889 100644 --- a/res/controllers/engine-api.d.ts +++ b/res/controllers/engine-api.d.ts @@ -314,7 +314,7 @@ declare namespace engine { UTF_32BE, // UTF-32 for Big-Endian devices (MIPS, PPC) CentralEurope, // Windows_1250 which includes all characters of ISO_8859_2 Cyrillic, // Windows_1251 which includes all characters of ISO_8859_5 - Latin1, // Windows_1252 which includes all characters of ISO_8859_1 + WesternEurope, // Windows_1252 which includes all characters of ISO_8859_1 Greek, // Windows_1253 which includes all characters of ISO_8859_7 Turkish, // Windows_1254 which includes all characters of ISO_8859_9 Hebrew, // Windows_1255 which includes all characters of ISO_8859_8 @@ -330,7 +330,8 @@ declare namespace engine { UCS2, // Universal Character Set (2-Byte) ISO_10646 SCSU, // Standard Compression Scheme for Unicode BOCU_1, // Binary Ordered Compression for Unicode - CESU_8 // Compatibility Encoding Scheme for UTF-16 (8-Bit) + CESU_8, // Compatibility Encoding Scheme for UTF-16 (8-Bit) + Latin1 // ISO_8859_1, available on Qt < 6.5 } /**