francois 0.14.0-dev.13 → 0.14.1
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 +1 -2
- package/install.js +1 -5
- package/manifest.json +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
**Mission control for your Claude Code fleet** — installed without an installer.
|
|
4
4
|
|
|
5
5
|
```sh
|
|
6
|
-
npm i -g francois
|
|
7
|
-
npm i -g francois@dev # rolling build of main
|
|
6
|
+
npm i -g francois
|
|
8
7
|
```
|
|
9
8
|
|
|
10
9
|
Then launch it **from the Start Menu, Launchpad or your applications menu** like
|
package/install.js
CHANGED
|
@@ -175,11 +175,7 @@ async function main() {
|
|
|
175
175
|
fail(
|
|
176
176
|
`checksum mismatch for ${asset.name}.\n` +
|
|
177
177
|
` expected ${asset.sha256}\n actual ${actual}\n` +
|
|
178
|
-
|
|
179
|
-
? 'The rolling `dev` release is replaced on every push to main, so an older\n' +
|
|
180
|
-
'dev package points at binaries that no longer exist. Install the current\n' +
|
|
181
|
-
'one: npm i -g francois@dev'
|
|
182
|
-
: 'Refusing to install a binary that does not match the published release.'),
|
|
178
|
+
'Refusing to install a binary that does not match the published release.',
|
|
183
179
|
);
|
|
184
180
|
}
|
|
185
181
|
|
package/manifest.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"repo": "antoine-gmnz/francois",
|
|
3
|
-
"tag": "
|
|
4
|
-
"channel": "
|
|
5
|
-
"appVersion": "0.14.
|
|
6
|
-
"productName": "Francois
|
|
3
|
+
"tag": "v0.14.1",
|
|
4
|
+
"channel": "stable",
|
|
5
|
+
"appVersion": "0.14.1",
|
|
6
|
+
"productName": "Francois",
|
|
7
7
|
"assets": {
|
|
8
|
-
"darwin-universal": { "name": "francois-darwin-universal.tar.gz", "sha256": "
|
|
9
|
-
"linux-x64": { "name": "francois-linux-x64.tar.gz", "sha256": "
|
|
10
|
-
"win32-x64": { "name": "francois-win32-x64.zip", "sha256": "
|
|
8
|
+
"darwin-universal": { "name": "francois-darwin-universal.tar.gz", "sha256": "7cc3d54ddb0b22e1a677f4d7ce2b6343115febc6c5fb567f8d881672c01334a2" },
|
|
9
|
+
"linux-x64": { "name": "francois-linux-x64.tar.gz", "sha256": "341b7f4236f7cc0cb4cabd35c2189bd3157114e4c53ddfeeb5177be6de16281b" },
|
|
10
|
+
"win32-x64": { "name": "francois-win32-x64.zip", "sha256": "5b51ee04983d2845203c07ed0f45628adfd0b81b8e0f9b3ddc624b3eb28a6ac4" }
|
|
11
11
|
}
|
|
12
12
|
}
|
package/package.json
CHANGED