Skip to content

Commit

Permalink
0.5.1
Browse files Browse the repository at this point in the history
Add Japanese language
  • Loading branch information
SuperZombi committed Dec 24, 2023
1 parent 2ee81d2 commit bd219b9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions GICutscenesUI/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import requests

CONSOLE_DEBUG_MODE = False
__version__ = '0.5.0'
__version__ = '0.5.1'

# ---- Required Functions ----

Expand All @@ -29,7 +29,7 @@ def get_version():
def get_translation(code):
tr_file = os.path.join(resource_path("web"), "locales", code + ".json")
if os.path.exists(tr_file):
with open(tr_file, 'r', encoding="utf-8") as file:
with open(tr_file, 'r', encoding="utf-8-sig") as file:
string = json_minify(file.read()) # remove comments

# remove coma at the end of json
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<strong> User Interface for <a href="https://github.com/ToaHartor/GI-cutscenes">Genshin Cutscenes Demuxer</a></strong>
</p>
<p align="center">
<img src="https://shields.io/badge/version-v0.5.0-blue"></br>
<img src="https://shields.io/badge/version-v0.5.1-blue"></br>
<a href="#donate"><img src="https://shields.io/badge/💲-Support_the_Project-2ea043"></a>
</p>

Expand Down
8 changes: 4 additions & 4 deletions github/ver
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VSVersionInfo(
ffi=FixedFileInfo(
filevers=(0, 5, 0, 0),
prodvers=(0, 5, 0, 0),
filevers=(0, 5, 1, 0),
prodvers=(0, 5, 1, 0),
mask=0x3f,
flags=0x0,
OS=0x40004,
Expand All @@ -16,11 +16,11 @@ VSVersionInfo(
u'040904B0',
[
StringStruct(u'FileDescription', u'Genshin Impact Cutscenes'),
StringStruct(u'FileVersion', u'0.5.0'),
StringStruct(u'FileVersion', u'0.5.1'),
StringStruct(u'InternalName', u'GICutscenesUI'),
StringStruct(u'OriginalFilename', u'GICutscenesUI.exe'),
StringStruct(u'ProductName', u'GI-Cutscenes UI'),
StringStruct(u'ProductVersion', u'0.5.0')])
StringStruct(u'ProductVersion', u'0.5.1')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
]
Expand Down

0 comments on commit bd219b9

Please sign in to comment.