Skip to content

Commit

Permalink
Merge commit 'bca04dc3cd3af85a9d9220c430737333634d622a'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibras committed Jun 8, 2024
2 parents 9723c8c + bca04dc commit f49a11e
Show file tree
Hide file tree
Showing 11 changed files with 345 additions and 29 deletions.
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Overview of changes between 1.0.13 and 1.0.14
=============================================

* Updated Unicode tables to version 15.1

Overview of changes between 1.0.12 and 1.0.13
=============================================

Expand Down
8 changes: 7 additions & 1 deletion bin/meson.build
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# The fribidi binary is used by the test setup, so if bin=false we still
# need to build it for internal usage, we just won't install it.
fribidi = executable('fribidi',
'fribidi-main.c', 'getopt.c', 'getopt1.c', fribidi_unicode_version_h,
c_args: ['-DHAVE_CONFIG_H'] + fribidi_static_cargs,
include_directories: incs,
link_with: libfribidi,
install: true)
install: get_option('bin'))

if not get_option('bin')
subdir_done()
endif

executable('fribidi-benchmark',
'fribidi-benchmark.c', 'getopt.c', 'getopt1.c', fribidi_unicode_version_h,
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dnl FRIBIDI_BINARY_AGE = FRIBIDI_INTERFACE_AGE = 0;
dnl
m4_define(fribidi_major_version, 1)dnl
m4_define(fribidi_minor_version, 0)dnl
m4_define(fribidi_micro_version, 13)dnl
m4_define(fribidi_micro_version, 14)dnl
m4_define(fribidi_interface_version, 4)dnl
m4_define(fribidi_interface_age, 0)dnl
m4_define(fribidi_binary_age, 4)dnl
Expand Down
8 changes: 4 additions & 4 deletions gen.tab/unidata/ArabicShaping.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ArabicShaping-14.0.0.txt
# Date: 2021-05-21, 01:54:00 GMT [KW, RP]
# © 2021 Unicode®, Inc.
# ArabicShaping-15.1.0.txt
# Date: 2023-01-05
# © 2023 Unicode®, Inc.
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
# For terms of use, see http://www.unicode.org/terms_of_use.html
# For terms of use, see https://www.unicode.org/terms_of_use.html
#
# This file is a normative contributory data file in the
# Unicode Character Database.
Expand Down
10 changes: 5 additions & 5 deletions gen.tab/unidata/BidiBrackets.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BidiBrackets-14.0.0.txt
# Date: 2021-06-30, 23:59:00 GMT [AG, LI, KW]
# © 2021 Unicode®, Inc.
# BidiBrackets-15.1.0.txt
# Date: 2023-01-18
# © 2023 Unicode®, Inc.
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
# For terms of use, see https://www.unicode.org/terms_of_use.html
#
Expand All @@ -12,11 +12,11 @@
# This file is a normative contributory data file in the Unicode
# Character Database.
#
# Bidi_Paired_Bracket is a normative property of type Miscellaneous,
# Bidi_Paired_Bracket is a normative property
# which establishes a mapping between characters that are treated as
# bracket pairs by the Unicode Bidirectional Algorithm.
#
# Bidi_Paired_Bracket_Type is a normative property of type Enumeration,
# Bidi_Paired_Bracket_Type is a normative property
# which classifies characters into opening and closing paired brackets
# for the purposes of the Unicode Bidirectional Algorithm.
#
Expand Down
8 changes: 4 additions & 4 deletions gen.tab/unidata/BidiMirroring.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BidiMirroring-14.0.0.txt
# Date: 2021-08-08, 22:55:00 GMT [KW, RP]
# © 2021 Unicode®, Inc.
# BidiMirroring-15.1.0.txt
# Date: 2023-01-05
# © 2023 Unicode®, Inc.
# For terms of use, see https://www.unicode.org/terms_of_use.html
#
# Unicode Character Database
Expand All @@ -15,7 +15,7 @@
# value, for which there is another Unicode character that typically has a glyph
# that is the mirror image of the original character's glyph.
#
# The repertoire covered by the file is Unicode 14.0.0.
# The repertoire covered by the file is Unicode 15.1.0.
#
# The file contains a list of lines with mappings from one code point
# to another one for character-based mirroring.
Expand Down
10 changes: 5 additions & 5 deletions gen.tab/unidata/ReadMe.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Unicode Character Database
# Date: 2021-09-10, 17:22:00 GMT [KW]
# © 2021 Unicode®, Inc.
# Date: 2023-08-28
# © 2023 Unicode®, Inc.
# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
# For terms of use, see https://www.unicode.org/terms_of_use.html
#
Expand All @@ -10,7 +10,7 @@
# UAX #44, "Unicode Character Database"
# UTS #51, "Unicode Emoji"
#
# The UAXes and UTS #51 can be accessed at https://www.unicode.org/versions/Unicode14.0.0/
# The UAXes and UTS #51 can be accessed at https://www.unicode.org/versions/Unicode15.1.0/

This directory contains the final data files
for the Unicode Character Database, for Version 14.0.0 of the Unicode Standard.
This directory contains final data files
for the Unicode Character Database, for Version 15.1.0 of the Unicode Standard.
Loading

0 comments on commit f49a11e

Please sign in to comment.