copyparty 1.15.3__py3-none-any.whl → 1.15.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- copyparty/__init__.py +54 -0
- copyparty/__main__.py +14 -12
- copyparty/__version__.py +2 -2
- copyparty/cert.py +20 -8
- copyparty/cfg.py +1 -1
- copyparty/ftpd.py +1 -1
- copyparty/httpcli.py +226 -67
- copyparty/httpconn.py +0 -3
- copyparty/httpsrv.py +10 -15
- copyparty/metrics.py +1 -1
- copyparty/smbd.py +6 -3
- copyparty/stolen/qrcodegen.py +17 -0
- copyparty/szip.py +1 -1
- copyparty/u2idx.py +1 -0
- copyparty/up2k.py +30 -12
- copyparty/util.py +148 -64
- copyparty/web/a/partyfuse.py +233 -357
- copyparty/web/a/u2c.py +249 -153
- copyparty/web/browser.css.gz +0 -0
- copyparty/web/browser.html +3 -6
- copyparty/web/browser.js.gz +0 -0
- copyparty/web/deps/fuse.py +1064 -0
- copyparty/web/deps/marked.js.gz +0 -0
- copyparty/web/shares.css.gz +0 -0
- copyparty/web/shares.html +7 -4
- copyparty/web/shares.js.gz +0 -0
- copyparty/web/splash.html +12 -12
- copyparty/web/splash.js.gz +0 -0
- copyparty/web/svcs.html +1 -1
- copyparty/web/ui.css.gz +0 -0
- copyparty/web/util.js.gz +0 -0
- {copyparty-1.15.3.dist-info → copyparty-1.15.5.dist-info}/METADATA +10 -8
- {copyparty-1.15.3.dist-info → copyparty-1.15.5.dist-info}/RECORD +37 -36
- {copyparty-1.15.3.dist-info → copyparty-1.15.5.dist-info}/WHEEL +1 -1
- {copyparty-1.15.3.dist-info → copyparty-1.15.5.dist-info}/LICENSE +0 -0
- {copyparty-1.15.3.dist-info → copyparty-1.15.5.dist-info}/entry_points.txt +0 -0
- {copyparty-1.15.3.dist-info → copyparty-1.15.5.dist-info}/top_level.txt +0 -0
copyparty/web/deps/marked.js.gz
CHANGED
Binary file
|
copyparty/web/shares.css.gz
CHANGED
Binary file
|
copyparty/web/shares.html
CHANGED
@@ -22,8 +22,8 @@
|
|
22
22
|
<span>min/hrs = time left</span>
|
23
23
|
|
24
24
|
<table id="tab"><thead><tr>
|
25
|
-
<th>delete</th>
|
26
25
|
<th>sharekey</th>
|
26
|
+
<th>delete</th>
|
27
27
|
<th>pw</th>
|
28
28
|
<th>source</th>
|
29
29
|
<th>axs</th>
|
@@ -37,10 +37,13 @@
|
|
37
37
|
</tr></thead><tbody>
|
38
38
|
{% for k, pw, vp, pr, st, un, t0, t1 in rows %}
|
39
39
|
<tr>
|
40
|
+
<td>
|
41
|
+
<a href="{{ r }}{{ shr }}{{ k }}?qr">qr</a>
|
42
|
+
<a href="{{ r }}{{ shr }}{{ k }}">{{ k }}</a>
|
43
|
+
</td>
|
40
44
|
<td><a href="#" k="{{ k }}">delete</a></td>
|
41
|
-
<td
|
42
|
-
<td
|
43
|
-
<td><a href="{{ r }}/{{ vp|e }}">{{ vp|e }}</a></td>
|
45
|
+
<td>{{ "yes" if pw else "--" }}</td>
|
46
|
+
<td><a href="{{ r }}/{{ vp|e }}">/{{ vp|e }}</a></td>
|
44
47
|
<td>{{ pr }}</td>
|
45
48
|
<td>{{ st }}</td>
|
46
49
|
<td>{{ un|e }}</td>
|
copyparty/web/shares.js.gz
CHANGED
Binary file
|
copyparty/web/splash.html
CHANGED
@@ -32,6 +32,18 @@
|
|
32
32
|
</div>
|
33
33
|
{%- endif %}
|
34
34
|
|
35
|
+
{%- if ups %}
|
36
|
+
<h1 id="aa">incoming files:</h1>
|
37
|
+
<table class="vols">
|
38
|
+
<thead><tr><th>%</th><th>speed</th><th>eta</th><th>idle</th><th>dir</th><th>file</th></tr></thead>
|
39
|
+
<tbody>
|
40
|
+
{% for u in ups %}
|
41
|
+
<tr><td>{{ u[0] }}</td><td>{{ u[1] }}</td><td>{{ u[2] }}</td><td>{{ u[3] }}</td><td><a href="{{ u[4] }}">{{ u[5]|e }}</a></td><td>{{ u[6]|e }}</td></tr>
|
42
|
+
{% endfor %}
|
43
|
+
</tbody>
|
44
|
+
</table>
|
45
|
+
{%- endif %}
|
46
|
+
|
35
47
|
{%- if avol %}
|
36
48
|
<h1>admin panel:</h1>
|
37
49
|
<table><tr><td> <!-- hehehe -->
|
@@ -60,18 +72,6 @@
|
|
60
72
|
</div>
|
61
73
|
{%- endif %}
|
62
74
|
|
63
|
-
{%- if ups %}
|
64
|
-
<h1 id="aa">incoming files:</h1>
|
65
|
-
<table class="vols">
|
66
|
-
<thead><tr><th>%</th><th>speed</th><th>eta</th><th>idle</th><th>dir</th><th>file</th></tr></thead>
|
67
|
-
<tbody>
|
68
|
-
{% for u in ups %}
|
69
|
-
<tr><td>{{ u[0] }}</td><td>{{ u[1] }}</td><td>{{ u[2] }}</td><td>{{ u[3] }}</td><td><a href="{{ u[4] }}">{{ u[5]|e }}</a></td><td>{{ u[6]|e }}</td></tr>
|
70
|
-
{% endfor %}
|
71
|
-
</tbody>
|
72
|
-
</table>
|
73
|
-
{%- endif %}
|
74
|
-
|
75
75
|
{%- if rvol %}
|
76
76
|
<h1 id="f">you can browse:</h1>
|
77
77
|
<ul>
|
copyparty/web/splash.js.gz
CHANGED
Binary file
|
copyparty/web/svcs.html
CHANGED
@@ -192,6 +192,7 @@
|
|
192
192
|
<h1>partyfuse</h1>
|
193
193
|
<p>
|
194
194
|
<a href="{{ r }}/.cpr/a/partyfuse.py">partyfuse.py</a> -- fast, read-only,
|
195
|
+
needs <a href="{{ r }}/.cpr/deps/fuse.py">fuse.py</a> in the same folder,
|
195
196
|
<span class="os win">needs <a href="https://winfsp.dev/rel/">winfsp</a></span>
|
196
197
|
<span class="os lin">doesn't need root</span>
|
197
198
|
</p>
|
@@ -208,7 +209,6 @@
|
|
208
209
|
|
209
210
|
{% if args.smb %}
|
210
211
|
<h1>SMB / CIFS</h1>
|
211
|
-
<em><a href="https://github.com/SecureAuthCorp/impacket/issues/1433">bug:</a> max ~300 files in each folder</em>
|
212
212
|
|
213
213
|
<div class="os win">
|
214
214
|
<pre>
|
copyparty/web/ui.css.gz
CHANGED
Binary file
|
copyparty/web/util.js.gz
CHANGED
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: copyparty
|
3
|
-
Version: 1.15.
|
3
|
+
Version: 1.15.5
|
4
4
|
Summary: Portable file server with accelerated resumable uploads, deduplication, WebDAV, FTP, zeroconf, media indexer, video thumbnails, audio transcoding, and write-only folders
|
5
5
|
Author-email: ed <copyparty@ocv.me>
|
6
6
|
License: MIT
|
@@ -831,6 +831,7 @@ semi-intentional limitations:
|
|
831
831
|
|
832
832
|
* cleanup of expired shares only works when global option `e2d` is set, and/or at least one volume on the server has volflag `e2d`
|
833
833
|
* only folders from the same volume are shared; if you are sharing a folder which contains other volumes, then the contents of those volumes will not be available
|
834
|
+
* related to [IdP volumes being forgotten on shutdown](https://github.com/9001/copyparty/blob/hovudstraum/docs/idp.md#idp-volumes-are-forgotten-on-shutdown), any shares pointing into a user's IdP volume will be unavailable until that user makes their first request after a restart
|
834
835
|
* no option to "delete after first access" because tricky
|
835
836
|
* when linking something to discord (for example) it'll get accessed by their scraper and that would count as a hit
|
836
837
|
* browsers wouldn't be able to resume a broken download unless the requester's IP gets allowlisted for X minutes (ref. tricky)
|
@@ -1169,12 +1170,12 @@ some **BIG WARNINGS** specific to SMB/CIFS, in decreasing importance:
|
|
1169
1170
|
* [shadowing](#shadowing) probably works as expected but no guarantees
|
1170
1171
|
|
1171
1172
|
and some minor issues,
|
1172
|
-
* clients only see the first ~400 files in big folders;
|
1173
|
+
* clients only see the first ~400 files in big folders;
|
1174
|
+
* this was originally due to [impacket#1433](https://github.com/SecureAuthCorp/impacket/issues/1433) which was fixed in impacket-0.12, so you can disable the workaround with `--smb-nwa-1` but then you get unacceptably poor performance instead
|
1173
1175
|
* hot-reload of server config (`/?reload=cfg`) does not include the `[global]` section (commandline args)
|
1174
1176
|
* listens on the first IPv4 `-i` interface only (default = :: = 0.0.0.0 = all)
|
1175
1177
|
* login doesn't work on winxp, but anonymous access is ok -- remove all accounts from copyparty config for that to work
|
1176
1178
|
* win10 onwards does not allow connecting anonymously / without accounts
|
1177
|
-
* on windows, creating a new file through rightclick --> new --> textfile throws an error due to impacket limitations -- hit OK and F5 to get your file
|
1178
1179
|
* python3 only
|
1179
1180
|
* slow (the builtin webdav support in windows is 5x faster, and rclone-webdav is 30x faster)
|
1180
1181
|
|
@@ -1213,8 +1214,6 @@ note that this disables hotlinking because the opengraph spec demands it; to sne
|
|
1213
1214
|
|
1214
1215
|
you can also hotlink files regardless by appending `?raw` to the url
|
1215
1216
|
|
1216
|
-
NOTE: because discord (and maybe others) strip query args such as `?raw` in opengraph tags, any links which require a filekey or dirkey will not work
|
1217
|
-
|
1218
1217
|
if you want to entirely replace the copyparty response with your own jinja2 template, give the template filepath to `--og-tpl` or volflag `og_tpl` (all members of `HttpCli` are available through the `this` object)
|
1219
1218
|
|
1220
1219
|
|
@@ -1939,6 +1938,7 @@ interact with copyparty using non-browser clients
|
|
1939
1938
|
|
1940
1939
|
* FUSE: mount a copyparty server as a local filesystem
|
1941
1940
|
* cross-platform python client available in [./bin/](bin/)
|
1941
|
+
* able to mount nginx and iis directory listings too, not just copyparty
|
1942
1942
|
* can be downloaded from copyparty: controlpanel -> connect -> [partyfuse.py](http://127.0.0.1:3923/.cpr/a/partyfuse.py)
|
1943
1943
|
* [rclone](https://rclone.org/) as client can give ~5x performance, see [./docs/rclone.md](docs/rclone.md)
|
1944
1944
|
|
@@ -1978,7 +1978,7 @@ alternatively, some alternatives roughly sorted by speed (unreproducible benchma
|
|
1978
1978
|
|
1979
1979
|
* [rclone-webdav](./docs/rclone.md) (25s), read/WRITE (rclone v1.63 or later)
|
1980
1980
|
* [rclone-http](./docs/rclone.md) (26s), read-only
|
1981
|
-
* [partyfuse.py](./bin/#partyfusepy) (
|
1981
|
+
* [partyfuse.py](./bin/#partyfusepy) (26s), read-only
|
1982
1982
|
* [rclone-ftp](./docs/rclone.md) (47s), read/WRITE
|
1983
1983
|
* davfs2 (103s), read/WRITE
|
1984
1984
|
* [win10-webdav](#webdav-server) (138s), read/WRITE
|
@@ -2140,6 +2140,8 @@ volflag `dky` disables the actual key-check, meaning anyone can see the contents
|
|
2140
2140
|
|
2141
2141
|
volflag `dks` lets people enter subfolders as well, and also enables download-as-zip/tar
|
2142
2142
|
|
2143
|
+
if you enable dirkeys, it is probably a good idea to enable filekeys too, otherwise it will be impossible to hotlink files from a folder which was accessed using a dirkey
|
2144
|
+
|
2143
2145
|
dirkeys are generated based on another salt (`--dk-salt`) + filesystem-path and have a few limitations:
|
2144
2146
|
* the key does not change if the contents of the folder is modified
|
2145
2147
|
* if you need a new dirkey, either change the salt or rename the folder
|
@@ -2222,7 +2224,7 @@ enable [thumbnails](#thumbnails) of...
|
|
2222
2224
|
* **JPEG XL pictures:** `pyvips` or `ffmpeg`
|
2223
2225
|
|
2224
2226
|
enable [smb](#smb-server) support (**not** recommended):
|
2225
|
-
* `impacket==0.
|
2227
|
+
* `impacket==0.12.0`
|
2226
2228
|
|
2227
2229
|
`pyvips` gives higher quality thumbnails than `Pillow` and is 320% faster, using 270% more ram: `sudo apt install libvips42 && python3 -m pip install --user -U pyvips`
|
2228
2230
|
|
@@ -2296,7 +2298,7 @@ then again, if you are already into downloading shady binaries from the internet
|
|
2296
2298
|
|
2297
2299
|
## zipapp
|
2298
2300
|
|
2299
|
-
another emergency alternative, [copyparty.pyz](https://github.com/9001/copyparty/releases/latest/download/copyparty.pyz) has less features, requires python 3.7 or newer, worse compression, and more importantly is unable to benefit from more recent versions of jinja2 and such (which makes it less secure)... lots of drawbacks with this one really -- but it *may* just work if the regular sfx fails to start because the computer is messed up in certain funky ways, so it's worth a shot if all else fails
|
2301
|
+
another emergency alternative, [copyparty.pyz](https://github.com/9001/copyparty/releases/latest/download/copyparty.pyz) has less features, is slow, requires python 3.7 or newer, worse compression, and more importantly is unable to benefit from more recent versions of jinja2 and such (which makes it less secure)... lots of drawbacks with this one really -- but it does not unpack any temporay files to disk, so it *may* just work if the regular sfx fails to start because the computer is messed up in certain funky ways, so it's worth a shot if all else fails
|
2300
2302
|
|
2301
2303
|
run it by doubleclicking it, or try typing `python copyparty.pyz` in your terminal/console/commandline/telex if that fails
|
2302
2304
|
|
@@ -1,38 +1,38 @@
|
|
1
|
-
copyparty/__init__.py,sha256=
|
2
|
-
copyparty/__main__.py,sha256=
|
3
|
-
copyparty/__version__.py,sha256=
|
1
|
+
copyparty/__init__.py,sha256=Chqw7uXX4r_-a2p6-xthrrqVHFI4aZdW45sWU7UvqeE,2597
|
2
|
+
copyparty/__main__.py,sha256=igXfkIk20dnXiMD3bOgmomv2m1_STd46QADrPb52P6E,109533
|
3
|
+
copyparty/__version__.py,sha256=kIxyRw7J4J4tZ35LfBec0gjCU3PVbEq-j0P5Esc6kXw,257
|
4
4
|
copyparty/authsrv.py,sha256=Uw_RaCJIsXUzjYih4R2VLQOkDfUePLfidiW5ERvCtMo,98670
|
5
5
|
copyparty/broker_mp.py,sha256=jsHUM2BSfRVRyZT869iPCqYEHSqedk6VkwvygZwbEZE,4017
|
6
6
|
copyparty/broker_mpw.py,sha256=PYFgQfssOCfdI6qayW1ZjO1j1-7oez094muhYMbPOz0,3339
|
7
7
|
copyparty/broker_thr.py,sha256=MXrwjusP0z1LPURUhi5jx_TL3jrXhYcDrJPDSKu6EEU,1705
|
8
8
|
copyparty/broker_util.py,sha256=76mfnFOpX1gUUvtjm8UQI7jpTIaVINX10QonM-B7ggc,1680
|
9
|
-
copyparty/cert.py,sha256=
|
10
|
-
copyparty/cfg.py,sha256=
|
9
|
+
copyparty/cert.py,sha256=0ZAPeXeMR164vWn9GQU3JDKooYXEq_NOQkDeg543ivg,8009
|
10
|
+
copyparty/cfg.py,sha256=M9OEsKmsrWm5ibh6mTCevdwoBKSN1YrlrulPoHbr7uY,10000
|
11
11
|
copyparty/dxml.py,sha256=lZpg-kn-kQsXRtNY1n6fRaS-b7uXzMCyv8ovKnhZcZc,1548
|
12
12
|
copyparty/fsutil.py,sha256=5CshJWO7CflfaRRNOb3JxghUH7W5rmS_HWNmKfx42MM,4538
|
13
|
-
copyparty/ftpd.py,sha256=
|
14
|
-
copyparty/httpcli.py,sha256=
|
15
|
-
copyparty/httpconn.py,sha256=
|
16
|
-
copyparty/httpsrv.py,sha256=
|
13
|
+
copyparty/ftpd.py,sha256=VTx0gZUdK_0xRORMZT1XymSYvsXsCZs6-wsM2J4raYA,17459
|
14
|
+
copyparty/httpcli.py,sha256=eukvfi0OzIrAW6ICg-DDA3NoFBPPRQHvF_vuOiJ9ufc,190587
|
15
|
+
copyparty/httpconn.py,sha256=DN09_r3cPFN4UGCVtAhnIH6cBIDKF-fe4IgMeoHUnSc,6809
|
16
|
+
copyparty/httpsrv.py,sha256=TnfqA4edgO187y8fV0Q-lchnnD2bMSBTPZgncEjGMhY,17009
|
17
17
|
copyparty/ico.py,sha256=eWSxEae4wOCfheHl-m-wchYvFRAR_97kJDb4NGaB-Z8,3561
|
18
18
|
copyparty/mdns.py,sha256=vC078llnL1v0pvL3mnwacuStFHPJUQuxo9Opj-IbHL4,18155
|
19
|
-
copyparty/metrics.py,sha256=
|
19
|
+
copyparty/metrics.py,sha256=aV09nntEmKMIyde8xoPtj1ehDOQVQOHchRF4uMMNzqM,8855
|
20
20
|
copyparty/mtag.py,sha256=0UIti7JyB6j8rPJ1SlC7JmwlqDfBMjQhXgncxscJGPg,18893
|
21
21
|
copyparty/multicast.py,sha256=Ha27l2oATEa-Qo2WOzkeRgjAm6G_YDCfbVJWR-ao2UE,12319
|
22
22
|
copyparty/pwhash.py,sha256=AdLMLyIi2IDhGtbKIQOswKUxWvO7ARYYRF_ThsryOoc,4124
|
23
|
-
copyparty/smbd.py,sha256=
|
23
|
+
copyparty/smbd.py,sha256=Or7RF13cl1r3ncnpVh8BqyAGqH2Oa04O9iPZWCoB0Bo,14609
|
24
24
|
copyparty/ssdp.py,sha256=8iyF5sqIjATJLWcAtnJa8eadHosOn0CP4ywltzJ7bVY,7023
|
25
25
|
copyparty/star.py,sha256=tV5BbX6AiQ7N4UU8DYtSTckNYeoeey4DBqq4LjfymbY,3818
|
26
26
|
copyparty/sutil.py,sha256=JTMrQwcWH85hXB_cKG206eDZ967WZDGaP00AWvl_gB0,3214
|
27
27
|
copyparty/svchub.py,sha256=qLG2CE8VHro7I6FnYMwiij0LcBC5lJw-hiucBag3NHY,39939
|
28
|
-
copyparty/szip.py,sha256=
|
28
|
+
copyparty/szip.py,sha256=sDypi1_yR6-62fIZ_3D0L9PfIzCUiK_3JqcaJCvTBCs,8601
|
29
29
|
copyparty/tcpsrv.py,sha256=jM_Za64O8LEMfMrU4irJluIJZrU494e2b759r_KhaUQ,19881
|
30
30
|
copyparty/tftpd.py,sha256=jZbf2JpeJmkuQWJErmAPG-dKhtYNvIUHbkAgodSXw9Y,13582
|
31
31
|
copyparty/th_cli.py,sha256=o6FMkerYvAXS455z3DUossVztu_nzFlYSQhs6qN6Jt8,4636
|
32
32
|
copyparty/th_srv.py,sha256=hI9wY1E_9N9Cgqvtr8zADeVqqiLGTiTdAnYAA7WFvJw,29346
|
33
|
-
copyparty/u2idx.py,sha256=
|
34
|
-
copyparty/up2k.py,sha256=
|
35
|
-
copyparty/util.py,sha256
|
33
|
+
copyparty/u2idx.py,sha256=JjgqwgJBNj6sTn4PJfuqM3VEHqlmoyGC5bk4_92K2h0,13414
|
34
|
+
copyparty/up2k.py,sha256=TzCNQKiC-fxfV2EpXdy1oCA3yExpHyzrH6BmgFrTrJg,163817
|
35
|
+
copyparty/util.py,sha256=RrL6SBjgeVTyXZdZQ8RRFVQn72Jz0Y6DTGYr4LO3Phc,91329
|
36
36
|
copyparty/bos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
37
|
copyparty/bos/bos.py,sha256=Wb7eWsXJgR5AFlBR9ZOyKrLTwy-Kct9RrGiOu4Jo37Y,1622
|
38
38
|
copyparty/bos/path.py,sha256=yEjCq2ki9CvxA5sCT8pS0keEXwugs0ZeUyUhdBziOCI,777
|
@@ -40,7 +40,7 @@ copyparty/res/COPYING.txt,sha256=c1ZODkz9gwQsQ1nDHGHs0i4Nq0zBx_pRGITzPNtCYSY,105
|
|
40
40
|
copyparty/res/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
41
|
copyparty/res/insecure.pem,sha256=FEt7jgrn6ZHTlFopq_LFAN027YIoaHi0HQFBbzYnEwc,2876
|
42
42
|
copyparty/stolen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
|
-
copyparty/stolen/qrcodegen.py,sha256=
|
43
|
+
copyparty/stolen/qrcodegen.py,sha256=Nro-HiPGi5RFbiu78msCWnDllWeoDV4IBkzuG7WQqkU,22037
|
44
44
|
copyparty/stolen/surrogateescape.py,sha256=-ZfRWrbgJrh74dXfXLNMvo_iiCVUhXbFs_anHIrWPts,5573
|
45
45
|
copyparty/stolen/dnslib/__init__.py,sha256=SmYdaHdL5czxKxrOFGvzbfmojOthRky1GXKgmWj4QeM,159
|
46
46
|
copyparty/stolen/dnslib/bimap.py,sha256=j_ah40P3kOw0AQT5vvMcv7XbMtS0jV6Oe9YGCh7J57s,1182
|
@@ -55,9 +55,9 @@ copyparty/stolen/ifaddr/_posix.py,sha256=-67NdfGrCktfQPakT2fLbjl2U00QMvyBGkSvrUu
|
|
55
55
|
copyparty/stolen/ifaddr/_shared.py,sha256=uNC4SdEIgdSLKvuUzsf1aM-H1Xrc_9mpLoOT43YukGs,6206
|
56
56
|
copyparty/stolen/ifaddr/_win32.py,sha256=EE-QyoBgeB7lYQ6z62VjXNaRozaYfCkaJBHGNA8QtZM,4026
|
57
57
|
copyparty/web/baguettebox.js.gz,sha256=4dS8-r4si84ca71l98672ahnRI86Aq95MU-bc5knykk,7962
|
58
|
-
copyparty/web/browser.css.gz,sha256=
|
59
|
-
copyparty/web/browser.html,sha256=
|
60
|
-
copyparty/web/browser.js.gz,sha256=
|
58
|
+
copyparty/web/browser.css.gz,sha256=mQ0YsAtbRPzaRoVB8IN3aUTHPCpcIfdzzGBOekABSoM,11612
|
59
|
+
copyparty/web/browser.html,sha256=ISpfvWEawufJCYZIqvuXiyUgiXgjmOTtScz4zrEaypI,4870
|
60
|
+
copyparty/web/browser.js.gz,sha256=70pmmr2lL4pGRrszxyQPrtwDfk4DZ7Ig3kLXWK2E-9c,84921
|
61
61
|
copyparty/web/browser2.html,sha256=NRUZ08GH-e2YcGXcoz0UjYg6JIVF42u4IMX4HHwWTmg,1587
|
62
62
|
copyparty/web/cf.html,sha256=lJThtNFNAQT1ClCHHlivAkDGE0LutedwopXD62Z8Nys,589
|
63
63
|
copyparty/web/dbg-audio.js.gz,sha256=Ma-KZtK8LnmiwNvNKFKXMPYl_Nn_3U7GsJ6-DRWC2HE,688
|
@@ -71,21 +71,21 @@ copyparty/web/mde.html,sha256=ImBhQAaEUCke2M85QU_fl4X2XQExRLcEzgCEN8RNe9o,1759
|
|
71
71
|
copyparty/web/mde.js.gz,sha256=kN2eUSvr4mFuksfK4-4LimJmWdwsao39Sea2lWtu8L0,2224
|
72
72
|
copyparty/web/msg.css.gz,sha256=u90fXYAVrMD-jqwf5XFVC1ptSpSHZUe8Mez6PX101P8,300
|
73
73
|
copyparty/web/msg.html,sha256=w9CM3hkLLGJX9fWEaG4gSbTOPe2GcPqW8BpSCDiFzOI,977
|
74
|
-
copyparty/web/shares.css.gz,sha256=
|
75
|
-
copyparty/web/shares.html,sha256=
|
76
|
-
copyparty/web/shares.js.gz,sha256=
|
74
|
+
copyparty/web/shares.css.gz,sha256=T2fSezuluDVIiNIERAuUREByhHFlIwwNyx7EBOAVVyQ,499
|
75
|
+
copyparty/web/shares.html,sha256=ZNHtLBM-Y4BX2qa9AGTrZzZp_IP5PLM3QvFMYKolFfM,2494
|
76
|
+
copyparty/web/shares.js.gz,sha256=814O61mxLSWs0AO2fbGJ8d4BSPB7pE9NdkKiVf1gj6E,926
|
77
77
|
copyparty/web/splash.css.gz,sha256=RjdNoIT5BSxXRFu0ldMUH4ghRNUMCTs2mGKzstrpI6o,1033
|
78
|
-
copyparty/web/splash.html,sha256=
|
79
|
-
copyparty/web/splash.js.gz,sha256=
|
80
|
-
copyparty/web/svcs.html,sha256=
|
78
|
+
copyparty/web/splash.html,sha256=pUbsso_W3Q7bso8fy8qxh-fHDrrLm39mBBTIlTeH63w,5235
|
79
|
+
copyparty/web/splash.js.gz,sha256=Xoccku-2vE3tABo-88q3Cl4koHs_AE76T8QvMy4u6T8,2540
|
80
|
+
copyparty/web/svcs.html,sha256=P5YZimYLeQMT0uz6u3clQSNZRc5Zs0Ok-ffcbcGSYuc,11762
|
81
81
|
copyparty/web/svcs.js.gz,sha256=k81ZvZ3I-f4fMHKrNGGOgOlvXnCBz0mVjD-8mieoWCA,520
|
82
|
-
copyparty/web/ui.css.gz,sha256=
|
82
|
+
copyparty/web/ui.css.gz,sha256=dTAXEPgWB83CkYXlP4hWq18BrLFzRlYwxoCoM5rp-Yw,2786
|
83
83
|
copyparty/web/up2k.js.gz,sha256=t6mUaIYN8lrEJoWO_-2MZ9nIuEplimQgCqdWSsHnuGA,22811
|
84
|
-
copyparty/web/util.js.gz,sha256=
|
84
|
+
copyparty/web/util.js.gz,sha256=uh_NAVPiMcOCTy9oxUiDKmKh1GokTKBPe3FYNMMUYlM,14781
|
85
85
|
copyparty/web/w.hash.js.gz,sha256=7wP9EZQNXQxwZnCCFUVsi_-6TM9PLZJeZ9krutXRRj8,1060
|
86
86
|
copyparty/web/a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
|
-
copyparty/web/a/partyfuse.py,sha256=
|
88
|
-
copyparty/web/a/u2c.py,sha256=
|
87
|
+
copyparty/web/a/partyfuse.py,sha256=fa9bBYNJHvtWpNVjQyyFzx6JOK7MJL1u0zj80PBYQKs,27960
|
88
|
+
copyparty/web/a/u2c.py,sha256=QmEZOPJfOVmtVjHWP7XATyzvAAY1OzelikPKdRShOLg,46740
|
89
89
|
copyparty/web/a/webdav-cfg.bat,sha256=Y4NoGZlksAIg4cBMb7KdJrpKC6Nx97onaTl6yMjaimk,1449
|
90
90
|
copyparty/web/dd/2.png,sha256=gJ14XFPzaw95L6z92fSq9eMPikSQyu-03P1lgiGe0_I,258
|
91
91
|
copyparty/web/dd/3.png,sha256=4lho8Koz5tV7jJ4ODo6GMTScZfkqsT05yp48EDFIlyg,252
|
@@ -96,7 +96,8 @@ copyparty/web/deps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
96
96
|
copyparty/web/deps/busy.mp3.gz,sha256=EVphk1_HYyRKJmtpeK99vbAstF7ub1f9ndu020H8PQ8,106
|
97
97
|
copyparty/web/deps/easymde.css.gz,sha256=vWxfueI64rPikuqFj69wJBtGisqf93AheQtOZqgUI_c,3041
|
98
98
|
copyparty/web/deps/easymde.js.gz,sha256=1FykpDM7_FiL4EeZAg4Qcggjoo4PE_MBTgRcBWvjD90,77000
|
99
|
-
copyparty/web/deps/
|
99
|
+
copyparty/web/deps/fuse.py,sha256=6j4Zy3VpQg629pwwIW77v2LJ1hy-qlyrxwhXfKl9B7I,33426
|
100
|
+
copyparty/web/deps/marked.js.gz,sha256=8hEtz6O_fcajKb8Pl3bb6BRDHkrt0c7LBqb6OKTOyLo,22557
|
100
101
|
copyparty/web/deps/mini-fa.css.gz,sha256=CTPrNaH8OTVmxajrGP88E2MkjadY9_81TBVnd9sw9Y8,572
|
101
102
|
copyparty/web/deps/mini-fa.woff,sha256=L9DNncV2TIyvsrspMbJouvnnt7F068Hbn7YZYvN76AU,2784
|
102
103
|
copyparty/web/deps/prism.css.gz,sha256=Z_A6rJ3MN5KWnjvXaV787aTW_5DT-xjFd0YZ7_W-Krk,1468
|
@@ -105,9 +106,9 @@ copyparty/web/deps/prismd.css.gz,sha256=ObUlksQVr-OuYlTz-I4B23TeBg2QDVVGRnWBz8cV
|
|
105
106
|
copyparty/web/deps/scp.woff2,sha256=w99BDU5i8MukkMEL-iW0YO9H4vFFZSPWxbkH70ytaAg,8612
|
106
107
|
copyparty/web/deps/sha512.ac.js.gz,sha256=lFZaCLumgWxrvEuDr4bqdKHsqjX82AbVAb7_F45Yk88,7033
|
107
108
|
copyparty/web/deps/sha512.hw.js.gz,sha256=vqoXeracj-99Z5MfY3jK2N4WiSzYQdfjy0RnUlQDhSU,8110
|
108
|
-
copyparty-1.15.
|
109
|
-
copyparty-1.15.
|
110
|
-
copyparty-1.15.
|
111
|
-
copyparty-1.15.
|
112
|
-
copyparty-1.15.
|
113
|
-
copyparty-1.15.
|
109
|
+
copyparty-1.15.5.dist-info/LICENSE,sha256=gOr4h33pCsBEg9uIy9AYmb7qlocL4V9t2uPJS5wllr0,1072
|
110
|
+
copyparty-1.15.5.dist-info/METADATA,sha256=o3EaYdn7-JhJSuNd838dMe48Lv4KAberuypcFv5v03Q,135833
|
111
|
+
copyparty-1.15.5.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
112
|
+
copyparty-1.15.5.dist-info/entry_points.txt,sha256=4zw6a3rqASywQomiYLObjjlxybaI65LYYOTJwgKz7b0,128
|
113
|
+
copyparty-1.15.5.dist-info/top_level.txt,sha256=LnYUPsDyk-8kFgM6YJLG4h820DQekn81cObKSu9g-sI,10
|
114
|
+
copyparty-1.15.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|