Skip to content

Commit d1df8a4

Browse files
authored
Merge pull request #9 from codefuse-ai/chore/add-changelog
add changelog
2 parents 0b1cf43 + bf4cdd7 commit d1df8a4

File tree

5 files changed

+501
-8
lines changed

5 files changed

+501
-8
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# [0.6.0](https://code.alipay.com/cloud-ide/codefuse-ide/compare/0.5.0...0.6.0) (2024-09-29)
2+
3+
4+
### Bug Fixes
5+
6+
* **deps:** update opensumi packages to v3.4.0 ([fe2b072](https://code.alipay.com/cloud-ide/codefuse-ide/commits/fe2b0723de6ac5d6d01656f692f58848fde018c8))
7+
8+
9+
### Features
10+
11+
* add open logo folder menu ([b5d275c](https://code.alipay.com/cloud-ide/codefuse-ide/commits/b5d275caca26568139436e13f0eba4d5b13dda56))
12+
* support ai lint and always show inline completions ([9cb41c0](https://code.alipay.com/cloud-ide/codefuse-ide/commits/9cb41c09e64afaa4eaa0cf032e8dcf3081586bca))
13+
14+
15+

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"start": "electron-forge start",
88
"package": "electron-forge package",
99
"make": "electron-forge make",
10-
"electron-rebuild": "node -r ts-node/register ./build/rebuild.ts"
10+
"electron-rebuild": "node -r ts-node/register ./build/rebuild.ts",
11+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
1112
},
1213
"repository": {
1314
"type": "git",
@@ -121,6 +122,7 @@
121122
"@opensumi/tree-sitter-wasm": "0.0.2",
122123
"@vscode/spdlog": "^0.15.0",
123124
"buffer": "^6.0.3",
125+
"conventional-changelog-cli": "^5.0.0",
124126
"electron-updater": "6.2.1",
125127
"js-yaml": "^4.1.0",
126128
"mri": "^1.2.0",

src/ai/browser/ai-model.contribution.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ export class AIModelContribution implements PreferenceContribution, SettingContr
229229
}
230230

231231
private async checkModelConfig(values: Record<string, any>) {
232-
console.log(222, values)
233232
if (values.baseUrl && values.chatModelName) {
234233
return true
235234
}

src/ai/browser/command/command.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,6 @@ export class AICommandService {
703703
async requestForClassifyCommand(commands: Command[]) {
704704
const prompt = this.promptManager.groupCommand(commands.map((c) => c.id).join(','));
705705
const groupReply = await this.requestToModel(prompt);
706-
console.log(111, prompt, groupReply)
707706

708707
const groupReg = new RegExp(
709708
`\\[(?<groupName>${Object.keys(this.commandGroups).join('|')})\\]:\\s?(?<commandList>.*)`,

0 commit comments

Comments
 (0)