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 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 # stable
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
- (manifest.channel === 'dev'
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": "dev",
4
- "channel": "dev",
5
- "appVersion": "0.14.0",
6
- "productName": "Francois Dev",
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": "7ee4f7aa72832975b403be998a96a698d3a0250b0a4ef3fff707c807defe62e4" },
9
- "linux-x64": { "name": "francois-linux-x64.tar.gz", "sha256": "20bf9182649d560c02e20866425c1cb032b2bcd5f35cbad244057b3730a4c597" },
10
- "win32-x64": { "name": "francois-win32-x64.zip", "sha256": "3d7631a88d3abecd7442c400c25036cc93f30cff1cfcc5b871b7edc773dcaed8" }
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "francois",
3
- "version": "0.14.0-dev.13",
3
+ "version": "0.14.1",
4
4
  "description": "Mission control for your Claude Code fleet — installs the Francois desktop app without an installer.",
5
5
  "license": "AGPL-3.0-only",
6
6
  "author": "Antoine Gimenez",