Skip to content

Commit

Permalink
Updated for when only iOS ACE is available
Browse files Browse the repository at this point in the history
  • Loading branch information
PoomSmart committed Jan 26, 2024
1 parent 9255d65 commit e5bbeb0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ Python and shell scripts to backport and theme [Apple Color Emoji font](https://

Execute `./apple.sh HD`, you will get `[email protected]` (for iOS 10 and above) and `[email protected]` (for iOS 9 and below) under `apple` directory.

If you only have `AppleColorEmoji_iOS.ttc`, execute `./apple.sh HD iOS` instead.

# Notable Python Scripts

EmojiFonts deals with certain font tables; mainly `GDEF` and `sbix`.
Expand Down
6 changes: 4 additions & 2 deletions apple.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
set -e

NAME=apple
MOD=$1
KIND=$2
[[ $KIND == '' ]] && KIND=macOS
IOS_FONT_NAME=AppleColorEmoji_iOS
MAC_FONT_NAME=AppleColorEmoji_macOS
MAC_FONT_NAME=AppleColorEmoji_$KIND
ASSETS=$NAME
MOD=$1
COLORS=
[[ $MOD = 'HD' ]] && HD=true || HD=false

Expand Down

0 comments on commit e5bbeb0

Please sign in to comment.