francois 0.34.1 → 0.34.3

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/lib/extensions.js CHANGED
@@ -87,8 +87,8 @@ function assertNoForbiddenArgv0(root) {
87
87
  * `sanitizeForDisplay` in src/features/extensions/extensions.ts — the manifest
88
88
  * `label` is untrusted, disk-supplied text and must never carry terminal
89
89
  * control sequences to stdout. */
90
- // eslint-disable-next-line no-control-regex
91
90
  const CONTROL_OR_BIDI_RE =
91
+ // eslint-disable-next-line no-control-regex -- the control range IS the subject
92
92
  /[\u0000-\u001f\u007f-\u009f\u061c\u200e\u200f\u202a-\u202e\u2066-\u2069]/gu;
93
93
  function sanitizeForDisplay(value) {
94
94
  return typeof value === 'string' ? value.replace(CONTROL_OR_BIDI_RE, '') : value;
package/manifest.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "repo": "antoine-gmnz/francois",
3
- "tag": "v0.34.1",
3
+ "tag": "v0.34.3",
4
4
  "channel": "stable",
5
- "appVersion": "0.34.1",
5
+ "appVersion": "0.34.3",
6
6
  "productName": "Francois",
7
7
  "assets": {
8
- "darwin-universal": { "name": "francois-darwin-universal.tar.gz", "sha256": "984daac73732e65a8cdadea87c86021a915ff06381b7f730fa0344ec2d39f0d4" },
9
- "linux-x64": { "name": "francois-linux-x64.tar.gz", "sha256": "94ef8721911cbd6cc500809b4b28f5587cb7f211cdbe5c73031500b008ad044b" },
10
- "win32-x64": { "name": "francois-win32-x64.zip", "sha256": "7b31d25bc912cf77a5409d9f081cc54e1400bbac9c03a96a316a116541e2d765" }
8
+ "darwin-universal": { "name": "francois-darwin-universal.tar.gz", "sha256": "bae55939ccb9c4f9b0efb163472a2395dfbed2ff51ab1ecf0141b96071058a1a" },
9
+ "linux-x64": { "name": "francois-linux-x64.tar.gz", "sha256": "5b5cd687d362bdd54eda5f1e8ffd08287cd8b52bcc15db1611821be45b12bb41" },
10
+ "win32-x64": { "name": "francois-win32-x64.zip", "sha256": "4d92346f40222abe0e333caed570fbc3576c35e8342d7a4f0a7968ffda57ff5f" }
11
11
  }
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "francois",
3
- "version": "0.34.1",
3
+ "version": "0.34.3",
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",