@qwen-code/qwen-code 0.4.1-nightly.20251210.5fddcd50 → 0.4.1-nightly.20251211.a02c4b27
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/README.md +6 -0
- package/cli.js +12 -7
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -88,6 +88,12 @@ npm install -g .
|
|
|
88
88
|
brew install qwen-code
|
|
89
89
|
```
|
|
90
90
|
|
|
91
|
+
## VS Code Extension
|
|
92
|
+
|
|
93
|
+
In addition to the CLI tool, Qwen Code also provides a **VS Code extension** that brings AI-powered coding assistance directly into your editor with features like file system operations, native diffing, interactive chat, and more.
|
|
94
|
+
|
|
95
|
+
> 📦 The extension is currently in development. For installation, features, and development guide, see the [VS Code Extension README](./packages/vscode-ide-companion/README.md).
|
|
96
|
+
|
|
91
97
|
## Quick Start
|
|
92
98
|
|
|
93
99
|
```bash
|
package/cli.js
CHANGED
|
@@ -145729,7 +145729,7 @@ function createContentGeneratorConfig(config, authType, generationConfig) {
|
|
|
145729
145729
|
};
|
|
145730
145730
|
}
|
|
145731
145731
|
async function createContentGenerator(config, gcConfig, isInitialAuth) {
|
|
145732
|
-
const version2 = "0.4.1-nightly.
|
|
145732
|
+
const version2 = "0.4.1-nightly.20251211.a02c4b27";
|
|
145733
145733
|
const userAgent2 = `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
145734
145734
|
const baseHeaders = {
|
|
145735
145735
|
"User-Agent": userAgent2
|
|
@@ -309147,7 +309147,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
309147
309147
|
// packages/cli/src/utils/version.ts
|
|
309148
309148
|
async function getCliVersion() {
|
|
309149
309149
|
const pkgJson = await getPackageJson();
|
|
309150
|
-
return "0.4.1-nightly.
|
|
309150
|
+
return "0.4.1-nightly.20251211.a02c4b27";
|
|
309151
309151
|
}
|
|
309152
309152
|
__name(getCliVersion, "getCliVersion");
|
|
309153
309153
|
|
|
@@ -313213,7 +313213,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
313213
313213
|
|
|
313214
313214
|
// packages/cli/src/generated/git-commit.ts
|
|
313215
313215
|
init_esbuild_shims();
|
|
313216
|
-
var GIT_COMMIT_INFO2 = "
|
|
313216
|
+
var GIT_COMMIT_INFO2 = "e4ee3397";
|
|
313217
313217
|
|
|
313218
313218
|
// packages/cli/src/utils/systemInfo.ts
|
|
313219
313219
|
async function getNpmVersion() {
|
|
@@ -350705,12 +350705,17 @@ var InputPrompt = /* @__PURE__ */ __name(({
|
|
|
350705
350705
|
statusColor = theme.status.warning;
|
|
350706
350706
|
statusText = t2("Accepting edits");
|
|
350707
350707
|
}
|
|
350708
|
+
const borderColor = isShellFocused && !isEmbeddedShellFocused ? statusColor ?? theme.border.focused : theme.border.default;
|
|
350708
350709
|
return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(import_jsx_runtime94.Fragment, { children: [
|
|
350709
350710
|
/* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
350710
350711
|
Box_default,
|
|
350711
350712
|
{
|
|
350712
|
-
borderStyle: "
|
|
350713
|
-
|
|
350713
|
+
borderStyle: "single",
|
|
350714
|
+
borderTop: true,
|
|
350715
|
+
borderBottom: true,
|
|
350716
|
+
borderLeft: false,
|
|
350717
|
+
borderRight: false,
|
|
350718
|
+
borderColor,
|
|
350714
350719
|
paddingX: 1,
|
|
350715
350720
|
children: [
|
|
350716
350721
|
/* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
@@ -350789,7 +350794,7 @@ var InputPrompt = /* @__PURE__ */ __name(({
|
|
|
350789
350794
|
});
|
|
350790
350795
|
if (isOnCursorLine && cursorVisualColAbsolute === cpLen(lineText)) {
|
|
350791
350796
|
renderedLine.push(
|
|
350792
|
-
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(Text3, { children: showCursor ? import_chalk7.default.inverse(" ") : " " }, `cursor-end-${cursorVisualColAbsolute}`)
|
|
350797
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(Text3, { children: showCursor ? import_chalk7.default.inverse(" ") + "\u200B" : " \u200B" }, `cursor-end-${cursorVisualColAbsolute}`)
|
|
350793
350798
|
);
|
|
350794
350799
|
}
|
|
350795
350800
|
return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(Box_default, { height: 1, children: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(Text3, { children: renderedLine }) }, `line-${visualIdxInRenderedSet}`);
|
|
@@ -363599,7 +363604,7 @@ var GeminiAgent = class {
|
|
|
363599
363604
|
name: APPROVAL_MODE_INFO[mode].name,
|
|
363600
363605
|
description: APPROVAL_MODE_INFO[mode].description
|
|
363601
363606
|
}));
|
|
363602
|
-
const version2 = "0.4.1-nightly.
|
|
363607
|
+
const version2 = "0.4.1-nightly.20251211.a02c4b27";
|
|
363603
363608
|
return {
|
|
363604
363609
|
protocolVersion: PROTOCOL_VERSION,
|
|
363605
363610
|
agentInfo: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qwen-code/qwen-code",
|
|
3
|
-
"version": "0.4.1-nightly.
|
|
3
|
+
"version": "0.4.1-nightly.20251211.a02c4b27",
|
|
4
4
|
"description": "Qwen Code - AI-powered coding assistant",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"locales"
|
|
21
21
|
],
|
|
22
22
|
"config": {
|
|
23
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.4.1-nightly.
|
|
23
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.4.1-nightly.20251211.a02c4b27"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"tiktoken": "^1.0.21"
|