* fix: make textarea focus highlight render inside Apply inset focus ring to shared textarea component Prevent focus border from appearing clipped near container edges * fix: build desktop sidecar with target-matched architecture Map Tauri target triples to Bun compile targets Pass explicit Bun compile target for sidecar builds Prevent x86_64 releases from shipping arm64 sidecar binaries * fix: allow Windows git custom binary paths Enable safe use of resolved custom git executable paths Prevent git status failures when path contains restricted characters Keep default behavior unchanged for plain git invocations * fix: allow toggling diff line wrap on mobile Stops forcing wrapped lines in mobile diff view Line-wrap button now reflects and applies user preference * fix: align VS Code managed server env with shell settings Import login-shell environment variables before starting managed OpenCode Apply Windows and Unix shell snapshot resolution for parity Improve proxy-dependent provider connectivity in VS Code extension * fix: respect user scope when adding MCP servers Prevent user-scope MCP entries from being written to project config Keep project writes only for explicit project scope * fix: show linked GitHub issues and PRs as user message attachments Preserve synthetic issue/PR context parts during message filtering. Convert synthetic GitHub context JSON into attachment-style user parts. Open issue/PR attachment links via shared external URL helper. * fix: restore and polish project notes in sessions sidebar Restored the Notes button in the left sessions sidebar header Improved notes panel layout with wider dialog, larger notes area, and project name in the header Refined todo rows with inline expand/collapse text and stable action/checkbox alignment * fix: hide sidebar footer actions in VS Code runtime Remove Settings, About, and Shortcuts buttons from the sessions sidebar footer in VS Code Keep update button behavior unchanged across runtimes * fix: normalize Windows paths for VS Code session loading Canonicalize drive-letter casing in session path normalization Align VS Code workspace path persistence with the same Windows path format Normalize client directory context before API calls to keep session filtering consistent * fix: open linked GitHub attachments with shared URL helper Use runtime-aware external URL opening for issue/PR attachment links. Keep GitHub attachment labels readable without altering normal file name rendering. * fix: keep user MCP config writes out of project files Respect user scope when selecting config write target Prevent MCP user entries from being written to project opencode.json * fix: prevent project menu from overlapping new session button Align project menu positioning for non-git and git project rows Avoid kebab-menu and plus-button overlap in sessions sidebar
136 lines
3.9 KiB
JavaScript
136 lines
3.9 KiB
JavaScript
import fs from 'node:fs/promises';
|
|
import path from 'node:path';
|
|
import { spawnSync } from 'node:child_process';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
const repoRoot = path.resolve(__dirname, '..', '..', '..');
|
|
const webDir = path.join(repoRoot, 'packages', 'web');
|
|
const desktopTauriDir = path.join(repoRoot, 'packages', 'desktop', 'src-tauri');
|
|
|
|
const resourcesDir = path.join(desktopTauriDir, 'resources');
|
|
const resourcesWebDistDir = path.join(resourcesDir, 'web-dist');
|
|
const webDistDir = path.join(webDir, 'dist');
|
|
|
|
const sidecarsDir = path.join(desktopTauriDir, 'sidecars');
|
|
|
|
const inferTargetTriple = () => {
|
|
if (typeof process.env.TAURI_ENV_TARGET_TRIPLE === 'string' && process.env.TAURI_ENV_TARGET_TRIPLE.trim()) {
|
|
return process.env.TAURI_ENV_TARGET_TRIPLE.trim();
|
|
}
|
|
|
|
if (process.platform === 'darwin') {
|
|
return process.arch === 'arm64' ? 'aarch64-apple-darwin' : 'x86_64-apple-darwin';
|
|
}
|
|
|
|
if (process.platform === 'win32') {
|
|
return 'x86_64-pc-windows-msvc';
|
|
}
|
|
|
|
if (process.platform === 'linux') {
|
|
return process.arch === 'arm64' ? 'aarch64-unknown-linux-gnu' : 'x86_64-unknown-linux-gnu';
|
|
}
|
|
|
|
return `${process.arch}-${process.platform}`;
|
|
};
|
|
|
|
const targetTriple = inferTargetTriple();
|
|
|
|
const bunCompileTargetByTriple = {
|
|
'aarch64-apple-darwin': 'bun-darwin-arm64',
|
|
'x86_64-apple-darwin': 'bun-darwin-x64',
|
|
'aarch64-unknown-linux-gnu': 'bun-linux-arm64',
|
|
'x86_64-unknown-linux-gnu': 'bun-linux-x64',
|
|
'x86_64-pc-windows-msvc': 'bun-windows-x64',
|
|
};
|
|
|
|
const compileTarget = bunCompileTargetByTriple[targetTriple];
|
|
|
|
if (!compileTarget) {
|
|
console.warn(
|
|
`[desktop] unknown target triple '${targetTriple}', falling back to host-arch sidecar build`
|
|
);
|
|
}
|
|
|
|
const sidecarBaseName = process.platform === 'win32'
|
|
? `openchamber-server-${targetTriple}.exe`
|
|
: `openchamber-server-${targetTriple}`;
|
|
const sidecarOutPath = path.join(sidecarsDir, sidecarBaseName);
|
|
|
|
|
|
const run = (cmd, args, cwd) => {
|
|
const result = spawnSync(cmd, args, { cwd, stdio: 'inherit' });
|
|
if (result.error) throw result.error;
|
|
if (result.status !== 0) {
|
|
throw new Error(`Command failed: ${cmd} ${args.join(' ')}`);
|
|
}
|
|
};
|
|
|
|
const resolveBun = () => {
|
|
if (typeof process.env.BUN === 'string' && process.env.BUN.trim()) {
|
|
return process.env.BUN.trim();
|
|
}
|
|
|
|
const result = spawnSync('/bin/bash', ['-lc', 'command -v bun'], { encoding: 'utf8' });
|
|
const resolved = (result.stdout || '').trim();
|
|
if (resolved) {
|
|
return resolved;
|
|
}
|
|
|
|
return 'bun';
|
|
};
|
|
|
|
const bunExe = resolveBun();
|
|
|
|
|
|
const copyDir = async (src, dst) => {
|
|
await fs.mkdir(dst, { recursive: true });
|
|
const entries = await fs.readdir(src, { withFileTypes: true });
|
|
for (const entry of entries) {
|
|
const from = path.join(src, entry.name);
|
|
const to = path.join(dst, entry.name);
|
|
if (entry.isDirectory()) {
|
|
await copyDir(from, to);
|
|
} else if (entry.isSymbolicLink()) {
|
|
const link = await fs.readlink(from);
|
|
await fs.symlink(link, to);
|
|
} else {
|
|
await fs.copyFile(from, to);
|
|
}
|
|
}
|
|
};
|
|
|
|
console.log('[desktop] building web UI dist...');
|
|
run(bunExe, ['run', 'build'], webDir);
|
|
|
|
console.log('[desktop] preparing tauri resources...');
|
|
await fs.mkdir(resourcesDir, { recursive: true });
|
|
await fs.rm(resourcesWebDistDir, { recursive: true, force: true });
|
|
await copyDir(webDistDir, resourcesWebDistDir);
|
|
|
|
console.log('[desktop] building openchamber-server sidecar...');
|
|
await fs.mkdir(sidecarsDir, { recursive: true });
|
|
|
|
const buildArgs = [
|
|
'build',
|
|
'--compile',
|
|
path.join(webDir, 'server', 'index.js'),
|
|
'--outfile',
|
|
sidecarOutPath,
|
|
];
|
|
|
|
if (compileTarget) {
|
|
buildArgs.push('--target', compileTarget);
|
|
}
|
|
|
|
run(bunExe, buildArgs, repoRoot);
|
|
|
|
if (process.platform !== 'win32') {
|
|
await fs.chmod(sidecarOutPath, 0o755);
|
|
}
|
|
|
|
console.log(`[desktop] sidecar ready: ${sidecarOutPath}`);
|
|
console.log(`[desktop] web assets ready: ${resourcesWebDistDir}`);
|