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
6 changes: 3 additions & 3 deletions docs/build-windows-installer.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ make package
packaging/windows/Output/agentserver-app-<VERSION>-setup.exe
```

当前版本号定义在 `scripts/package-windows.sh` 中的 `VERSION` 变量(如 `VERSION="0.1.8"`)。
当前版本号定义在 `scripts/package-windows.sh` 中的 `VERSION` 变量(如 `VERSION="0.1.9"`)。

## 版本与资产管理

Expand All @@ -64,10 +64,10 @@ gh release view <version> --repo agentserver/loom --json assets \

```bash
# 传输
scp packaging/windows/Output/agentserver-app-0.1.8-setup.exe Administrator@9.0.16.110:C:/Users/Administrator/Desktop/
scp packaging/windows/Output/agentserver-app-0.1.9-setup.exe Administrator@9.0.16.110:C:/Users/Administrator/Desktop/

# 远程静默安装
ssh Administrator@9.0.16.110 'C:\Users\Administrator\Desktop\agentserver-app-0.1.8-setup.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'
ssh Administrator@9.0.16.110 'C:\Users\Administrator\Desktop\agentserver-app-0.1.9-setup.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'
```

安装目录:`C:\Users\Administrator\AppData\Local\Programs\agentserver-app\`
Expand Down
4 changes: 2 additions & 2 deletions extensions/agentserver-app/package-lock.json

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

2 changes: 1 addition & 1 deletion extensions/agentserver-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "星池指挥官",
"description": "让 VS Code 作为星池指挥官的简洁文件夹和会话界面",
"publisher": "agentserver",
"version": "0.1.8",
"version": "0.1.9",
"license": "UNLICENSED",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion internal/appversion/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package appversion

const Version = "0.1.8"
const Version = "0.1.9"
2 changes: 1 addition & 1 deletion internal/appversion/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
)

const expectedReleaseVersion = "0.1.8"
const expectedReleaseVersion = "0.1.9"

func TestVersionIsSemverLike(t *testing.T) {
if Version == "" {
Expand Down
2 changes: 1 addition & 1 deletion packaging/windows/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if ($OpenCodeDesktop -and $MinimalVSCode) {
$AppName = 'agentserver-app'
$AppDisplayName = '星池指挥官'
$ContextMenuLabel = '用星池指挥官打开'
$Version = '0.1.8'
$Version = '0.1.9'
$InstallDir = Join-Path $env:LOCALAPPDATA "Programs\$AppName"
$RegSubKeyFile = "Software\Classes\*\shell\AgentserverApp"
$RegSubKeyDir = "Software\Classes\Directory\shell\AgentserverApp"
Expand Down
4 changes: 2 additions & 2 deletions packaging/windows/installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#define MyAppId "agentserver-app"
#define MyAppName "星池指挥官"
#define MyAppVersion "0.1.8"
#define MyAppVersion "0.1.9"
#define MyAppPublisher "agentserver"
#define MyAppURL "https://agent.cs.ac.cn"
#define MyAppExeName "launcher.exe"
Expand Down Expand Up @@ -66,7 +66,7 @@ Source: "..\..\dist\cache\chatgpt-desktop\9PLM9XGG6VKS\chatgpt-desktop-installer
Source: "..\..\internal\codexdesktop\detect_windows.ps1"; \
DestDir: "{app}"; DestName: "codex-desktop-detect.ps1"; Flags: ignoreversion
; Bundled VS Code extension
Source: "..\..\extensions\agentserver-app\agentserver-app-0.1.8.vsix"; \
Source: "..\..\extensions\agentserver-app\agentserver-app-0.1.9.vsix"; \
DestDir: "{app}"; DestName: "agentserver-app.vsix"; Flags: ignoreversion
; Icon
Source: "icon.ico"; DestDir: "{app}"; Flags: ignoreversion
Expand Down
2 changes: 1 addition & 1 deletion scripts/package-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT"

VERSION="${VERSION:-0.1.8}"
VERSION="${VERSION:-0.1.9}"
OUT="${OUT:-dist}"
DRY_RUN="${DRY_RUN:-0}"
source scripts/linux-package-common.sh
Expand Down
2 changes: 1 addition & 1 deletion scripts/package-windows-zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ set -euo pipefail

cd "$(dirname "$0")/.."

VERSION="0.1.8"
VERSION="0.1.9"
OUT="dist"
STAGE="$OUT/agentserver-app-$VERSION-portable"
ZIP="$OUT/agentserver-app-$VERSION-portable.zip"
Expand Down
2 changes: 1 addition & 1 deletion scripts/package-windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -euo pipefail

cd "$(dirname "$0")/.."

VERSION="0.1.8"
VERSION="0.1.9"
OUT="dist"
source scripts/windows-package-common.sh

Expand Down
Loading