Releases: mclemente/fvtt-module-polyglot
Releases · mclemente/fvtt-module-polyglot
2.4.2
2.4.1
2.4
- Reworked Font setup. The
Add Polyglot's fonts to Foundry
setting no longer fills Foundry's Additional Fonts menu.- Toggling off the setting no longer removes the fonts, if you desire to remove them from the menu, run the following macro:
const coreFonts = game.settings.get("core", "fonts", coreFonts); for (let font in game.polyglot.FONTS) { delete coreFonts[font]; } await game.settings.set("core", "fonts", coreFonts);
- Under the hood changes to the styling.
- Everything should be looking the same as previous releases, report if you notice any changes.
- PF2e: Fixed Unavailable languages being shown on the selector if a character knew that language before it was set as Unavailable.
2.3.33
2.3.32
- Fixed language selector being broken for non-GMs (#354).
- Fixed logographical fonts not being displayed on messages with less than 5 characters (#355).
- Fixed Default Language not working properly on system providers that load on Ready hook (#356).
- Fixed messages not being rendered properly on reload on system providers that load on Ready hook.
- WFRP4e:
- Fixed issue with "Language" term being localized on games that don't use Babele to change compendium languages (#357).
- Language Settings menu's selector options are no longer white text on white background.
2.3.31
- Fixed language selector being broken for non-GMs (#354).
- Fixed logographical fonts not being displayed on messages with less than 5 characters (#355).
- Fixed Default Language not working properly on system providers that load on Ready hook (#356).
- Fixed messages not being rendered properly on reload on system providers that load on Ready hook.
- WFRP4e: Language Settings menu's selector options are no longer white text on white background.
2.3.29
2.3.28
2.3.27
2.3.26
- PF2e: Fixed
[language] is a reserved term
error. Universal reserved terms and "Common" are still a reserved term.- Caveat: Removing languages that were default languages (e.g. "Gnomish") won't remove them immediately from the list. This is a visual bug, the languages will be properly removed on save.
- API: Added support for Provider-specific
init
,i18nInit
, andready
hooks.