Skip to content

Commit cddedd3

Browse files
committed
v1.16.13
1 parent 4d6626b commit cddedd3

File tree

4 files changed

+46
-5
lines changed

4 files changed

+46
-5
lines changed

copyparty/__version__.py

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

3-
VERSION = (1, 16, 12)
3+
VERSION = (1, 16, 13)
44
CODENAME = "COPYparty"
5-
BUILD_DT = (2025, 2, 9)
5+
BUILD_DT = (2025, 2, 13)
66

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

copyparty/authsrv.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2806,7 +2806,9 @@ def cgen(self) -> None:
28062806
zs = "c ihead ohead mtm mtp on403 on404 xac xad xar xau xiu xban xbc xbd xbr xbu xm"
28072807
lst = set(zs.split())
28082808
askip = set("a v c vc cgen exp_lg exp_md theme".split())
2809-
fskip = set("exp_lg exp_md mv_re_r mv_re_t rm_re_r rm_re_t".split())
2809+
2810+
t = "exp_lg exp_md ext_th_d mv_re_r mv_re_t rm_re_r rm_re_t srch_re_dots srch_re_nodot"
2811+
fskip = set(t.split())
28102812

28112813
# keymap from argv to vflag
28122814
amap = vf_bmap()

docs/changelog.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
2+
# 2025-0209-2331 `v1.16.12` RTT
3+
4+
## 🧪 new features
5+
6+
* show rtt (network latency to server, including request processing time) in the top status text d27f1104
7+
* and log the client-reported RTT to serverlog 20ddeb6e
8+
* remember file selection when changing folders c7db08ed
9+
* good for when you accidentally navigate elsewhere
10+
* option to restrict download-as-zip/tar to admins-only c87af9e8
11+
* #135 add [bubbleparty](https://github.com/9001/copyparty/blob/hovudstraum/bin/README.md#bubblepartysh), thx @coderofsalvation! 3582a100
12+
* runs copyparty in a [sandbox](https://github.com/containers/bubblewrap), making it harder to gain unintended access through bugs in python or copyparty
13+
* better alternative to [prisonparty](https://github.com/9001/copyparty/tree/hovudstraum/bin#prisonpartysh), more similar to [the sandboxing in the nixos package](https://github.com/9001/copyparty/blob/7dda77dcb/contrib/nixos/modules/copyparty.nix#L232-L272)
14+
* new plugin: [quickmove](https://github.com/9001/copyparty/blob/hovudstraum/contrib/plugins/quickmove.js) 46f9e9ef
15+
* adds hotkey `W` to quickly move selected files into a subfolder
16+
* #133 new plugin: [graft-thumbs.js](https://github.com/9001/copyparty/blob/hovudstraum/contrib/plugins/graft-thumbs.js) 6c202eff
17+
* in folders with foobar.mp3 and foobar.png, can copy the thumbnail from the png to the jpg (and then hide the png)
18+
* handlers: add [http-redirect example](https://github.com/9001/copyparty/blob/hovudstraum/bin/handlers/redirect.py) 22cbd2db
19+
* add [ping.html](https://github.com/9001/copyparty/blob/hovudstraum/srv/ping.html) 7de9d15a 910797cc
20+
21+
## 🩹 bugfixes
22+
23+
* improve iPad detection so they get opus instead of mp3 12dcea4f
24+
25+
## 🔧 other changes
26+
27+
* safeguard against accidental config loss cd71b505
28+
* while no copyparty servers have ended up in this unfortunate situation yet (afaik), be proactive and borrow some experience from other docker-based services
29+
* readme: improve config examples 32e90859
30+
* improve serverlog entries regarding 403s b020fd4a
31+
* #132 mention fuse permissions in readme d9d2a092
32+
* traefik-example: fix disconnect during big uploads 6a9ffe7e
33+
* try to show an appropriate warning for media that the browser doesn't support playing 4ef35263
34+
* was an attempt at detecting iphones failing to play high-color-precision webm files, but safari doesn't seem to realize itself that playback has failed, ah well
35+
* copyparty.exe: update to python 3.12.9
36+
* update deps: dompurify 3.2.4
37+
38+
39+
140
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
241
# 2025-0127-0140 `v1.16.11` fix no-acode
342

tests/util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ def __init__(self, a=None, v=None, c=None, **ka0):
150150
ex = "ah_alg bname chpw_db doctitle df exit favico idp_h_usr ipa html_head lg_sba lg_sbf log_fk md_sba md_sbf name og_desc og_site og_th og_title og_title_a og_title_v og_title_i shr tcolor textfiles unlist vname xff_src R RS SR"
151151
ka.update(**{k: "" for k in ex.split()})
152152

153-
ex = "ban_403 ban_404 ban_422 ban_pw ban_url"
153+
ex = "ban_403 ban_404 ban_422 ban_pw ban_url spinner"
154154
ka.update(**{k: "no" for k in ex.split()})
155155

156-
ex = "grp on403 on404 xac xad xar xau xban xbc xbd xbr xbu xiu xm"
156+
ex = "ext_th grp on403 on404 xac xad xar xau xban xbc xbd xbr xbu xiu xm"
157157
ka.update(**{k: [] for k in ex.split()})
158158

159159
ex = "exp_lg exp_md"

0 commit comments

Comments
 (0)