@mmmbuto/gemini-cli-termux 0.22.4-termux → 0.22.5-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 +11 -6
- package/package.json +1 -1
package/bundle/gemini.js
CHANGED
|
@@ -93738,7 +93738,7 @@ import { fileURLToPath as fileURLToPath4 } from "node:url";
|
|
|
93738
93738
|
import path12 from "node:path";
|
|
93739
93739
|
async function getVersion() {
|
|
93740
93740
|
const pkgJson = await getPackageJson(__dirname3);
|
|
93741
|
-
return "0.22.
|
|
93741
|
+
return "0.22.5-termux";
|
|
93742
93742
|
}
|
|
93743
93743
|
var __filename, __dirname3;
|
|
93744
93744
|
var init_version2 = __esm({
|
|
@@ -439284,7 +439284,7 @@ var WarningMessage = ({ text }) => {
|
|
|
439284
439284
|
};
|
|
439285
439285
|
|
|
439286
439286
|
// packages/cli/src/generated/git-commit.ts
|
|
439287
|
-
var GIT_COMMIT_INFO2 = "
|
|
439287
|
+
var GIT_COMMIT_INFO2 = "4e52a0117";
|
|
439288
439288
|
|
|
439289
439289
|
// packages/cli/src/ui/components/AboutBox.tsx
|
|
439290
439290
|
var import_jsx_runtime33 = __toESM(require_jsx_runtime(), 1);
|
|
@@ -476404,7 +476404,12 @@ function buildContextMemoryOptions(settings) {
|
|
|
476404
476404
|
const defaults3 = getDefaultContextMemoryOptions();
|
|
476405
476405
|
const userPaths = settings.context?.contextMemory?.paths || {};
|
|
476406
476406
|
const auto = settings.context?.contextMemory?.autoLoad || {};
|
|
476407
|
-
const mcpImport = settings.context?.contextMemory?.mcpImport
|
|
476407
|
+
const mcpImport = settings.context?.contextMemory?.mcpImport;
|
|
476408
|
+
const defaultMcpImport = defaults3.mcpImport ?? {
|
|
476409
|
+
enabled: false,
|
|
476410
|
+
categories: [],
|
|
476411
|
+
scope: "global"
|
|
476412
|
+
};
|
|
476408
476413
|
const options2 = {
|
|
476409
476414
|
...defaults3,
|
|
476410
476415
|
enabled: settings.context?.contextMemory?.enabled ?? true,
|
|
@@ -476414,9 +476419,9 @@ function buildContextMemoryOptions(settings) {
|
|
|
476414
476419
|
autoLoadJsonUser: auto.jsonUser ?? true,
|
|
476415
476420
|
allowBaseWrite: settings.context?.contextMemory?.allowBaseWrite ?? false,
|
|
476416
476421
|
mcpImport: {
|
|
476417
|
-
enabled: mcpImport.enabled ?? false,
|
|
476418
|
-
categories: mcpImport
|
|
476419
|
-
scope: mcpImport
|
|
476422
|
+
enabled: mcpImport?.enabled ?? defaultMcpImport.enabled ?? false,
|
|
476423
|
+
categories: mcpImport?.categories ?? defaultMcpImport.categories ?? [],
|
|
476424
|
+
scope: mcpImport?.scope ?? defaultMcpImport.scope ?? "global"
|
|
476420
476425
|
},
|
|
476421
476426
|
paths: {
|
|
476422
476427
|
base: userPaths.base || defaults3.paths.base,
|