superprint 1.0.94 → 1.0.95
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 +2 -2
- package/cli.mjs +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
</p>
|
|
16
16
|
|
|
17
17
|
<p align="center">
|
|
18
|
-
<img alt="App" src="https://img.shields.io/badge/app-1.7.
|
|
19
|
-
<img alt="Launcher" src="https://img.shields.io/badge/npm-1.0.
|
|
18
|
+
<img alt="App" src="https://img.shields.io/badge/app-1.7.416-000000?style=flat-square">
|
|
19
|
+
<img alt="Launcher" src="https://img.shields.io/badge/npm-1.0.95-CB3837?style=flat-square">
|
|
20
20
|
<img alt="License" src="https://img.shields.io/badge/license-MIT-3DA639?style=flat-square">
|
|
21
21
|
</p>
|
|
22
22
|
|
package/cli.mjs
CHANGED
|
@@ -19,6 +19,12 @@ const isWin = process.platform === 'win32';
|
|
|
19
19
|
// ── URLs & chemins ────────────────────────────────────────────
|
|
20
20
|
const APP_VERSION_URL = 'https://superprint.cc/version.txt';
|
|
21
21
|
const APP_ZIP_URL = 'https://app.zigmoon.com/sp213-local.zip';
|
|
22
|
+
// ⚠️ MIN_APP_VERSION est un PLANCHER, pas la version courante : l'installation
|
|
23
|
+
// ÉCHOUE si le zip servi par APP_ZIP_URL est plus ANCIEN que ce plancher
|
|
24
|
+
// (ou que version.txt en ligne). Ne l'avancer donc qu'APRÈS avoir téléversé
|
|
25
|
+
// le zip ET le site, sinon `npx superprint` s'arrête sur « downloaded
|
|
26
|
+
// version is invalid or older than the online version ».
|
|
27
|
+
// La version du paquet npm, elle, vit dans package.json.
|
|
22
28
|
const MIN_APP_VERSION = '1.7.415';
|
|
23
29
|
const APP_DIR = path.join(os.homedir(), '.superprint', 'app');
|
|
24
30
|
const ZIP_PATH = path.join(os.homedir(), '.superprint', 'sp213-local.zip');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "superprint",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.95",
|
|
4
4
|
"description": "SuperPrint by 2.13 — professional desktop publishing (DTP) and prepress, in your browser. Free, no subscription, no account. CMYK/PDF up to 600 DPI with bleed & imposition, advanced typography, vector text export, offline PWA, the SP213 AI layout studio (local WebLLM or cloud) and the SuperTyPo font editor (decompose & reshape any typeface). Use online at https://superprint.cc or run locally with npx.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"superprint",
|