shellx-cli 0.0.1 → 0.0.2

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 +5 -5
  2. package/package.json +1 -1
package/bundle/shellx.js CHANGED
@@ -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.2";
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.2";
298826
298826
  }
298827
298827
 
298828
298828
  // packages/cli/src/ui/commands/aboutCommand.ts
@@ -329684,7 +329684,7 @@ var Tips = ({ config }) => {
329684
329684
  " ",
329685
329685
  /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(Text, { bold: true, color: Colors.AccentPurple, children: "GEMINI.md" }),
329686
329686
  " ",
329687
- "files to customize your interactions with Gemini."
329687
+ "files to customize your interactions with ShellX."
329688
329688
  ] }),
329689
329689
  /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(Text, { color: Colors.Foreground, children: [
329690
329690
  geminiMdFileCount === 0 ? "4." : "3.",
@@ -335465,7 +335465,7 @@ var homeDirectoryCheck = {
335465
335465
  fs67.realpath(os27.homedir())
335466
335466
  ]);
335467
335467
  if (workspaceRealPath === homeRealPath) {
335468
- return "You are running Gemini CLI in your home directory. It is recommended to run in a project-specific directory.";
335468
+ return "You are running ShellX CLI in your home directory. It is recommended to run in a project-specific directory.";
335469
335469
  }
335470
335470
  return null;
335471
335471
  } 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.2",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },