NikitOS
Well-known member
- Affected version
- 2.2.11
The
Before:
After:
I think it makes sense to disable Unicode escaping when writing the
xf-addon:bump-version
command overwrites the addon.json
file with the new version, but the json_encode
function escapes Unicode, so values with Unicode characters become unreadable.Before:
JSON:
"extra_urls": {
"Тест": "https://example.com/"
}
JSON:
"extra_urls": {
"\u0422\u0435\u0441\u0442": "https://example.com/"
}
I think it makes sense to disable Unicode escaping when writing the
addon.json
file to preserve readability.