flat mode, a few more buttons, etc

This commit is contained in:
Rhiannon Morris 2024-09-22 21:32:01 +02:00
parent 25b3261079
commit 7341f49b5a
87 changed files with 623 additions and 221 deletions

View file

@ -1,9 +1,9 @@
CSS = $(wildcard *.css) $(shell find fonts -type f)
PAGES = index.html pubkey.txt
MEDIA = \
$(wildcard media/*.png) $(wildcard media/*.svg) $(wildcard media/*.webp) \
$(wildcard media/*.png) $(wildcard media/*.gif) $(wildcard media/*.webp) \
$(wildcard media/flags/*) $(wildcard media/buttons/*) \
8831.png 8831-quox.png
$(wildcard media/icons/*) $(wildcard media/bg/*) 8831.png 8831-quox.png
SCRIPTS = $(patsubst %.ts,%.js,$(wildcard *.ts))
MISC = $(shell find .well-known -type f)
ALL = $(CSS) $(PAGES) $(MEDIA) $(SCRIPTS) $(MISC)
@ -53,11 +53,6 @@ $(BUILDDIR)/%_dim.png: %.png
@echo $(notdir $@)
@convert -channel A -evaluate Multiply 0.75 $< $@
$(BUILDDIR)/%.GIF: %.ICO
@echo $*.GIF
@mkdir -p $(dir $@)
@convert '$<[0]' $@
$(BUILDDIR)/%.js: %.ts
tsc --strict --noUncheckedIndexedAccess --noEmitOnError \
--lib dom,es2021 --target es2015 \