Releases: IDML/idml
2.1.0: Stabilizing and update packaging
2.1.0-RC12: fixed scala 2.13 support
This build fixes 2.13 support on the 2.1.x branch
2.1.0-RC11: improved languageName support
This expands languageName's capabilities to also include information about language script and other details.
2.0.5: improved languageName support
This expands languageName's capabilities to also include information about language script and other details.
2.1.0-RC10: languageName function
This release adds a new function called languageName
to core
.
It uses the JVM's java.util.Locale
database to look up the name of an ISO 639 language code.
It can be called on a string to convert it to a name if one's available, in the JVM's default locale:
language_name = language_code.languageName()
It can also be called with an argument to specify which locale to localize into:
language_name = language_code.languageName("en")
2.0.4: languageName support
This release adds a new function called languageName
to core
.
It uses the JVM's java.util.Locale
database to look up the name of an ISO 639 language code.
It can be called on a string to convert it to a name if one's available, in the JVM's default locale:
language_name = language_code.languageName()
It can also be called with an argument to specify which locale to localize into:
language_name = language_code.languageName("en")
2.1.0-RC8
fix SgmlNode again
2.1.0-RC7: Drop support for `admin1` and `city` lookups (#29)
* Drop support for `admin1` and `city` lookups These required external databases, and I'd rather not have side-effecting like that in IDML. The timezone and ISO lookups are still available because they're small enough to ship with the JVM or with the jar sensibly. * Also remove references to the geo db module from other modules
2.1.0-RC6
Merge branch 'master' of github.com:idml/idml
2.1.0-RC5
Merge branch 'master' of github.com:idml/idml