[gucharmap] unicode: Update for unicode 14.0.0



commit b34cc8173f501b992833ee486d5cb5d563a7dff8
Author: Christian Persch <chpe src gnome org>
Date:   Tue Sep 14 17:48:15 2021 +0200

    unicode: Update for unicode 14.0.0

 gucharmap/gucharmap-unicode-info.c | 6 +++---
 gucharmap/gucharmap-unicode-info.h | 3 ++-
 gucharmap/gucharmap-window.c       | 4 ++--
 meson.build                        | 4 ++--
 4 files changed, 9 insertions(+), 8 deletions(-)
---
diff --git a/gucharmap/gucharmap-unicode-info.c b/gucharmap/gucharmap-unicode-info.c
index 43ebda02..15a04f89 100644
--- a/gucharmap/gucharmap-unicode-info.c
+++ b/gucharmap/gucharmap-unicode-info.c
@@ -66,9 +66,9 @@ gucharmap_get_unicode_name (gunichar wc)
   _gucharmap_intl_ensure_initialized ();
 
   if ((wc >= 0x3400 && wc <= 0x4dbf)       /* CJK Unified Ideographs Extension A */
-      || (wc >= 0x4e00 && wc <= 0x9ffc)    /* CJK Unified Ideographs             */
-      || (wc >= 0x20000 && wc <= 0x2a6dd)  /* CJK Unified Ideographs Extension B */
-      || (wc >= 0x2a700 && wc <= 0x2b734)  /* CJK Unified Ideographs Extension C */
+      || (wc >= 0x4e00 && wc <= 0x9fff)    /* CJK Unified Ideographs             */
+      || (wc >= 0x20000 && wc <= 0x2a6df)  /* CJK Unified Ideographs Extension B */
+      || (wc >= 0x2a700 && wc <= 0x2b738)  /* CJK Unified Ideographs Extension C */
       || (wc >= 0x2b740 && wc <= 0x2b81d)  /* CJK Unified Ideographs Extension D */
       || (wc >= 0x2b820 && wc <= 0x2cea1)  /* CJK Unified Ideographs Extension E */
       || (wc >= 0x2ceb0 && wc <= 0x2ebe0)  /* CJK Unified Ideographs Extension F */
diff --git a/gucharmap/gucharmap-unicode-info.h b/gucharmap/gucharmap-unicode-info.h
index 7304391b..c9cb5b07 100644
--- a/gucharmap/gucharmap-unicode-info.h
+++ b/gucharmap/gucharmap-unicode-info.h
@@ -55,7 +55,8 @@ typedef enum {
   GUCHARMAP_UNICODE_VERSION_12_0,
   GUCHARMAP_UNICODE_VERSION_12_1,
   GUCHARMAP_UNICODE_VERSION_13_0,
-  GUCHARMAP_UNICODE_VERSION_LATEST = GUCHARMAP_UNICODE_VERSION_13_0 /* private, will move forward with each 
revision */
+  GUCHARMAP_UNICODE_VERSION_14_0,
+  GUCHARMAP_UNICODE_VERSION_LATEST = GUCHARMAP_UNICODE_VERSION_14_0 /* private, will move forward with each 
revision */
 } GucharmapUnicodeVersion;
 
 /* return values are read-only */
diff --git a/gucharmap/gucharmap-window.c b/gucharmap/gucharmap-window.c
index fc653e57..56df99ef 100644
--- a/gucharmap/gucharmap-window.c
+++ b/gucharmap/gucharmap-window.c
@@ -454,9 +454,9 @@ help_about (GSimpleAction *action,
   gtk_show_about_dialog (GTK_WINDOW (guw),
                         "program-name", _("GNOME Character Map"),
                         "version", VERSION,
-                        "comments", _("Based on the Unicode Character Database 13.0.0"),
+                        "comments", _("Based on the Unicode Character Database 14.0.0"),
                         "copyright", "Copyright © 2004 Noah Levitt\n"
-                                     "Copyright © 1991–2020 Unicode, Inc.\n"
+                                     "Copyright © 1991–2021 Unicode, Inc.\n"
                                      "Copyright © 2007–2021 Christian Persch\n"
                                       "Copyright © 2016, 2020 DaeHyun Sung",
                         "documenters", documenters,
diff --git a/meson.build b/meson.build
index 476ff96d..27011560 100644
--- a/meson.build
+++ b/meson.build
@@ -24,7 +24,7 @@ project(
   ],
   license: ['GPL-3.0-or-later',],
   meson_version: '>= 0.49.0',
-  version: '13.0.9',
+  version: '14.0.0',
 )
 
 # Naming
@@ -45,7 +45,7 @@ gtk3_req_version      = '3.4.0'
 # changes to gucharmap. Therefore, you should NOT upgrade the unicode version
 # of a released gucharmap, but upgrade to the gucharmap version corresponding
 # to the desired unicode version.
-unicode_req_version   = '13.0.0'
+unicode_req_version   = '14.0.0'
 
 # API
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]