Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
9b23130
feat(opencode): add `cljfmt` formatter support for Clojure files (#13…
finalfantasia Feb 15, 2026
d9363da
fix(website): correct zh-CN translation of proprietary terms in zen.m…
pkx07 Feb 15, 2026
21e0778
chore: generate
opencode-agent[bot] Feb 15, 2026
920255e
desktop: use process-wrap instead of manual job object (#13431)
Brendonovich Feb 16, 2026
afd0716
feat(opencode): Add Venice support in temperature, topP, topK and sma…
dpuyosa Feb 16, 2026
a9f8425
feat(opencode): add conservative workspace hot reload
benjaminshafii Feb 12, 2026
8154c01
fix(opencode): reset caches and emit hot reload event
benjaminshafii Feb 12, 2026
41d375d
feat(experimental): add hot reload API trigger
benjaminshafii Feb 13, 2026
d81245b
chore(sdk): regenerate OpenAPI for hot reload
benjaminshafii Feb 13, 2026
3410c7b
test(hotreload): gate darwin path alias on macOS
benjaminshafii Feb 13, 2026
1d92c18
chore(flags): simplify hot reload gating
benjaminshafii Feb 13, 2026
8760b67
chore(flags): align hot reload env with experimental
benjaminshafii Feb 13, 2026
153002e
feat(hotreload): emit change events and support manual mode
benjaminshafii Feb 13, 2026
87f32cb
feat(hotreload): make reload userland-driven
benjaminshafii Feb 13, 2026
22c5d97
chore(sdk): include hot reload changed event
benjaminshafii Feb 13, 2026
e4c3cdd
feat(hotreload): reset plugins, tools, and mcp on apply
benjaminshafii Feb 13, 2026
fb689db
fix(cli): allow --agent with --attach
benjaminshafii Feb 13, 2026
5bbc964
Revert "fix(cli): allow --agent with --attach"
benjaminshafii Feb 14, 2026
4e452d7
fix(hotreload): apply within instance context
benjaminshafii Feb 14, 2026
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
91 changes: 84 additions & 7 deletions packages/desktop/src-tauri/Cargo.lock

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

11 changes: 2 additions & 9 deletions packages/desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ tauri-plugin-single-instance = { version = "2", features = ["deep-link"] }

serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = "1.48.0"
tokio = { version = "1.48.0", features = ["process"] }
listeners = "0.3"
tauri-plugin-os = "2"
futures = "0.3.31"
Expand All @@ -52,6 +52,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
chrono = "0.4"
tokio-stream = { version = "0.1.18", features = ["sync"] }
process-wrap = { version = "9.0.3", features = ["tokio1"] }

[target.'cfg(target_os = "linux")'.dependencies]
gtk = "0.18.2"
Expand All @@ -62,14 +63,6 @@ objc2 = "0.6"
objc2-web-kit = "0.3"


[target.'cfg(windows)'.dependencies]
windows = { version = "0.61", features = [
"Win32_Foundation",
"Win32_System_JobObjects",
"Win32_System_Threading",
"Win32_Security"
] }

[patch.crates-io]
specta = { git = "https://github.com/specta-rs/specta", rev = "591a5f3ddc78348abf4cbb541d599d65306d92b9" }
specta-typescript = { git = "https://github.com/specta-rs/specta", rev = "591a5f3ddc78348abf4cbb541d599d65306d92b9" }
Expand Down
Loading