weed-cli 2.3.0__tar.gz → 2.4.0__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.
Files changed (29) hide show
  1. {weed_cli-2.3.0/weed_cli.egg-info → weed_cli-2.4.0}/PKG-INFO +17 -1
  2. {weed_cli-2.3.0 → weed_cli-2.4.0}/README.md +16 -0
  3. {weed_cli-2.3.0 → weed_cli-2.4.0}/pyproject.toml +1 -1
  4. {weed_cli-2.3.0 → weed_cli-2.4.0/weed_cli.egg-info}/PKG-INFO +17 -1
  5. {weed_cli-2.3.0 → weed_cli-2.4.0}/LICENSE +0 -0
  6. {weed_cli-2.3.0 → weed_cli-2.4.0}/dht.py +0 -0
  7. {weed_cli-2.3.0 → weed_cli-2.4.0}/discovery_relay.py +0 -0
  8. {weed_cli-2.3.0 → weed_cli-2.4.0}/lightning_settle.py +0 -0
  9. {weed_cli-2.3.0 → weed_cli-2.4.0}/node.py +0 -0
  10. {weed_cli-2.3.0 → weed_cli-2.4.0}/poc_reputation.py +0 -0
  11. {weed_cli-2.3.0 → weed_cli-2.4.0}/setup.cfg +0 -0
  12. {weed_cli-2.3.0 → weed_cli-2.4.0}/shell.py +0 -0
  13. {weed_cli-2.3.0 → weed_cli-2.4.0}/tests/test_dht.py +0 -0
  14. {weed_cli-2.3.0 → weed_cli-2.4.0}/tests/test_discovery_relay.py +0 -0
  15. {weed_cli-2.3.0 → weed_cli-2.4.0}/tests/test_host_live_reload.py +0 -0
  16. {weed_cli-2.3.0 → weed_cli-2.4.0}/tests/test_node_manifest.py +0 -0
  17. {weed_cli-2.3.0 → weed_cli-2.4.0}/tests/test_orbit_ws.py +0 -0
  18. {weed_cli-2.3.0 → weed_cli-2.4.0}/tests/test_timing_challenge.py +0 -0
  19. {weed_cli-2.3.0 → weed_cli-2.4.0}/tests/test_tunnel_failover.py +0 -0
  20. {weed_cli-2.3.0 → weed_cli-2.4.0}/tests/test_web_ui_api.py +0 -0
  21. {weed_cli-2.3.0 → weed_cli-2.4.0}/tests/testutil.py +0 -0
  22. {weed_cli-2.3.0 → weed_cli-2.4.0}/tunnel_relay.py +0 -0
  23. {weed_cli-2.3.0 → weed_cli-2.4.0}/web_ui.py +0 -0
  24. {weed_cli-2.3.0 → weed_cli-2.4.0}/weed.py +0 -0
  25. {weed_cli-2.3.0 → weed_cli-2.4.0}/weed_cli.egg-info/SOURCES.txt +0 -0
  26. {weed_cli-2.3.0 → weed_cli-2.4.0}/weed_cli.egg-info/dependency_links.txt +0 -0
  27. {weed_cli-2.3.0 → weed_cli-2.4.0}/weed_cli.egg-info/entry_points.txt +0 -0
  28. {weed_cli-2.3.0 → weed_cli-2.4.0}/weed_cli.egg-info/requires.txt +0 -0
  29. {weed_cli-2.3.0 → weed_cli-2.4.0}/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.3.0
3
+ Version: 2.4.0
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,22 @@ 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
+ ### Orbit Visualizer plugins
205
+
206
+ The visualizer's modes and its Fade transitions are both open registries:
207
+ `window.orbitViz.registerMode({id, label, draw(ctx), init?, teardown?})`
208
+ and `window.orbitViz.registerTransition({id, label, draw(ctx)})`, with
209
+ `unregister*`/`list*` to match (the contracts are documented at the top
210
+ of `web/orbit_visualizer.js`). A registered mode gets a button, an entry
211
+ in the narrow-screen dropdown, a place in arrow/pad cycling and the MIDI
212
+ mode selector; a registered transition gets a Fade option and a turn in
213
+ "Random". A plugin that throws is logged once and disabled without
214
+ taking the draw loop down. `web/orbit_extras.js` (loaded by default) is
215
+ built entirely on that API and adds Halftone, Lava, Terrain, Rain,
216
+ Lissajous, Ripples and Cube, plus the Melt, Dissolve, Iris, Shatter,
217
+ Wave, Spin, Zoom blur and RGB split transitions; `web/orbit_plugin_example.js`
218
+ is a minimal one to copy.
219
+
204
220
  ### Docker
205
221
 
206
222
  `Dockerfile.node` + `docker-compose.node.yml` package `web_ui.py` to run
@@ -169,6 +169,22 @@ 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
+ ### Orbit Visualizer plugins
173
+
174
+ The visualizer's modes and its Fade transitions are both open registries:
175
+ `window.orbitViz.registerMode({id, label, draw(ctx), init?, teardown?})`
176
+ and `window.orbitViz.registerTransition({id, label, draw(ctx)})`, with
177
+ `unregister*`/`list*` to match (the contracts are documented at the top
178
+ of `web/orbit_visualizer.js`). A registered mode gets a button, an entry
179
+ in the narrow-screen dropdown, a place in arrow/pad cycling and the MIDI
180
+ mode selector; a registered transition gets a Fade option and a turn in
181
+ "Random". A plugin that throws is logged once and disabled without
182
+ taking the draw loop down. `web/orbit_extras.js` (loaded by default) is
183
+ built entirely on that API and adds Halftone, Lava, Terrain, Rain,
184
+ Lissajous, Ripples and Cube, plus the Melt, Dissolve, Iris, Shatter,
185
+ Wave, Spin, Zoom blur and RGB split transitions; `web/orbit_plugin_example.js`
186
+ is a minimal one to copy.
187
+
172
188
  ### Docker
173
189
 
174
190
  `Dockerfile.node` + `docker-compose.node.yml` package `web_ui.py` to run
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "weed-cli"
7
- version = "2.3.0"
7
+ version = "2.4.0"
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.3.0
3
+ Version: 2.4.0
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,22 @@ 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
+ ### Orbit Visualizer plugins
205
+
206
+ The visualizer's modes and its Fade transitions are both open registries:
207
+ `window.orbitViz.registerMode({id, label, draw(ctx), init?, teardown?})`
208
+ and `window.orbitViz.registerTransition({id, label, draw(ctx)})`, with
209
+ `unregister*`/`list*` to match (the contracts are documented at the top
210
+ of `web/orbit_visualizer.js`). A registered mode gets a button, an entry
211
+ in the narrow-screen dropdown, a place in arrow/pad cycling and the MIDI
212
+ mode selector; a registered transition gets a Fade option and a turn in
213
+ "Random". A plugin that throws is logged once and disabled without
214
+ taking the draw loop down. `web/orbit_extras.js` (loaded by default) is
215
+ built entirely on that API and adds Halftone, Lava, Terrain, Rain,
216
+ Lissajous, Ripples and Cube, plus the Melt, Dissolve, Iris, Shatter,
217
+ Wave, Spin, Zoom blur and RGB split transitions; `web/orbit_plugin_example.js`
218
+ is a minimal one to copy.
219
+
204
220
  ### Docker
205
221
 
206
222
  `Dockerfile.node` + `docker-compose.node.yml` package `web_ui.py` to run
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