Skip to content

Commit

Permalink
Libuninameslist version 20240524
Browse files Browse the repository at this point in the history
Unicode 15.1 and French Unicode 15.1
  • Loading branch information
JoesCat committed May 25, 2024
1 parent bfc94f4 commit ecf6b02
Show file tree
Hide file tree
Showing 7 changed files with 1,277 additions and 691 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
choiceL: [--disable-silent-rules, --enable-frenchlib, --enable-pylib]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Create configure
run: |
sudo apt-get update -y
Expand All @@ -34,16 +34,10 @@ jobs:
matrix:
choiceM: [--disable-silent-rules, --enable-frenchlib, --enable-pylib]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Create configure
run: |
python --version
pip --version
easy_install --version
pip install setuptools
python -m pip install setuptools
python3 -m pip install -U wheel setuptools
brew install autoconf automake libtool gcc
brew install autoconf automake libtool gcc python-setuptools
autoreconf -i
automake
- name: Choose configure
Expand All @@ -67,7 +61,7 @@ jobs:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.msystem }}
Expand Down
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- 2024-May-24
* Version 1.14, Unicode 15.1 and French version 1.7 now is at 15.1.

- 2023-Sep-16
* Version 1.14, Unicode 15.1 and French version 1.6 now is at 15.0.

Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ NamesList.txt:
$(WGET) "https://www.unicode.org/Public/UCD/latest/ucd/NamesList.txt" -O NamesList.txt

ListeDesNoms.txt:
$(WGET) "http://hapax.qc.ca/ListeNoms-15.0.0.txt" -O ListeDesNoms.txt
$(WGET) "http://hapax.qc.ca/ListeNoms-15.1.0.txt" -O ListeDesNoms.txt

# test: run all tests in cwd and subdirs
test: $(TEST_PROGS)
Expand Down
8 changes: 4 additions & 4 deletions buildnameslist.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ static int printcopyright2credits(FILE *out) {
fprintf( out, "; Le Consortium Unicode entretient une collaboration étroite\n");
fprintf( out, ";\tet une liaison officielle avec le groupe de travail qui élabore\n");
fprintf( out, ";\tla norme internationale ISO/CEI 10646. La version %s du standard Unicode\n", NFR_VERSION);
fprintf( out, ";\tintègre 4.489 nouveaux caractères (dont 4.193 idéogrammes unifiés CJC\n");
fprintf( out, ";\tet 20 émojis), portant le total à 149.186 caractères.\n\n");
fprintf( out, "; Le présent fichier peut être utilisé librement. Toutefois, aucune\n");
fprintf( out, ";\tintègre 627 nouveaux caractères (dont 622 idéogrammes unifiés CJC),\n");
fprintf( out, ";\tportant le total à 149.813 caractères.\n\n");
fprintf( out, "; LLe présent fichier peut être utilisé librement. Toutefois, aucune\n");
fprintf( out, ";\tmodification n’y est autorisée ; toutes les copies doivent être\n");
fprintf( out, ";\trigoureusement identiques au fichier original.\n\n");
fprintf( out, "; Le Consortium Unicode n’est pas responsable des erreurs ou omissions\n");
Expand All @@ -60,7 +60,7 @@ static int printcopyright2credits(FILE *out) {
fprintf( out, ";\tla présente liste est informative, jusqu’à ce que la norme\n");
fprintf( out, ";\tISO/CEI 10646 ait été remise à niveau en français.\n\n");
fprintf( out, "; Version originale (en anglais) de la liste des noms des caractères :\n");
fprintf( out, ";\thttps://www.unicode.org/Public/15.0.0/ucd/NamesList.txt\n\n");
fprintf( out, ";\thttps://www.unicode.org/Public/15.1.0/ucd/NamesList.txt\n\n");
fprintf( out, "; Contributions à la version en langue française :\n");
fprintf( out, ";\tJacques André, France\n");
fprintf( out, ";\tPatrick Andries, Canada (Québec)\n");
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ AC_PREREQ([2.64])
#-------------------------------------------
# PackageTimestamp, major version, minor version, and Nameslist.txt version
# Libraries have a "package" version of the form major.minor.micro.
m4_define([uninameslist_package_stamp], [20230916]) dnl yyyymmdd
m4_define([uninameslist_package_stamp], [20240524]) dnl yyyymmdd
m4_define([uninameslist_major_version], [15]) dnl Nameslist.txt
m4_define([uninameslist_minor_version], [1])
m4_define([uninameslist_nameslist_ver], [uninameslist_major_version.uninameslist_minor_version])
Expand All @@ -18,10 +18,10 @@ m4_define([uninameslist_libver],
# These values below are kept for backwards compatibility with older programs
# that are using the French namesList. This increments with ListeDesNoms.txt.
m4_define([fr_major_version], [15]) dnl latest ListeDesNoms.txt = ver15.0
m4_define([fr_minor_version], [0])
m4_define([fr_minor_version], [1])
m4_define([uninameslist_fr_nameslist_ver], [fr_major_version.fr_minor_version])
m4_define([uninameslist_fr_current], [1])
m4_define([uninameslist_fr_revision],[6])
m4_define([uninameslist_fr_revision],[7])
m4_define([uninameslist_fr_age], [0])
m4_define([uninameslist_fr_libver],
[uninameslist_fr_current:uninameslist_fr_revision:uninameslist_fr_age])
Expand Down
Loading

0 comments on commit ecf6b02

Please sign in to comment.