@danhachuel/thunderbolt 0.2.14 → 0.2.15

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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Este manual descreve a instalação local da UI Thunderbolt, baseada no MoneyPrinterTurbo, utilizando o pacote npm `@danhachuel/thunderbolt`. O fluxo recomendado instala automaticamente o ambiente Python, as dependências da aplicação, as dependências do MoneyPrinterTurbo, o Streamlit e o suporte FFmpeg através de `imageio-ffmpeg`.
4
4
 
5
- > **Versão deste manual:** 0.2.13
5
+ > **Versão deste manual:** 0.2.15
6
6
  > **Pacote npm:** `@danhachuel/thunderbolt`
7
7
  > **Porta padrão da UI:** `localhost:3030`
8
8
  > **Repositório:** [github.com/DanHachuel/thunderbolt](https://github.com/DanHachuel/thunderbolt)
@@ -100,13 +100,13 @@ Execute:
100
100
  Windows PowerShell ou MobaXterm:
101
101
 
102
102
  ```powershell
103
- npx.cmd --yes @danhachuel/thunderbolt@0.2.14 install
103
+ npx.cmd --yes @danhachuel/thunderbolt@0.2.15 install
104
104
  ```
105
105
 
106
106
  Linux/macOS:
107
107
 
108
108
  ```bash
109
- npx --yes @danhachuel/thunderbolt@0.2.14 install
109
+ npx --yes @danhachuel/thunderbolt@0.2.15 install
110
110
  ```
111
111
 
112
112
  A instalação normal é **segura para actualizações**: preserva `storage`, Blueprints, Brandings, configurações e artefactos do utilizador. Remove apenas `.venv`, o clone técnico do MoneyPrinterTurbo e dependências que serão recriadas. Uma pasta antiga sem dados do utilizador, como `C:\Users\<utilizador>\AppData\Local\hermes` da tentativa incompleta, pode ser removida; uma pasta antiga que contenha Blueprints, Brandings ou storage é preservada e apenas avisada no terminal. Feche processos Python, Node, Streamlit e MobaXterm que estejam a usar as pastas antes de executar.
package/README.md CHANGED
@@ -103,9 +103,9 @@ thunderbolt
103
103
  No Windows PowerShell, se `npx` for bloqueado por `npx.ps1`, use directamente `npx.cmd`:
104
104
 
105
105
  ```powershell
106
- npx.cmd --yes @danhachuel/thunderbolt@0.2.14 install
107
- npx.cmd --yes @danhachuel/thunderbolt@0.2.14 doctor
108
- npx.cmd --yes @danhachuel/thunderbolt@0.2.14
106
+ npx.cmd --yes @danhachuel/thunderbolt@0.2.15 install
107
+ npx.cmd --yes @danhachuel/thunderbolt@0.2.15 doctor
108
+ npx.cmd --yes @danhachuel/thunderbolt@0.2.15
109
109
  ```
110
110
 
111
111
  Como alternativa, pode permitir scripts para o seu utilizador:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danhachuel/thunderbolt",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "Thunderbolt — interface local para operação de canais faceless e motor MoneyPrinterTurbo",
5
5
  "main": "scripts/cli.mjs",
6
6
  "type": "module",
package/scripts/cli.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { spawn, spawnSync } from "node:child_process";
2
3
  import { existsSync, mkdirSync, readFileSync, copyFileSync, readdirSync } from "node:fs";
3
4
  import { homedir, platform } from "node:os";
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { existsSync, mkdirSync, readFileSync, rmSync, renameSync, cpSync, copyFileSync, readdirSync, writeFileSync } from "node:fs";
2
3
  import { homedir, platform } from "node:os";
3
4
  import { basename, dirname, join, resolve } from "node:path";