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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ xcodebuild -project RxCode.xcodeproj -scheme RxCode -configuration Debug build
xcodebuild -project RxCode.xcodeproj -scheme RxCode -configuration Release build
```

- Minimum deployment target: macOS 15.0+
- Minimum deployment target: macOS 26.0+
- No test suite (UI app)
- Bundle ID: `com.idealapp.RxCode`
- External dependencies: SwiftTerm (terminal emulation), Sparkle (auto-update)
Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ xcodebuild -project RxCode.xcodeproj -scheme RxCode -configuration Debug build
xcodebuild -project RxCode.xcodeproj -scheme RxCode -configuration Release build
```

- Minimum deployment target: macOS 15.0+
- Minimum deployment target: macOS 26.0+
- No test suite (UI app)
- Bundle ID: `com.idealapp.RxCode`
- External dependencies: SwiftTerm (terminal emulation), Sparkle (auto-update)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Same agents, no terminal required.

## Requirements

- **macOS 15.0** or later
- **macOS 26.0** or later
- At least one supported agent runtime installed and authenticated:
- **[Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code)**
- **Codex CLI**
Expand All @@ -99,9 +99,9 @@ Same agents, no terminal required.
2. Unzip and move `RxCode.app` to your `Applications` folder.
3. Launch `RxCode.app`.

### First Launch on macOS 15 (Sequoia)
### First Launch on macOS 26

macOS Sequoia blocks the first launch of any downloaded app, even notarized ones, and routes approval through System Settings instead of the old right-click -> Open flow.
macOS 26 blocks the first launch of any downloaded app, even notarized ones, and routes approval through System Settings instead of the old right-click -> Open flow.

When you see **"Apple could not verify 'RxCode.app' is free of malware..."**:

Expand Down
4 changes: 2 additions & 2 deletions RxCode.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 15.0;
MACOSX_DEPLOYMENT_TARGET = 26.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -506,7 +506,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 15.0;
MACOSX_DEPLOYMENT_TARGET = 26.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = macosx;
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/generate-appcast.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -euo pipefail

RELEASES_URL="https://github.com/rxtech-lab/rxcode/releases"
DOWNLOAD_URL_PREFIX="${RELEASES_URL}/download/${VERSION}/"
EXPECTED_MINIMUM_SYSTEM_VERSION="${EXPECTED_MINIMUM_SYSTEM_VERSION:-15.0}"
EXPECTED_MINIMUM_SYSTEM_VERSION="${EXPECTED_MINIMUM_SYSTEM_VERSION:-26.0}"

Comment on lines +10 to 11
# Write SPARKLE_KEY to sparkle.key
echo "$SPARKLE_KEY" > sparkle.key
Expand Down
2 changes: 1 addition & 1 deletion website/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ function Hero({
</div>

<p className="mt-6 text-xs text-on-surface-variant/70 font-mono uppercase tracking-widest">
macOS 15+ · Apple Silicon &amp; Intel
macOS 26+ · Apple Silicon
</p>
</div>
</section>
Expand Down