version history MVP
implement basic version history support; there's now an icon in the footer that lets you see the previous versions and their sources I'm a bit worried about spoilers but honestly it's yet another way to hint yourself at the cool secrets so I don't mind
This commit is contained in:
parent
46dee56331
commit
c58c07d846
28 changed files with 1066 additions and 330 deletions
7
scripts/mkicon.fish
Executable file
7
scripts/mkicon.fish
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env fish
|
||||
|
||||
set filename $argv[1]
|
||||
set icon_name (basename $filename .svg)
|
||||
set icon_base64 (svgcleaner --stdout $filename 2>/dev/null | base64 -w0)
|
||||
|
||||
printf "--icon-%s: url('data:image/svg+xml;base64,%s');" "$icon_name" "$icon_base64"
|
Loading…
Add table
Add a link
Reference in a new issue