Skip to content

Commit

Permalink
Version 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ShoyuVanilla committed Jun 7, 2020
1 parent 1800435 commit 730fd1e
Show file tree
Hide file tree
Showing 5 changed files with 742 additions and 748 deletions.
18 changes: 4 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
![](https://img.shields.io/badge/Foundry-v0.6.0-informational)
![](https://img.shields.io/badge/Foundry-v0.6.2-informational)

# FoundryVTT-lang-ko-KR

* **Version**: 0.3.4
* **Foundry VTT Compatibility**: 0.6.0
* **Version**: 0.3.5
* **Foundry VTT Compatibility**: 0.6.2
* **Module Requirement(s)**: None

## Description
Expand All @@ -17,14 +17,4 @@ Foundry VTT의 기본 기능들을 한국어로 출력해 주는 모듈입니다
* **Filter Packages** 입력란에 `Korean`을 검색해 `Tranlsation: Korean [Core]` 항목의 Install 버튼을 클릭합니다.
* **Game Worlds** 탭에서 게임을 실행 후 우측 메뉴의 **Game Settings** 탭에서 **Configure Settings** 버튼을 클릭합니다.
* **Language Preference** 드롭다운 메뉴를 **English**에서 **한국어 (Korean)**로 변경 후 설정 창 하단의 **Save Changes** 버튼을 클릭합니다.
* 한국어 폰트 및 워드 브레이크 속성도 적용하려면 **모듈 관리** 설정에서 **Tranlsation: Korean [Core]** 체크박스에 체크합니다.

## Update Notes

**Version**: 0.3.4

* Foundry VTT 0.6.0 대응

**Version**: 0.3.3

* Foundry VTT 0.5.7 대응
* 한글 폰트 및 워드 브레이크 속성도 적용하려면 **모듈 관리** 설정에서 `Tranlsation: Korean [Core]` 체크박스에 체크합니다.
5 changes: 3 additions & 2 deletions module/data_mover.py → data_mover.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ def move_data(prev_path, current_path):
for key, value in current_data.items():
if key in prev_data:
current_data[key] = prev_data[key]
print(current_data[key])
prev_data.pop(key, None)
else:
print(key)
print("Key {0} is not in previous data!".format(key))
print(prev_data)

with open(current_path, "w") as f:
json.dump(current_data, f, ensure_ascii=False, indent=2)
Expand Down
10 changes: 5 additions & 5 deletions module.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "ko-KR",
"title": "Tranlsation: Korean [Core]",
"description": "FoundryVTT 코어 소프트웨어의 한국어화 모듈입니다.",
"version": "0.3.4",
"description": "<p>FoundryVTT 코어 소프트웨어의 한국어화 모듈입니다.</p><p>한글 폰트 및 한국어 워드 브레이크를 적용하려면 모듈 관리 메뉴에서 본 모듈을 활성화하십시오.</p><p><strong>버그 및 오역 제보:</strong> <a href='https://github.com/ShoyuVanilla/FoundryVTT-lang-ko-KR/issues/new' target='_blank'>github 저장소 이슈 등록</a> 또는 <a href='mailto:shoyuvanilla@gmail.com'>shoyuvanilla@gmail.com</a></p>",
"version": "0.3.5",
"minimumCoreVersion" : "0.6.0",
"compatibleCoreVersion": "0.6.0",
"compatibleCoreVersion": "0.6.2",
"author": "Shoyu Vanilla",

"scripts": [],
Expand All @@ -18,8 +18,8 @@
"path": "ko.json"
}
],

"url": "https://github.com/ShoyuVanilla/FoundryVTT-lang-ko-KR",
"manifest": "https://raw.githubusercontent.com/ShoyuVanilla/FoundryVTT-lang-ko-KR/master/module/module.json",
"download": "https://github.com/ShoyuVanilla/FoundryVTT-lang-ko-KR/releases/download/v0.3.4/release.zip"
"download": "https://github.com/ShoyuVanilla/FoundryVTT-lang-ko-KR/releases/download/v0.3.5/release.zip"
}
Loading

0 comments on commit 730fd1e

Please sign in to comment.