Skip to content

Commit 05166b1

Browse files
committed
prepare version 1.0.10
1 parent 445a83a commit 05166b1

File tree

7 files changed

+16
-11
lines changed

7 files changed

+16
-11
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2022-04-01: 1.0.10 release:
2+
* hu_Hung.sor: fix regression of transliteration on Windows
3+
- non-BMP characters aren't supported in bracket expressions in regex of MS Visual C++,
4+
resulting missing transliteration on Windows. Replaced by branches separated by |.
5+
16
2022-04-01: 1.0.9 release:
27
* hu_Hung.sor: fix regression of transliteration of punctuation marks
38

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
```
66
Language-neutral NUMBERTEXT and MONEYTEXT functions for LibreOffice Calc
77
8-
version 1.0.9 (2022-04-01)
8+
version 1.0.10 (2022-04-02)
99
1010
Numbertext LibreOffice extension,
1111
Soros programming language specification (draft) and IDE*,

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.9
1+
1.0.10

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
m4_define([numbertext_version_major],[1])
22
m4_define([numbertext_version_minor],[0])
3-
m4_define([numbertext_version_micro],[9])
3+
m4_define([numbertext_version_micro],[10])
44
m4_define([numbertext_version],[numbertext_version_major.numbertext_version_minor.numbertext_version_micro])
55

66
AC_PREREQ([2.68])

data/hu_Hung.sor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"^(Áp​?ri​?l|Champs-Él|[cC]i​?t|Do​?lák-Sa​?l|[dfhjDFHJ]ol​?l|Él|Fesz​?t|[gG]rizz​?l|Ha​?rasz​?t|Hat​?va​?n|Husz​?t|[iI]n​?ter​?ci​?t|Jé​?ke​?l|Kis​?fa​?lu​?d|Ku​?ko​?r​?el​?l|Mo​?ho​?l|Mind​?szen​?t|Nosz​?t|[pP]en​n|Pes​?t|Re​?gu​?l|So​?n|Szi​?l|Szte​?va​?no​?vi​?t|Vö​?rös​?mar​?t|[zZ][lł]ot)y(.*) 0$" $1𐳐$2
88
"^(ÁP​?RI​?L|CHAMPS-ÉL|CI​?T|DO​?LÁK-SA​?L|[DFHJ]OL​?L|ÉL|FESZ​?T|GRIZZ​?L|HA​?RASZ​?T|HAT​?VA​?N|HUSZ​?T|IN​?TER​?CI​?T|JÉ​?KE​?L|KIS​FA​LU​?D|KU​?KO​?R​?EL​?L|MIND​?SZEN​?T|MO​?HO​?L|NOSZ​?T|PEN​?N|PES​?T|RE​?GU​?L|SO​?N|SZI​?L|SZTE​?VA​?NO​?VI​?T|VÖ​?RÖS​?MAR​?T|Z[LŁ]OT)Y(.*) 0$" $1𐲐$2
99
# punctuation with transliterated letters
10-
"^([-𐲀-𐳿0-9​–,„”\?\;‟⁏⸮⹁⹂]*[,„”\?\;]) 0$" $1
10+
"^((𐲀|𐲁|𐲂|𐲄|𐲆|𐲇|𐲉|𐲊|𐲋|𐲌|𐲍|𐲎|𐲏|𐲐|𐲑|𐲒|𐲓|𐲖|𐲗|𐲘|𐲙|𐲚|𐲛|𐲜|𐲞|𐲟|𐲠|𐲢|𐲤|𐲥|𐲦|𐲨|𐲪|𐲫|𐲬|𐲭|𐲮|𐲯|𐲰|𐳀|𐳁|𐳂|𐳄|𐳆|𐳇|𐳉|𐳊|𐳋|𐳌|𐳍|𐳎|𐳏|𐳐|𐳑|𐳒|𐳓|𐳖|𐳗|𐳘|𐳙|𐳚|𐳛|𐳜|𐳞|𐳟|𐳠|𐳢|𐳤|𐳥|𐳦|𐳨|𐳪|𐳫|𐳬|𐳭|𐳮|𐳯|𐳰|𐳺|𐳻|𐳼|𐳽|𐳾|𐳿|[-0-9​–,„”.!\?\;‟⹂⹁⁏⸮])*[,„”\?\;]) 0$" $1
1111
# if the original word contains an unknown character, return without modification
1212
"^(.*[^-0-9qwertzuiopasdfghjklyxcvbnmQWERTZUIOPASDFGHJKLYXCVBNMáäéëíóöőúüűÁÄÉËÍÓÖŐÚÜŰ​–,„”\?\;].*) 0$" \1
1313
# words with y

java/Manifest.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Main-Class: org.numbertext.Numbertext
2-
Implementation-Version: 1.0.9
3-
Implementation-Date: 2022-04-01
2+
Implementation-Version: 1.0.10
3+
Implementation-Date: 2022-04-02

web/index.html.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,27 +117,27 @@
117117
<div class="col-md-3 col-sm-6">
118118
<div class="service"> <i class="fa fa-table"></i>
119119
<h3>LibreOffice</h3>
120-
<p>Extension with NUMBERTEXT and MONEYTEXT spreadsheet functions: <a href="https://extensions.libreoffice.org/extensions/numbertext-1/1-0.9/@@download/file/numbertext-1.0.9.oxt">numbertext-1.0.9.oxt</a>
121-
(<a href="https://extensions.libreoffice.org/extensions/numbertext-1/1-0.9">description</a>)</p>
120+
<p>Extension with NUMBERTEXT and MONEYTEXT spreadsheet functions: <a href="https://extensions.libreoffice.org/extensions/numbertext-1/1-0.10/@@download/file/numbertext-1.0.10.oxt">numbertext-1.0.10.oxt</a>
121+
(<a href="https://extensions.libreoffice.org/extensions/numbertext-1/1-0.10">description</a>)</p>
122122
</div>
123123
</div>
124124
<div class="col-md-3 col-sm-6">
125125
<div class="service"> <i class="fa fa-cogs"></i>
126126
<h3>C++</h3>
127-
<p>Source distribution (1.0.9): <a href="https://github.com/Numbertext/libnumbertext/releases/download/1.0.9/libnumbertext-1.0.9.tar.xz">libnumbertext-1.0.9.tar.xz</a> (<a href="https://github.com/Numbertext/libnumbertext/releases/tag/1.0.9">installation</a>)</p>
127+
<p>Source distribution (1.0.10): <a href="https://github.com/Numbertext/libnumbertext/releases/download/1.0.10/libnumbertext-1.0.10.tar.xz">libnumbertext-1.0.10.tar.xz</a> (<a href="https://github.com/Numbertext/libnumbertext/releases/tag/1.0.10">installation</a>)</p>
128128
</div>
129129
</div>
130130
<div class="col-md-3 col-sm-6">
131131
<div class="service"> <i class="fa fa-coffee"></i>
132132
<h3>Java</h3>
133-
<p>JAR package: <a href="https://github.com/Numbertext/libnumbertext/releases/download/1.0.9/numbertext.jar">numbertext.jar</a> (1.0.9).
133+
<p>JAR package: <a href="https://github.com/Numbertext/libnumbertext/releases/download/1.0.10/numbertext.jar">numbertext.jar</a> (1.0.10).
134134
Usage: java -jar numbertext.jar</p>
135135
</div>
136136
</div>
137137
<div class="col-md-3 col-sm-6">
138138
<div class="service"><i class="fa fa-pencil"></i>
139139
<h3>Python & JavaScript</h3>
140-
<p>Interpreters: <a href="https://github.com/Numbertext/libnumbertext/blob/master/src/Soros.py">Soros.py</a> and <a href="https://github.com/Numbertext/libnumbertext/blob/master/src/Soros.js">Soros.js</a>. For usage, see source distribution (<a href="https://github.com/Numbertext/libnumbertext/archive/1.0.9.zip">zip</a> or <a href="https://github.com/Numbertext/libnumbertext/archive/1.0.9.tar.gz">tar.gz</a>).</p>
140+
<p>Interpreters: <a href="https://github.com/Numbertext/libnumbertext/blob/master/src/Soros.py">Soros.py</a> and <a href="https://github.com/Numbertext/libnumbertext/blob/master/src/Soros.js">Soros.js</a>. For usage, see source distribution (<a href="https://github.com/Numbertext/libnumbertext/archive/1.0.10.zip">zip</a> or <a href="https://github.com/Numbertext/libnumbertext/archive/1.0.10.tar.gz">tar.gz</a>).</p>
141141
</div>
142142
</div>
143143
</div>

0 commit comments

Comments
 (0)