tackbox 0.1.71 → 0.1.72
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.
- package/README.md +8 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -191,9 +191,14 @@ fetched separately and cached per version:
|
|
|
191
191
|
wheel's `engines.json`, and
|
|
192
192
|
unpacks it once into `$XDG_DATA_HOME/tackbox/engines/<version>/`
|
|
193
193
|
(default `~/.local/share/...`; override `TACKBOX_ENGINES_DIR`).
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
194
|
+
A machine-wide per-version lock makes concurrent first runs share
|
|
195
|
+
one download: one process fetches and verifies while every other
|
|
196
|
+
process waits and then reuses the committed store. Every later thin
|
|
197
|
+
version reuses that one copy, so a stream of `@latest` patch bumps
|
|
198
|
+
never re-materializes the engines. Installed engine versions coexist
|
|
199
|
+
rather than deleting one another during normal commands, so an older
|
|
200
|
+
thin client cannot force a re-download. Bumped only when an engine
|
|
201
|
+
changes.
|
|
197
202
|
|
|
198
203
|
After the first fetch tackbox runs fully offline until the engine
|
|
199
204
|
version changes. Platform wheels cover Linux x86_64/arm64 (manylinux),
|
package/package.json
CHANGED