This commit is contained in:
ed 2020-12-01 02:58:11 +01:00
parent c4b322b883
commit 7d9057cc62
2 changed files with 15 additions and 3 deletions

View file

@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (0, 5, 7)
CODENAME = "fuse jelly"
BUILD_DT = (2020, 11, 30)
VERSION = (0, 6, 0)
CODENAME = "CHRISTMAAAAAS"
BUILD_DT = (2020, 12, 1)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

12
copyparty/web/Makefile Normal file
View file

@ -0,0 +1,12 @@
# run me to zopfli all the static files
# which should help on really slow connections
# but then why are you using copyparty in the first place
pk: $(addsuffix .gz, $(wildcard *.js *.css))
un: $(addsuffix .un, $(wildcard *.gz))
%.gz: %
pigz -11 -J 34 -I 5730 $<
%.un: %
pigz -d $<