Skip to content

Commit 7d9057c

Browse files
committed
v0.6.0
1 parent c4b322b commit 7d9057c

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

copyparty/__version__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# coding: utf-8
22

3-
VERSION = (0, 5, 7)
4-
CODENAME = "fuse jelly"
5-
BUILD_DT = (2020, 11, 30)
3+
VERSION = (0, 6, 0)
4+
CODENAME = "CHRISTMAAAAAS"
5+
BUILD_DT = (2020, 12, 1)
66

77
S_VERSION = ".".join(map(str, VERSION))
88
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

copyparty/web/Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# run me to zopfli all the static files
2+
# which should help on really slow connections
3+
# but then why are you using copyparty in the first place
4+
5+
pk: $(addsuffix .gz, $(wildcard *.js *.css))
6+
un: $(addsuffix .un, $(wildcard *.gz))
7+
8+
%.gz: %
9+
pigz -11 -J 34 -I 5730 $<
10+
11+
%.un: %
12+
pigz -d $<

0 commit comments

Comments
 (0)