diff --git a/AUTHORS b/AUTHORS
index b310887..256c41b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -196,20 +196,34 @@ Ilya Idamkin (ilya dot idamkin at duallab):
- fix typos
-Alexander Ivanov (oshli dot a dot er at gmail):
+Bee Ing at GitHub:
+
+ - add Malay currency MYR
+
+Alexander Ivanov (contributorpw at GitHub):
- add cardinal functions to Russian module
- tutorial fixes
+ - fix feminine RUB, UAH
+
Jmzambon at OOO Wiki:
- patch for French un/une handling for currencies
+Juanma Sanchez (JuanmaSP at GitHub):
+
+ - bug report for boundary issue with optional function at Spanish and other languages
+
Kent Karlsson:
- reported Swedish gender problem with currencies in sv_SE.sor.
+Viktor Kovács:
+
+ - add "sch" to "s", "ä" to "é" transliteration to Old Hungarian
+
Mantas Kriaučiūnas at Launchpad.net:
- hints for Lithuanian module
@@ -243,7 +257,7 @@ Joan Montané (jmontane at openoffice dot org):
- "menys" for negative
- reported missing gender support for Catalan and Spanish (http://wiki.services.openoffice.org/wiki/Talk:NUMBERTEXT/MONEYTEXT_development#Some_languages_need_male.2Ffemale_option_for_number_to_text)
-
+
- various fixes and extensions for Catalan
Julien2412 (serval2412 at yahoo dot fr):
@@ -271,6 +285,10 @@ mrw at OOo Extension site:
- bug report about document language detection in OOo 3.2
+Balázs Meskó:
+
+ - clean-up Java implementation, adding also Maven support
+
Valter Mura:
- bug report for Italian
@@ -341,6 +359,10 @@ Rens Toonen (rens toonen at topicus nl):
- Java fix for Windows: replaced the system line seperator with a fixed value.
+tyindeepit at GitHub:
+
+ - patch for Thai module to fix currency with 1 digit decimal and handling of digit 1
+
xhydrogene at launchpad dot net:
- bug reports for French (fr_FR) module:
diff --git a/ChangeLog b/ChangeLog
index 8aee4c1..89f7b7f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,28 @@
+2020-06-01: 1.0.6 release:
+ * Numbertext.cxx: don't depend on en_US.UTF-8 locale by Stephan Bergmann
+ * Java:
+ - clean-up by Balázs Meskó with Maven support
+ - port special logic for Norwegian language from C++ by Ilya Idamkin
+ * Makefile.am: prefix for datadir by Li-Wen Hsu
+ * bg.sor: avoid using \d and \D by Mihail Balabanov
+ * ee.sor: update Estonian language spellings by Alvar Laigna
+ * el.sor: fix "and" before currency fractions and "zero" in case of 0 whole euro by Spiros Evangelatos
+ * es.sor: fixes by Juanma Sanchez, and based on him report
+ * gl.sor, es.sor: fix ISO codename of Honduran lempira by Ilya Idamkin
+ * fr.sor: fix EUR 200, 300 etc., bug report by armik71
+ * hu.sor: fix date function for 1
+ * hu_Hung.sor:
+ - Old Hungarian transliteration support for words
+ - remove obsolete function left-to-right
+ - add sch -> s, ä -> é transliteration by Viktor Kovács
+ * it.sor: fix ordinal numbers, bug report by dario-gallucci
+ * ja.sor: fix word "negative" (负 -> 負), bug report by cmplstofB
+ * ko.sor, en.sor: fix Korean module and add Korean Won unit by DaeHyun Sun
+ * lv.sor: fix 40, 50 ... 90, bug report by andritis
+ * my.sor, en.sor: add Malay currency MYR by Bee Ing
+ * ru.sor, uk.sor: fix cardinal and feminine RUB, UAH usage by Alex Ivanov
+ * th.sor: fix usage of 1 by Ilya Idamkin and tyindeepit
+
2018-10-09: 1.0.5 release:
* et.sor: new Estonian module
* Java: fix path separator for Windows by Rens Toonen
diff --git a/README.md b/README.md
index d1a90f4..93db0de 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
```
Language-neutral NUMBERTEXT and MONEYTEXT functions for LibreOffice Calc
-version 1.0.5 (2018-10-09)
+version 1.0.6 (2020-06-01)
Numbertext LibreOffice extension,
Soros programming language specification (draft) and IDE*,
@@ -15,13 +15,13 @@ Soros interpreter in Java: see NUMBERTEXT.org
* Not in LibreOffice Numbertext extension, see http://NUMBERTEXT.org.
-Copyright: 2009-2018 (C) László Németh (nemeth at numbertext dot org)
+Copyright: 2009-2020 (C) László Németh (nemeth at numbertext dot org)
License: LGPL-3+/Modified BSD dual-license
Numbertext language data (Soros programs):
License: LGPL-3+/Modified BSD dual-license (except Serbian)
-Copyright: 2009-2018 (C) László Németh et al. (see AUTHORS)
+Copyright: 2009-2020 (C) László Németh et al. (see AUTHORS)
Bulgarian: 2018 (C) Mihail Balabanov (m dot balabanov at gmail dot com)
Croatian: 2014 (C) Mihovil Stanić (mihovil dot stanic at gmail dot com)
Hebrew module: 2010 (C) Alex Bodnaru (alexbodn at 012 dot net dot il)
@@ -105,7 +105,7 @@ zh Chinese (simplified)
Old number systems:
-Hung Old Hungarian Script
+hu-Hung Old Hungarian Script (also word transliteration)
Roman Roman numbers
Roman-large Roman numbers for very large numbers
using parenthesized syntax
diff --git a/VERSION b/VERSION
index 90a27f9..af0b7dd 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.0.5
+1.0.6
diff --git a/configure.ac b/configure.ac
index ef5316f..3199e67 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
m4_define([numbertext_version_major],[1])
m4_define([numbertext_version_minor],[0])
-m4_define([numbertext_version_micro],[5])
+m4_define([numbertext_version_micro],[6])
m4_define([numbertext_version],[numbertext_version_major.numbertext_version_minor.numbertext_version_micro])
AC_PREREQ([2.68])
diff --git a/java/Manifest.txt b/java/Manifest.txt
index 5483577..e3ab2c9 100644
--- a/java/Manifest.txt
+++ b/java/Manifest.txt
@@ -1,3 +1,3 @@
Main-Class: org.numbertext.Numbertext
-Implementation-Version: 1.0.5
-Implementation-Date: 2018-10-09
+Implementation-Version: 1.0.6
+Implementation-Date: 2020-06-01
diff --git a/java/pom.xml b/java/pom.xml
index af635a2..a16941e 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -7,7 +7,7 @@
Extension with NUMBERTEXT and MONEYTEXT spreadsheet functions: numbertext-1.0.5.oxt - (description)
+Extension with NUMBERTEXT and MONEYTEXT spreadsheet functions: numbertext-1.0.6.oxt + (description)
Source distribution (1.0.5): libnumbertext-1.0.5.tar.xz (installation)
+Source distribution (1.0.6): libnumbertext-1.0.6.tar.xz (installation)
JAR package: numbertext.jar (1.0.5). +
JAR package: numbertext.jar (1.0.6). Usage: java -jar numbertext.jar
Language | " + header + " |
*Old numeral systems (extended for large numbers) – Old Hungarian, Roman and Suzhou numerals |