@mmmbuto/gemini-cli-termux 0.30.1-termux → 0.30.2-termux

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/bundle/gemini.js CHANGED
@@ -102496,7 +102496,7 @@ function getVersion() {
102496
102496
  }
102497
102497
  versionPromise = (async () => {
102498
102498
  const pkgJson = await getPackageJson(__dirname3);
102499
- return "0.30.1-termux";
102499
+ return "0.30.2-termux";
102500
102500
  })();
102501
102501
  return versionPromise;
102502
102502
  }
@@ -473140,25 +473140,13 @@ var copyToClipboard = async (text, settings) => {
473140
473140
  await clipboardy_default.write(text);
473141
473141
  };
473142
473142
  var getUrlOpenCommand = () => {
473143
- let openCmd;
473144
- switch (process.platform) {
473145
- case "darwin":
473146
- openCmd = "open";
473147
- break;
473148
- case "win32":
473149
- openCmd = "start";
473150
- break;
473151
- case "linux":
473152
- openCmd = "xdg-open";
473153
- break;
473154
- default:
473155
- openCmd = "xdg-open";
473156
- debugLogger.warn(
473157
- `Unknown platform: ${process.platform}. Attempting to open URLs with: ${openCmd}.`
473158
- );
473159
- break;
473143
+ if (process.platform === "android") {
473144
+ return "termux-open-url";
473145
+ }
473146
+ if (process.env.PREFIX?.includes("com.termux")) {
473147
+ return "termux-open-url";
473160
473148
  }
473161
- return openCmd;
473149
+ return "xdg-open";
473162
473150
  };
473163
473151
  function isAutoExecutableCommand(command2) {
473164
473152
  if (!command2) {
@@ -496844,7 +496832,7 @@ var WarningMessage = ({ text }) => {
496844
496832
  };
496845
496833
 
496846
496834
  // packages/cli/src/generated/git-commit.ts
496847
- var GIT_COMMIT_INFO2 = "9fe5c4284";
496835
+ var GIT_COMMIT_INFO2 = "0ed8edbe3";
496848
496836
 
496849
496837
  // packages/cli/src/ui/components/AboutBox.tsx
496850
496838
  init_dist8();
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@mmmbuto/gemini-cli-termux",
3
- "version": "0.30.1-termux"
3
+ "version": "0.30.2-termux"
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mmmbuto/gemini-cli-termux",
3
- "version": "0.30.1-termux",
3
+ "version": "0.30.2-termux",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },
@@ -14,7 +14,7 @@
14
14
  "url": "https://github.com/DioNanos/gemini-cli-termux.git"
15
15
  },
16
16
  "config": {
17
- "sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.30.1-termux"
17
+ "sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.30.2-termux"
18
18
  },
19
19
  "scripts": {
20
20
  "start": "crossenv NODE_ENV=development node scripts/start.js",