@qwen-code/qwen-code 0.13.2-nightly.20260331.1b1a029fd → 0.13.2-preview.0
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/cli.js +7 -6
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -171295,7 +171295,7 @@ __export(geminiContentGenerator_exports, {
|
|
|
171295
171295
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
171296
171296
|
});
|
|
171297
171297
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
171298
|
-
const version2 = "0.13.2-
|
|
171298
|
+
const version2 = "0.13.2-preview.0";
|
|
171299
171299
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
171300
171300
|
const baseHeaders = {
|
|
171301
171301
|
"User-Agent": userAgent2
|
|
@@ -247954,10 +247954,11 @@ function performVariableReplacement(extensionPath) {
|
|
|
247954
247954
|
try {
|
|
247955
247955
|
const content = fs51.readFileSync(filePath, "utf8");
|
|
247956
247956
|
const updatedContent = content.replace(/\$\{CLAUDE_PLUGIN_ROOT\}/g, extensionPath);
|
|
247957
|
-
const
|
|
247957
|
+
const syntaxUpdatedContent = updatedContent.replace(/```!(?:\s*\n)?([\s\S]*?)\n*```/g, "!{$1}");
|
|
247958
|
+
const updatedMdContent = syntaxUpdatedContent.replace(/(\$\{?HOME\}?\/|~\/)?\.claude(\/|$)/g, "$1.qwen$2");
|
|
247958
247959
|
if (updatedMdContent !== content) {
|
|
247959
247960
|
fs51.writeFileSync(filePath, updatedMdContent, "utf8");
|
|
247960
|
-
debugLogger62.debug(`Updated variables and
|
|
247961
|
+
debugLogger62.debug(`Updated variables, syntax, and .claude paths in file: ${filePath}`);
|
|
247961
247962
|
}
|
|
247962
247963
|
} catch (error40) {
|
|
247963
247964
|
debugLogger62.warn(`Failed to process file ${filePath}: ${error40 instanceof Error ? error40.message : String(error40)}`);
|
|
@@ -406922,7 +406923,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
406922
406923
|
// packages/cli/src/utils/version.ts
|
|
406923
406924
|
async function getCliVersion() {
|
|
406924
406925
|
const pkgJson = await getPackageJson();
|
|
406925
|
-
return "0.13.2-
|
|
406926
|
+
return "0.13.2-preview.0";
|
|
406926
406927
|
}
|
|
406927
406928
|
__name(getCliVersion, "getCliVersion");
|
|
406928
406929
|
|
|
@@ -414546,7 +414547,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
414546
414547
|
|
|
414547
414548
|
// packages/cli/src/generated/git-commit.ts
|
|
414548
414549
|
init_esbuild_shims();
|
|
414549
|
-
var GIT_COMMIT_INFO = "
|
|
414550
|
+
var GIT_COMMIT_INFO = "333a5174c";
|
|
414550
414551
|
|
|
414551
414552
|
// packages/cli/src/utils/systemInfo.ts
|
|
414552
414553
|
async function getNpmVersion() {
|
|
@@ -478972,7 +478973,7 @@ var QwenAgent = class {
|
|
|
478972
478973
|
async initialize(args2) {
|
|
478973
478974
|
this.clientCapabilities = args2.clientCapabilities;
|
|
478974
478975
|
const authMethods = buildAuthMethods();
|
|
478975
|
-
const version2 = "0.13.2-
|
|
478976
|
+
const version2 = "0.13.2-preview.0";
|
|
478976
478977
|
return {
|
|
478977
478978
|
protocolVersion: PROTOCOL_VERSION,
|
|
478978
478979
|
agentInfo: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qwen-code/qwen-code",
|
|
3
|
-
"version": "0.13.2-
|
|
3
|
+
"version": "0.13.2-preview.0",
|
|
4
4
|
"description": "Qwen Code - AI-powered coding assistant",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"bundled"
|
|
22
22
|
],
|
|
23
23
|
"config": {
|
|
24
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.13.2-
|
|
24
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.13.2-preview.0"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"optionalDependencies": {
|