Globox1997 / VillagerQuests

https://modrinth.com/mod/villagerquests
https://www.curseforge.com/minecraft/mc-mods/villagerquests
MIT License
3 stars 7 forks source link

Encoding problem #8

Open MJRamon opened 2 years ago

MJRamon commented 2 years ago

If Cyrillic symbols are used, for example, "Задание", text becomes unreadable. json file is in UTF-8. 2021-12-29_07 57 56

Globox1997 commented 2 years ago

Mh I have actually no idea how to fix this

MJRamon commented 2 years ago

Try adding UTF-8 to build.gradle

processResources {
    inputs.property "version", project.version
    filteringCharset "UTF-8"

    filesMatching("fabric.mod.json") {
        expand "version": project.version
    }
}
tasks.withType(JavaCompile).configureEach {
    it.options.encoding = "UTF-8"

    it.options.release = 17
}
Globox1997 commented 2 years ago

levelz-1.1.5.zip Added it here, would appreciate a test

MJRamon commented 2 years ago

But it's Villager Quests, not LevelZ :)

Globox1997 commented 2 years ago

Ups XD sorry, I send one later

Globox1997 commented 2 years ago

villagerquests-1.0.3.zip

MJRamon commented 2 years ago

2022-01-11_09 44 30 Nope, the bug is there.

Globox1997 commented 2 years ago

Honestly not sure how to fix this issue..

MJRamon commented 1 year ago

I call for help from other developers in here, cause this issue is important.

MJRamon commented 1 year ago

Maybe it was fixed now?