Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Make sure you have Node.js 20 or later installed. Download it from [nodejs.org](
#### NPM

```bash
npm install -g @hoptrendy/hopcode@latest
npm install -g @hoptrendy/hopcode-cli@latest
```

#### Homebrew (macOS, Linux)
Expand Down
1 change: 1 addition & 0 deletions integration-tests/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"lib": ["ES2022"],
"baseUrl": ".",
"paths": {
"@hoptrendy/sdk": ["../packages/sdk-typescript/dist/index.d.ts"]
Expand Down
32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hoptrendy/hopcode",
"version": "0.18.7",
"version": "0.18.8",
"type": "module",
"workspaces": [
"packages/*",
Expand All @@ -16,7 +16,7 @@
"url": "git+https://github.com/TaimoorSiddiquiOfficial/HopCode.git"
},
"config": {
"sandboxImageUri": "ghcr.io/TaimoorSiddiquiOfficial/HopCode:0.18.7"
"sandboxImageUri": "ghcr.io/TaimoorSiddiquiOfficial/HopCode:0.18.8"
},
"scripts": {
"verify:privacy": "tsx scripts/verify-privacy.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/channels/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hoptrendy/channel-base",
"version": "0.18.7",
"version": "0.18.8",
"description": "Base channel infrastructure for Qwen Code",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/channels/dingtalk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hoptrendy/channel-dingtalk",
"version": "0.18.7",
"version": "0.18.8",
"description": "DingTalk channel adapter for Qwen Code",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/channels/discord/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hoptrendy/channel-discord",
"version": "0.18.6",
"version": "0.18.8",
"description": "Discord channel adapter for HopCode",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/channels/plugin-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hoptrendy/channel-plugin-example",
"version": "0.18.6",
"version": "0.18.8",
"private": true,
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/channels/telegram/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hoptrendy/channel-telegram",
"version": "0.18.6",
"version": "0.18.8",
"description": "Telegram channel adapter for Qwen Code",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/channels/weixin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hoptrendy/channel-weixin",
"version": "0.18.6",
"version": "0.18.8",
"description": "WeChat (Weixin) channel adapter for Qwen Code",
"type": "module",
"main": "dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hoptrendy/hopcode-cli",
"version": "0.18.6",
"version": "0.18.8",
"repository": {
"url": "git+https://github.com/TaimoorSiddiquiOfficial/HopCode.git"
},
Expand Down Expand Up @@ -31,7 +31,7 @@
"dist"
],
"config": {
"sandboxImageUri": "ghcr.io/hopcode/hopcode:0.18.7"
"sandboxImageUri": "ghcr.io/hopcode/hopcode:0.18.8"
},
"dependencies": {
"@agentclientprotocol/sdk": "latest",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mcp-server-example",
"version": "1.0.0",
"description": "Example MCP Server for Qwen Code Extension",
"description": "Example MCP Server for HopCode Extension",
"type": "module",
"main": "example.js",
"scripts": {
Expand Down
12 changes: 6 additions & 6 deletions packages/cli/src/utils/windowTitle.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ describe('computeWindowTitle', () => {
process.env = originalEnv;
});

it('should use default Qwen title when CLI_TITLE is not set', () => {
it('should use default HopCode title when CLI_TITLE is not set', () => {
const result = computeWindowTitle('my-project');
expect(result).toBe('Qwen - my-project');
expect(result).toBe('HopCode - my-project');
});

it('should use CLI_TITLE environment variable when set', () => {
Expand All @@ -39,21 +39,21 @@ describe('computeWindowTitle', () => {

it('should handle folder names with control characters', () => {
const result = computeWindowTitle('project\x07name');
expect(result).toBe('Qwen - projectname');
expect(result).toBe('HopCode - projectname');
});

it('should handle empty folder name', () => {
const result = computeWindowTitle('');
expect(result).toBe('Qwen - ');
expect(result).toBe('HopCode - ');
});

it('should handle folder names with spaces', () => {
const result = computeWindowTitle('my project');
expect(result).toBe('Qwen - my project');
expect(result).toBe('HopCode - my project');
});

it('should handle folder names with special characters', () => {
const result = computeWindowTitle('project-name_v1.0');
expect(result).toBe('Qwen - project-name_v1.0');
expect(result).toBe('HopCode - project-name_v1.0');
});
});
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hoptrendy/hopcode-core",
"version": "0.18.6",
"version": "0.18.8",
"description": "HopCode Core",
"repository": {
"type": "git",
Expand Down
Loading
Loading