Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
56f31d9
feat(ui): show the active session title in the header
pascalandr Apr 18, 2026
2a62421
feat(ui): show the session title in the tab bar
pascalandr Apr 18, 2026
f748b42
Merge upstream dev into fix/show-session-title
pascalandr May 9, 2026
2758514
fix(ui): move session title into header
pascalandr May 9, 2026
1de1189
fix(ui): align header session title with floating sidebar
pascalandr May 9, 2026
f24a74b
fix(ui): soften header session title
pascalandr May 9, 2026
cdbe594
fix(ui): preserve toolbar offset for floating sidebar
pascalandr May 9, 2026
064cffd
fix(ui): keep header session title under floating sidebar
pascalandr May 9, 2026
c9dff33
feat(ui): show aggregated total tokens and cost for parent sessions i…
OfflinePing May 9, 2026
a0a8da9
fix(ui): hydrate full child sessions for usage totals
shantur May 9, 2026
6d120b0
fix(ui): align primary agent selection with OpenCode (#409)
jollyxenon May 9, 2026
8976d99
fix(ui): drain yolo permissions outside shell render (#424)
pascalandr May 10, 2026
4090989
fix(ui): ignore stale permission events after reply (#425)
pascalandr May 10, 2026
3425310
feat(ui): make message timeline hideable (#428)
pascalandr May 10, 2026
e0194ec
fix(ui): reconcile permission tool attachments (#426)
pascalandr May 10, 2026
9543292
fix(desktop): keep remote window server titles (#429)
shantur May 10, 2026
562c632
fix(ui): follow up idle badge behavior (#423)
pascalandr May 10, 2026
a3231c3
fix(ui): return to active projects from home (#411)
pascalandr May 10, 2026
efe3f50
Add session web preview mode (#430)
shantur May 10, 2026
8e6780c
fix(ui): align prompt attachment picker with drop behavior (#432)
shantur May 11, 2026
9165299
Refactor workspace startup and empty session states (#434)
shantur May 11, 2026
cf88dc0
Package CodeNomad OpenCode plugin (#433)
shantur May 12, 2026
ca076f4
fix(ui): remove active project return action
shantur May 12, 2026
d9af413
Improve prompt layout for narrow session panes (#437)
shantur May 12, 2026
533ccac
fix(ui): base timeline width on center pane
shantur May 12, 2026
5570929
Improve messages layouts on narrow screens (#438)
shantur May 12, 2026
0eca320
Use never release notes format
shantur May 14, 2026
779202d
Increment version to 0.16.0
shantur May 14, 2026
d3950df
Merge branch 'dev' of github.com:NeuralNomadsAI/CodeNomad into dev
shantur May 14, 2026
1dbb4a9
fix(ui): support draft prompt command sessions (#446)
shantur May 14, 2026
1295cfa
feat(settings): add Info section with version, runtime, and diagnosti…
OfflinePing May 15, 2026
9a6450c
feat(ui): add resizable session composer (#439)
jollyxenon May 15, 2026
f019fcc
fix(ui): keep home actions visible on short viewports (#452)
shantur May 15, 2026
3ccdd36
Reduce App package sizes (#453)
shantur May 15, 2026
e6a5929
Merge upstream/dev into fix/show-session-title for task 055
pascalandr May 16, 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
2 changes: 1 addition & 1 deletion .opencode/commands/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ description: Creates release notes
agent: build
---

Check how I do prepare release notes here - https://github.com/NeuralNomadsAI/CodeNomad/releases/tag/v0.7.0
Check how I do prepare release notes here - https://github.com/NeuralNomadsAI/CodeNomad/releases/tag/v0.15.0
Use the same format to create release notes from users perspective for new release by looking at changes from last tagged release to tip of branch
255 changes: 205 additions & 50 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": "codenomad-workspace",
"version": "0.15.0",
"version": "0.16.0",
"private": true,
"description": "CodeNomad monorepo workspace",
"license": "MIT",
Expand All @@ -10,7 +10,7 @@
"packages/ui",
"packages/electron-app",
"packages/tauri-app",
"packages/opencode-config"
"packages/opencode-plugin"
]
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cloudflare/release-config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"minServerVersion": "0.15.0",
"minServerVersion": "0.16.0",
"latestServerUrl": "https://github.com/NeuralNomadsAI/CodeNomad/releases/latest"
}
6 changes: 3 additions & 3 deletions packages/electron-app/electron.vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ export default defineConfig({
port: 3000,
},
build: {
minify: false,
cssMinify: false,
sourcemap: true,
minify: true,
cssMinify: true,
sourcemap: false,
outDir: resolve(__dirname, "dist/renderer"),
rollupOptions: {
input: {
Expand Down
Loading
Loading