weed-cli 2.4.2__tar.gz → 2.4.4__tar.gz
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.
- {weed_cli-2.4.2/weed_cli.egg-info → weed_cli-2.4.4}/PKG-INFO +6 -1
- {weed_cli-2.4.2 → weed_cli-2.4.4}/README.md +5 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/pyproject.toml +1 -1
- {weed_cli-2.4.2 → weed_cli-2.4.4/weed_cli.egg-info}/PKG-INFO +6 -1
- {weed_cli-2.4.2 → weed_cli-2.4.4}/LICENSE +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/dht.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/discovery_relay.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/lightning_settle.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/node.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/poc_reputation.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/setup.cfg +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/shell.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/tests/test_dht.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/tests/test_discovery_relay.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/tests/test_host_live_reload.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/tests/test_node_manifest.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/tests/test_orbit_ws.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/tests/test_timing_challenge.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/tests/test_tunnel_failover.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/tests/test_web_ui_api.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/tests/testutil.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/tunnel_relay.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/web_ui.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/weed.py +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/weed_cli.egg-info/SOURCES.txt +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/weed_cli.egg-info/dependency_links.txt +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/weed_cli.egg-info/entry_points.txt +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/weed_cli.egg-info/requires.txt +0 -0
- {weed_cli-2.4.2 → weed_cli-2.4.4}/weed_cli.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: weed-cli
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.4
|
|
4
4
|
Summary: Censorship-resistant video PoC — discovery/hosting/download over signed relay events, a real Kademlia DHT, or a TLS-capable NAT-traversal tunnel
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: p2p,video,censorship-resistant,discovery,dht,kademlia,nat-traversal
|
|
@@ -201,6 +201,11 @@ Includes real HTTP range support (`/api/stream/<job_id>`) so a
|
|
|
201
201
|
`<video>` tag can seek a completed download instead of downloading it
|
|
202
202
|
blind.
|
|
203
203
|
|
|
204
|
+
The visualizer's 🎹 panel binds an AKAI MPK mini (or any Web MIDI
|
|
205
|
+
controller) to modes, transitions and sliders; **export** saves the
|
|
206
|
+
keymap as a `.json` file and **import** loads one, so a layout travels
|
|
207
|
+
between browsers and machines.
|
|
208
|
+
|
|
204
209
|
The player's ⇄ button is **video swap**: pick another download whose
|
|
205
210
|
picture stands in for the current track's — for an mp3 or a
|
|
206
211
|
static-image video, so the visualizer (and the player window) have real
|
|
@@ -169,6 +169,11 @@ Includes real HTTP range support (`/api/stream/<job_id>`) so a
|
|
|
169
169
|
`<video>` tag can seek a completed download instead of downloading it
|
|
170
170
|
blind.
|
|
171
171
|
|
|
172
|
+
The visualizer's 🎹 panel binds an AKAI MPK mini (or any Web MIDI
|
|
173
|
+
controller) to modes, transitions and sliders; **export** saves the
|
|
174
|
+
keymap as a `.json` file and **import** loads one, so a layout travels
|
|
175
|
+
between browsers and machines.
|
|
176
|
+
|
|
172
177
|
The player's ⇄ button is **video swap**: pick another download whose
|
|
173
178
|
picture stands in for the current track's — for an mp3 or a
|
|
174
179
|
static-image video, so the visualizer (and the player window) have real
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "weed-cli"
|
|
7
|
-
version = "2.4.
|
|
7
|
+
version = "2.4.4"
|
|
8
8
|
description = "Censorship-resistant video PoC — discovery/hosting/download over signed relay events, a real Kademlia DHT, or a TLS-capable NAT-traversal tunnel"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: weed-cli
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.4
|
|
4
4
|
Summary: Censorship-resistant video PoC — discovery/hosting/download over signed relay events, a real Kademlia DHT, or a TLS-capable NAT-traversal tunnel
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: p2p,video,censorship-resistant,discovery,dht,kademlia,nat-traversal
|
|
@@ -201,6 +201,11 @@ Includes real HTTP range support (`/api/stream/<job_id>`) so a
|
|
|
201
201
|
`<video>` tag can seek a completed download instead of downloading it
|
|
202
202
|
blind.
|
|
203
203
|
|
|
204
|
+
The visualizer's 🎹 panel binds an AKAI MPK mini (or any Web MIDI
|
|
205
|
+
controller) to modes, transitions and sliders; **export** saves the
|
|
206
|
+
keymap as a `.json` file and **import** loads one, so a layout travels
|
|
207
|
+
between browsers and machines.
|
|
208
|
+
|
|
204
209
|
The player's ⇄ button is **video swap**: pick another download whose
|
|
205
210
|
picture stands in for the current track's — for an mp3 or a
|
|
206
211
|
static-image video, so the visualizer (and the player window) have real
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|