Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyEye-FAST committed Jan 22, 2024
1 parent a5a878f commit 670edcf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
pip install pylint flask requests fonttools
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py') -d W1309
pylint $(git ls-files '*.py')
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Minecraft中文标准译名查询

[![Pylint](https://github.com/SkyEye-FAST/minecraft_translation_flask/actions/workflows/pylint.yml/badge.svg)](https://github.com/SkyEye-FAST/minecraft_translation_flask/actions/workflows/pylint.yml) [![Update language files](https://github.com/SkyEye-FAST/minecraft_translation_flask/actions/workflows/update.yml/badge.svg)](https://github.com/SkyEye-FAST/minecraft_translation_flask/actions/workflows/update.yml) [![Generate font subset (I.Ming)](https://github.com/SkyEye-FAST/minecraft_translation_flask/actions/workflows/extract_font.yml/badge.svg)](https://github.com/SkyEye-FAST/minecraft_translation_flask/actions/workflows/extract_font.yml)

注:**此项目仍在开发中,网页样式仍需完善,尤其是移动端适配的问题。**

可查询Minecraft中文标准译名的简易网页,后端框架使用Flask。
Expand Down
2 changes: 1 addition & 1 deletion update.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def get_json(url: str):
with ZipFile(client_path) as client:
with client.open("assets/minecraft/lang/en_us.json") as content:
with open(LANG_DIR / "en_us.json", "wb") as f:
print(f"正在从client.jar解压语言文件“en_us.json”……")
print("正在从client.jar解压语言文件“en_us.json”……")
f.write(content.read())

# 删除客户端JAR
Expand Down

0 comments on commit 670edcf

Please sign in to comment.