shellx-cli 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/bundle/shellx.js +11 -13
  2. package/package.json +1 -1
package/bundle/shellx.js CHANGED
@@ -138007,7 +138007,7 @@ var init_git_commit = __esm({
138007
138007
  "packages/core/dist/src/generated/git-commit.js"() {
138008
138008
  "use strict";
138009
138009
  GIT_COMMIT_INFO = "4e931a59";
138010
- CLI_VERSION = "0.0.1";
138010
+ CLI_VERSION = "0.0.3";
138011
138011
  }
138012
138012
  });
138013
138013
 
@@ -150655,7 +150655,7 @@ function createContentGeneratorConfig(config, authType) {
150655
150655
  return contentGeneratorConfig;
150656
150656
  }
150657
150657
  async function createContentGenerator(config, gcConfig, sessionId2) {
150658
- const version2 = "0.0.1";
150658
+ const version2 = "0.0.3";
150659
150659
  const userAgent2 = `GeminiCLI/${version2} (${process.platform}; ${process.arch})`;
150660
150660
  const baseHeaders = {
150661
150661
  "User-Agent": userAgent2
@@ -236835,7 +236835,7 @@ var init_shellx_manager = __esm({
236835
236835
  SHELLX_INSTALL_DIR = path31.join(os13.homedir(), ".shellx");
236836
236836
  SHELLX_BIN_DIR = path31.join(SHELLX_INSTALL_DIR, "bin");
236837
236837
  SHELLX_VERSION_FILE = path31.join(SHELLX_INSTALL_DIR, "version.txt");
236838
- SHELLX_APK_FILE = path31.join(SHELLX_INSTALL_DIR, "shellx.apk");
236838
+ SHELLX_APK_FILE = path31.join(SHELLX_BIN_DIR, "shellx.apk");
236839
236839
  }
236840
236840
  });
236841
236841
 
@@ -298822,7 +298822,7 @@ async function getPackageJson() {
298822
298822
  // packages/cli/src/utils/version.ts
298823
298823
  async function getCliVersion() {
298824
298824
  const pkgJson = await getPackageJson();
298825
- return "0.0.1";
298825
+ return "0.0.3";
298826
298826
  }
298827
298827
 
298828
298828
  // packages/cli/src/ui/commands/aboutCommand.ts
@@ -322984,9 +322984,7 @@ function AuthDialog({
322984
322984
  }
322985
322985
  ) }),
322986
322986
  errorMessage && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Box_default, { marginTop: 1, children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Text, { color: Colors.AccentRed, children: errorMessage }) }),
322987
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Box_default, { marginTop: 1, children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Text, { color: Colors.Gray, children: "(Use Enter to select)" }) }),
322988
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Box_default, { marginTop: 1, children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Text, { children: "Terms of Services and Privacy Notice for Gemini CLI" }) }),
322989
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Box_default, { marginTop: 1, children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Text, { color: Colors.AccentBlue, children: "https://github.com/google-gemini/gemini-cli/blob/main/docs/tos-privacy.md" }) })
322987
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Box_default, { marginTop: 1, children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Text, { color: Colors.Gray, children: "(Use Enter to select)" }) })
322990
322988
  ]
322991
322989
  }
322992
322990
  );
@@ -329684,7 +329682,7 @@ var Tips = ({ config }) => {
329684
329682
  " ",
329685
329683
  /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(Text, { bold: true, color: Colors.AccentPurple, children: "GEMINI.md" }),
329686
329684
  " ",
329687
- "files to customize your interactions with Gemini."
329685
+ "files to customize your interactions with ShellX."
329688
329686
  ] }),
329689
329687
  /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(Text, { color: Colors.Foreground, children: [
329690
329688
  geminiMdFileCount === 0 ? "4." : "3.",
@@ -333436,7 +333434,7 @@ function getInstallationInfo(projectRoot, isAutoUpdateDisabled) {
333436
333434
  }
333437
333435
  }
333438
333436
  if (realPath.includes("/.pnpm/global")) {
333439
- const updateCommand3 = "pnpm add -g @google/gemini-cli@latest";
333437
+ const updateCommand3 = "pnpm add -g shellx-cli@latest";
333440
333438
  return {
333441
333439
  packageManager: "pnpm" /* PNPM */,
333442
333440
  isGlobal: true,
@@ -333445,7 +333443,7 @@ function getInstallationInfo(projectRoot, isAutoUpdateDisabled) {
333445
333443
  };
333446
333444
  }
333447
333445
  if (realPath.includes("/.yarn/global")) {
333448
- const updateCommand3 = "yarn global add @google/gemini-cli@latest";
333446
+ const updateCommand3 = "yarn global add shellx-cli@latest";
333449
333447
  return {
333450
333448
  packageManager: "yarn" /* YARN */,
333451
333449
  isGlobal: true,
@@ -333461,7 +333459,7 @@ function getInstallationInfo(projectRoot, isAutoUpdateDisabled) {
333461
333459
  };
333462
333460
  }
333463
333461
  if (realPath.includes("/.bun/bin")) {
333464
- const updateCommand3 = "bun add -g @google/gemini-cli@latest";
333462
+ const updateCommand3 = "bun add -g shellx-cli@latest";
333465
333463
  return {
333466
333464
  packageManager: "bun" /* BUN */,
333467
333465
  isGlobal: true,
@@ -333484,7 +333482,7 @@ function getInstallationInfo(projectRoot, isAutoUpdateDisabled) {
333484
333482
  updateMessage: "Locally installed. Please update via your project's package.json."
333485
333483
  };
333486
333484
  }
333487
- const updateCommand2 = "npm install -g @google/gemini-cli@latest";
333485
+ const updateCommand2 = "npm install -g shellx-cli@latest";
333488
333486
  return {
333489
333487
  packageManager: "npm" /* NPM */,
333490
333488
  isGlobal: true,
@@ -335465,7 +335463,7 @@ var homeDirectoryCheck = {
335465
335463
  fs67.realpath(os27.homedir())
335466
335464
  ]);
335467
335465
  if (workspaceRealPath === homeRealPath) {
335468
- return "You are running Gemini CLI in your home directory. It is recommended to run in a project-specific directory.";
335466
+ return "You are running ShellX CLI in your home directory. It is recommended to run in a project-specific directory.";
335469
335467
  }
335470
335468
  return null;
335471
335469
  } catch (_err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shellx-cli",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },