Skip to content

Commit

Permalink
slightly condense punctations in non-UI variant; propotional kana in …
Browse files Browse the repository at this point in the history
…non-UI variant
  • Loading branch information
CyanoHao committed Oct 19, 2019
1 parent 454471e commit c4d65dc
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README-Hans.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ GB 变体完全覆盖 GB 18030-2000 标准,移除了谚文支持,文件大

* 西文:英语、西班牙语(拉丁美洲)、葡萄牙语、德语、西班牙语(欧洲)、法语、意大利语、俄语。
* 东亚语言:简体中文、繁体中文、韩国语。
* UI:中西文共用的标点视作西文标点;半角 CJK 标点;比例假名
* UI:中西文共用的标点视作西文标点;半角 CJK 标点。

### 特性

Expand Down
2 changes: 1 addition & 1 deletion README-Hant.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ GB 變體完全覆蓋 GB 18030-2000 標準,移除了諺文支援,文件大

* 西文:英語、西班牙語(拉丁美洲)、葡萄牙語、德語、西班牙語(歐洲)、法語、義大利語、俄語。
* 東亞語言:簡體中文、繁體中文、韓國語。
* UI:中西文共用的標點視作西文標點;半形 CJK 標點;比例假名
* UI:中西文共用的標點視作西文標點;半形 CJK 標點。

### 特徵

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ GB is a variant that supports a superset of Chinese national standard GB 18030-2

* European: English, Español (AL), Português, Deutsch, Español (EU), Français, Italiano, and Русский.
* East Asian: 简体中文, 繁體中文, and 한국어.
* UI: Ambiguous punctations are treated as Western; CJK puctations are half-width; Kana are proportional.
* UI: Ambiguous punctations are treated as Western; CJK puctations are half-width.

### Features

Expand Down
4 changes: 2 additions & 2 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from types import SimpleNamespace as Namespace

class Config:
version = "0.6.3"
fontRevision = 0.0603
version = "0.7.0"
fontRevision = 0.0700
vendor = "Nowar Typeface"
vendorId = "NOWR"
vendorUrl = "https://github.com/nowar-fonts"
Expand Down
2 changes: 1 addition & 1 deletion libotd
Submodule libotd updated 2 files
+1 −1 dereference.py
+16 −0 pkana.py
4 changes: 3 additions & 1 deletion merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import codecs
from types import SimpleNamespace as Namespace
from libotd.merge import MergeBelow
from libotd.pkana import ApplyPalt
from libotd.pkana import ApplyPalt, NowarApplyPaltMultiplied
from libotd.transform import Transform, ChangeAdvanceWidth
from libotd.gsub import GetGsubFlat
from libotd.gsub import ApplyGsubSingle
Expand Down Expand Up @@ -217,6 +217,8 @@ def NameFont(param, font):
# pre-apply `palt` in UI family
if "UI" in param.family:
ApplyPalt(asianFont)
else:
NowarApplyPaltMultiplied(asianFont, 0.4)

MergeBelow(baseFont, asianFont)

Expand Down

0 comments on commit c4d65dc

Please sign in to comment.