Skip to content

Releases: glyph-cat/langutil

4.1.0

06 Sep 14:09
Compare
Choose a tag to compare
  • Added compatibility for React 18's concurrent rendering
  • Fixed a bug where the useLangutil hook might not trigger component updates in the minified UMD build
  • Deprecated createLangutilCore is deprecated in favor of LangutilCore
// Before
const core = createLangutilCore(...)

// After
const core = new LangutilCore(...)
  • Other minor optimizations

4.0.3

28 Dec 10:59
Compare
Choose a tag to compare
  • Internal optimizations

4.0.2

02 Oct 09:43
Compare
Choose a tag to compare
  • Fixed build config that may cause errors in final UMD build

4.0.1

30 Sep 09:33
Compare
Choose a tag to compare
  • Fixed potential issue where Langutil might not be able to recognize a client-side environment.

4.0.0

03 Sep 12:26
Compare
Choose a tag to compare

4.0.0-beta.4

09 Aug 04:28
Compare
Choose a tag to compare
4.0.0-beta.4 Pre-release
Pre-release
  • getDictionary is now available as part of Langutil Core's methods
  • Performance optimizations

4.0.0-beta.3

06 Aug 04:25
Compare
Choose a tag to compare
4.0.0-beta.3 Pre-release
Pre-release
  • Fixed issue where falsy localized values (such as 0, '', false, null, undefined) were treated as missing from the dictionary

4.0.0-beta.2

05 Aug 02:49
Compare
Choose a tag to compare
4.0.0-beta.2 Pre-release
Pre-release
  • Error codes thrown in minified builds are now further shortened

4.0.0-beta.1

04 Aug 09:52
Compare
Choose a tag to compare
4.0.0-beta.1 Pre-release
Pre-release
  • Fixed issue where falsy values (such as 0, '', false, null, undefined) are not mapped to the localized strings
  • Fixed inconsistency issue where createLangutilCore can be called without any arguments
  • Fixed typos in README
  • Added docs about hydration

4.0.0-beta.0

02 Aug 06:16
Compare
Choose a tag to compare
4.0.0-beta.0 Pre-release
Pre-release
  • Updated documentations
  • Internal code optimizations