summaryrefslogtreecommitdiff
path: root/data/config_example.pl
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2019-09-09 13:58:18 +0200
committerYorhel <git@yorhel.nl>2019-09-09 13:58:34 +0200
commit4759dde0e941bcdd8df373b629a1df238a311cf5 (patch)
tree3f99244826436ad571bc43936905ea7408c51209 /data/config_example.pl
parent015e3ed49b3ab58c6c70d97e2836a4d11381a6a6 (diff)
spritegen.pl: Move compression to "make prod"
I think this is the last one. 'make' in a development environment is now beautifully fast and 'make prod' generates nicely small assets. (arguably we could have an even faster dev setup by not generating an icons.png in the first place, but then we'd need more code to differentiate between dev & prod, which is also a pain) This change does remove the "slow" option that would use the compressed image size in the optimization algorithm, but I hadn't used that option for a while anyway, it takes an hour and only saves about 100 bytes.
Diffstat (limited to 'data/config_example.pl')
-rw-r--r--data/config_example.pl7
1 files changed, 0 insertions, 7 deletions
diff --git a/data/config_example.pl b/data/config_example.pl
index df48f5ef..30731d08 100644
--- a/data/config_example.pl
+++ b/data/config_example.pl
@@ -39,10 +39,3 @@ $M{db_login} = { dbname => 'vndb', user => 'vndb_multi', password => 'vndb_multi
# pass => '<nickserv-password>',
# masters => [ 'yorhel!~Ayo@your.hell' ],
#};
-
-
-# Uncomment to generate an extra small icons.png
-# (note: using zopflipng or pngcrush with the slow option is *really* slow, but compresses awesomely)
-#$SPRITEGEN{crush} = '/usr/bin/pngcrush -q';
-#$SPRITEGEN{crush} = '/usr/bin/zopflipng -m --lossy_transparent';
-#$SPRITEGEN{slow} = 1;