Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
cb037aa
chore(release): bump Cargo versions to 0.7.47 in release flow
Dimillian Feb 9, 2026
8ef6e91
feat(daemon): add identity/version checks and exit persistence toggle
Dimillian Feb 9, 2026
e6a8fa2
build(ios): use dedicated bundle id/config for iOS builds
Dimillian Feb 9, 2026
6761de5
feat(ios): add scripted TestFlight release flow and env template
Dimillian Feb 9, 2026
c54558b
chore: bump version to 0.7.48 (#376)
github-actions[bot] Feb 9, 2026
b91c039
fix: macOS Tailscale detection (#374)
Gurpartap Feb 9, 2026
3f82df1
fix: iOS Swift library search paths (#377)
Gurpartap Feb 9, 2026
5c3508e
fix: token usage reset handling in UI (#378)
Dimillian Feb 9, 2026
e2f97b4
feat(settings/git): expose editable commit-message prompt in Git sett…
Dimillian Feb 9, 2026
9aee0a3
feat(git): split diff paths into filename and directory
Dimillian Feb 9, 2026
dee70e8
feat(settings): auto-generate new thread titles (#382)
itssotsot Feb 9, 2026
7014c4a
chore: bump version to 0.7.49 (#384)
github-actions[bot] Feb 9, 2026
c18a7d0
fix(threads): keep detached reviews from locking parent thread
Dimillian Feb 10, 2026
a0a03e3
fix: set DMABUF renderer fallback for Wayland + NVIDIA (#391)
Dimillian Feb 10, 2026
ba0378f
fix issues #174 (#2) (#390)
MasonChow Feb 10, 2026
0179f5b
feat: bulk add workspaces via multi-select picker (#385)
amanthanvi Feb 10, 2026
2e1835d
feat(apps): scope app list by thread andfeat(apps): add threadId filt…
Dimillian Feb 10, 2026
d5caca0
feat: add app mention support across composer and daemon messaging
Dimillian Feb 10, 2026
3f35b0f
fix: resolve high CPU usage from event subscription loop and aggressi…
damianpdr Feb 10, 2026
867be49
feat: add optional split chat/diff center layout (default off) (#397)
michaellatman Feb 10, 2026
15eccee
feat(composer): persist Codex params per thread (#380)
itssotsot Feb 10, 2026
f28518e
docs: update AGENTS architecture map and canonical scripts
Dimillian Feb 10, 2026
74c39da
Merge branch 'main' of https://github.com/Dimillian/CodexMonitor
Dimillian Feb 10, 2026
6ffe4cc
chore: bump version to 0.7.50 (#399)
github-actions[bot] Feb 10, 2026
efc4265
refactor: split app orchestration and backend core modules (#404)
Dimillian Feb 11, 2026
3368e7c
docs: update app-server events support matrix
Dimillian Feb 11, 2026
0290aaf
fix: keep selected iOS tab when no workspace is active (#408)
shaw-baobao Feb 11, 2026
ecf8e1b
fix: set compact phone background to messages surface
Dimillian Feb 11, 2026
8072b4a
fix: remove compact git panel borders in phone layout
Dimillian Feb 11, 2026
381f29e
fix: add safe-area top padding to phone debug header
Dimillian Feb 11, 2026
cb92215
fix(windows): suppress git check-ignore console popups during workspa…
Dimillian Feb 11, 2026
e13b7c6
feat: add PR checkout and guided review actions in diff viewer
Dimillian Feb 11, 2026
a752c3a
Merge branch 'main' of https://github.com/Dimillian/CodexMonitor
Dimillian Feb 11, 2026
1a593ff
fix: show indicator on user input request (#411)
Dimillian Feb 11, 2026
1939161
fix: add request timeouts, bounded queues, and tool output truncation
Dimillian Feb 11, 2026
e67f9bd
chore: bump version to 0.7.51 (#412)
github-actions[bot] Feb 11, 2026
ccdf573
Merge remote-tracking branch 'codexmonitor/main' into merge/codexmoni…
leonardostern-coder Feb 12, 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
36 changes: 35 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -634,6 +634,40 @@ jobs:
path.write_text(json.dumps(data, indent=2) + "\n")
PY

python3 - <<PY
import re
from pathlib import Path

path = Path("src-tauri/Cargo.toml")
content = path.read_text()
content, count = re.subn(
r'(?m)^version = ".*"$',
'version = "$NEXT_VERSION"',
content,
count=1,
)
if count != 1:
raise SystemExit("Failed to update src-tauri/Cargo.toml version")
path.write_text(content)
PY

python3 - <<PY
import re
from pathlib import Path

path = Path("src-tauri/Cargo.lock")
content = path.read_text()
content, count = re.subn(
r'(?ms)(\[\[package\]\]\nname = "codex-monitor"\nversion = ")[^"]+(")',
r'\g<1>$NEXT_VERSION\2',
content,
count=1,
)
if count != 1:
raise SystemExit("Failed to update codex-monitor version in src-tauri/Cargo.lock")
path.write_text(content)
PY

python3 - <<PY
import plistlib
from pathlib import Path
Expand All @@ -650,7 +684,7 @@ jobs:
PY

git checkout -b "chore/bump-version-${NEXT_VERSION}"
git add package.json package-lock.json src-tauri/tauri.conf.json src-tauri/gen/apple/codex-monitor_iOS/Info.plist
git add package.json package-lock.json src-tauri/Cargo.toml src-tauri/Cargo.lock src-tauri/tauri.conf.json src-tauri/gen/apple/codex-monitor_iOS/Info.plist
git commit -m "chore: bump version to ${NEXT_VERSION}"
git push origin "chore/bump-version-${NEXT_VERSION}"

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ node_modules
dist
dist-ssr
*.local
.testflight.local.env

# Editor directories and files
.vscode/*
Expand Down
16 changes: 16 additions & 0 deletions .testflight.local.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copy this file to .testflight.local.env and fill in your values.
# Quote values that contain spaces.

APP_ID=
BUNDLE_ID=com.example.app.ios
BETA_GROUP_NAME="Beta Testers"
LOCALE=en-US

REVIEW_FIRST_NAME=
REVIEW_LAST_NAME=
REVIEW_CONTACT_EMAIL=
REVIEW_CONTACT_PHONE=
FEEDBACK_EMAIL=

BETA_DESCRIPTION="Your app beta description."
REVIEW_NOTES="Your beta review notes."
Loading
Loading