Skip to content

Commit

Permalink
[Others] コメント修正
Browse files Browse the repository at this point in the history
  • Loading branch information
omonomo committed Oct 18, 2023
1 parent f5f994a commit 3b6bfd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions table_modificator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ if [ "${other_flag}" = "true" ]; then
grep -e "${font_familyname}.*\.ttf$" | while read P
do
ttx -t name -t head -t OS/2 -t post -t hmtx "$P"
# ttx -t name -t head -t OS/2 -t post -t vhea -t hmtx "$P" # 縦書き情報の取り扱いは中止
# ttx -t name -t head -t OS/2 -t post -t vhea -t hmtx "$P" # 縦書き情報の取り扱いは中止

# head, OS/2 (フォントスタイルを修正)
if [ "$(cat ${P%%.ttf}.ttx | grep "Bold Oblique")" ]; then
Expand Down Expand Up @@ -233,7 +233,7 @@ if [ "${gsub_flag}" = "true" ]; then

# GSUB (用字、言語全て共通に変更)
gpc=`grep 'FeatureTag value="calt"' "${P%%.ttf}.ttx"` # caltフィーチャがすでにあるか判定
gpz=`grep 'FeatureTag value="zero"' "${P%%.ttf}.ttx"` # zeroフィーチャ(ダミー)があるか判定
gpz=`grep 'FeatureTag value="zero"' "${P%%.ttf}.ttx"` # zeroフィーチャ(caltのダミー)があるか判定
if [ -n "${gpc}" ]; then
echo "Already calt feature exist. Do not overwrite the table."
elif [ -n "${gpz}" ]; then
Expand All @@ -248,7 +248,7 @@ if [ "${gsub_flag}" = "true" ]; then
sh calt_table_maker.sh -n ${glyphNo}
fi
fi
# フォントがcaltフィーチャに対応していた場合フィーチャリストを変更
# フォントがcaltフィーチャに対応していた場合フィーチャリストを変更
sed -i.bak -e 's,FeatureTag value="zero",FeatureTag value="calt",' "${P%%.ttf}.ttx" # caltダミー(zero)を変更
sed -i.bak -e "/Lookup index=\"${lookupIndex_calt}\"/{n;d;}" "${P%%.ttf}.ttx" # Lookup index="17"の中を削除
sed -i.bak -e "/Lookup index=\"${lookupIndex_calt}\"/{n;d;}" "${P%%.ttf}.ttx"
Expand Down

0 comments on commit 3b6bfd9

Please sign in to comment.