twokey 1.0.23 → 1.0.24

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.
Files changed (2) hide show
  1. package/bin/twokey.js +4 -2
  2. package/package.json +1 -1
package/bin/twokey.js CHANGED
@@ -495,10 +495,12 @@ function withManagedBinPath(baseEnv) {
495
495
  }
496
496
  env.PATH = parts.join(":");
497
497
  // Remove variables that interfere with Python virtual environments.
498
- // An inherited PYTHONHOME or PYTHONPATH causes the venv interpreter to look
499
- // for the standard library (including "encodings") in the wrong location.
498
+ // AppImage/library-loader state can make system Python import the wrong
499
+ // standard library or fail to load extension modules such as "_ssl".
500
500
  delete env.PYTHONHOME;
501
501
  delete env.PYTHONPATH;
502
+ delete env.LD_LIBRARY_PATH;
503
+ delete env.LD_PRELOAD;
502
504
  return env;
503
505
  }
504
506
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "twokey",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "Linux-first desktop AI assistant built with Tauri, React, and TypeScript.",
5
5
  "license": "MIT",
6
6
  "repository": {