small fixes
This commit is contained in:
parent
ed31eb2a9f
commit
c67a8c3fa6
4
Makefile
4
Makefile
|
@ -69,7 +69,7 @@ SELECTED_FLAGS = AD AE AF AG AI AL AM AO AR AS AT AU AW AX AZ \
|
||||||
WS \
|
WS \
|
||||||
YE \
|
YE \
|
||||||
ZA ZM ZW
|
ZA ZM ZW
|
||||||
ALL_FLAGS = ($basename ($notdir $(wildcard $(FLAGS_SRC_DIR)/*.png)))
|
ALL_FLAGS = $(basename $(notdir $(wildcard $(FLAGS_SRC_DIR)/*.png)))
|
||||||
|
|
||||||
FLAGS = $(SELECTED_FLAGS)
|
FLAGS = $(SELECTED_FLAGS)
|
||||||
|
|
||||||
|
@ -173,7 +173,7 @@ $(QUANTIZED_DIR)/%.png: $(EMOJI_DIR)/%.png $(PNGQUANT) | $(QUANTIZED_DIR)
|
||||||
|
|
||||||
$(COMPRESSED_DIR)/%.png: $(QUANTIZED_DIR)/%.png | check_compress_tool $(COMPRESSED_DIR)
|
$(COMPRESSED_DIR)/%.png: $(QUANTIZED_DIR)/%.png | check_compress_tool $(COMPRESSED_DIR)
|
||||||
ifdef MISSING_ZOPFLI
|
ifdef MISSING_ZOPFLI
|
||||||
$(OPTIPNG) -quiet -o7 -force -out "$@" "$<"
|
$(OPTIPNG) -quiet -o7 -clobber -force -out "$@" "$<"
|
||||||
else
|
else
|
||||||
$(ZOPFLIPNG) -y "$<" "$@" 2> /dev/null
|
$(ZOPFLIPNG) -y "$<" "$@" 2> /dev/null
|
||||||
endif
|
endif
|
||||||
|
|
6
third_party/color_emoji/add_glyphs.py
vendored
6
third_party/color_emoji/add_glyphs.py
vendored
|
@ -147,9 +147,9 @@ def add_lig_sequence(ligatures, seq, n):
|
||||||
rev_seq = seq[:]
|
rev_seq = seq[:]
|
||||||
rev_seq.reverse()
|
rev_seq.reverse()
|
||||||
trseq = tuple(rev_seq)
|
trseq = tuple(rev_seq)
|
||||||
if trseq in ligatures:
|
# if trseq in ligatures:
|
||||||
# print 'rev lig sequence %s, replace %s with %s' % (
|
# print 'rev lig sequence %s, replace %s with %s' % (
|
||||||
# trseq, ligatures[trseq], n)
|
# trseq, ligatures[trseq], n)
|
||||||
ligatures[trseq] = n
|
ligatures[trseq] = n
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user