We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4b322b commit 7d9057cCopy full SHA for 7d9057c
copyparty/__version__.py
@@ -1,8 +1,8 @@
1
# coding: utf-8
2
3
-VERSION = (0, 5, 7)
4
-CODENAME = "fuse jelly"
5
-BUILD_DT = (2020, 11, 30)
+VERSION = (0, 6, 0)
+CODENAME = "CHRISTMAAAAAS"
+BUILD_DT = (2020, 12, 1)
6
7
S_VERSION = ".".join(map(str, VERSION))
8
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
copyparty/web/Makefile
@@ -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: %
9
+ pigz -11 -J 34 -I 5730 $<
10
11
+%.un: %
12
+ pigz -d $<
0 commit comments