Skip to content

Commit 30b82f7

Browse files
docs: update paths and version references for v1.2.0 monorepo structure
- Fix stale src/wolfwave/ paths → apps/native/wolfwave/ across getting-started and development guides - Update example release tag from v1.0.0 → v1.2.0 - Fix landing page proof bar: macOS 14+ → macOS 26+ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4bfa87f commit 30b82f7

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

apps/docs/app/(home)/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export default function HomePage() {
198198
{/* Proof bar */}
199199
<div className="border-y px-6 py-4" style={{ borderColor: "rgba(255,255,255,0.06)", backgroundColor: "rgba(255,255,255,0.02)" }}>
200200
<div className="mx-auto max-w-5xl flex flex-wrap items-center justify-center gap-3">
201-
{["Free Forever", "macOS 14+", "No Account Needed", "~10MB", "Open Source"].map((pill) => (
201+
{["Free Forever", "macOS 26+", "No Account Needed", "~10MB", "Open Source"].map((pill) => (
202202
<span
203203
key={pill}
204204
className="text-xs font-medium px-3 py-1 rounded-full"

apps/docs/content/docs/development.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This guide covers everything you need to contribute to WolfWave.
1616
## Setup
1717

1818
1. Fork and clone the repository
19-
2. Copy `src/wolfwave/Config.xcconfig.example` to `src/wolfwave/Config.xcconfig`
19+
2. Copy `apps/native/wolfwave/Config.xcconfig.example` to `apps/native/wolfwave/Config.xcconfig`
2020
3. Set your Twitch Client ID and Discord Client ID in `Config.xcconfig`
2121
4. Open the project: `make open-xcode`
2222
5. Resolve dependencies: `make update-deps`
@@ -166,7 +166,7 @@ Or press **Cmd+U** in Xcode. The test target (`WolfWaveTests`) is a hosted unit
166166

167167
### Adding New Tests
168168

169-
Test files are auto-discovered — just add `.swift` files to `src/WolfWaveTests/`. Use `@testable import WolfWave` to access internal types.
169+
Test files are auto-discovered — just add `.swift` files to `apps/native/WolfWaveTests/`. Use `@testable import WolfWave` to access internal types.
170170

171171
## CI/CD
172172

@@ -192,8 +192,8 @@ Code signing, notarization, and DMG creation all happen in the release workflow.
192192
### Triggering a Release
193193

194194
```bash
195-
git tag v1.0.0
196-
git push origin v1.0.0
195+
git tag v1.2.0
196+
git push origin v1.2.0
197197
```
198198

199199
This triggers the release workflow, which builds, signs, notarizes, and uploads the DMG to a draft GitHub Release. Once the workflow completes, review the draft and publish it.

apps/docs/content/docs/getting-started.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ cd WolfWave
2525
Copy the example configuration file:
2626

2727
```bash
28-
cp src/wolfwave/Config.xcconfig.example src/wolfwave/Config.xcconfig
28+
cp apps/native/wolfwave/Config.xcconfig.example apps/native/wolfwave/Config.xcconfig
2929
```
3030

31-
Open `src/wolfwave/Config.xcconfig` and set your keys:
31+
Open `apps/native/wolfwave/Config.xcconfig` and set your keys:
3232

3333
```
3434
TWITCH_CLIENT_ID = your_twitch_client_id_here
@@ -51,7 +51,7 @@ DISCORD_CLIENT_ID = your_discord_client_id_here
5151
```bash
5252
make open-xcode
5353
# or
54-
open src/wolfwave.xcodeproj
54+
open apps/native/wolfwave.xcodeproj
5555
```
5656

5757
## Build and Run
@@ -96,8 +96,8 @@ make notarize
9696
Pushing a version tag triggers the GitHub Actions release workflow, which creates a draft GitHub Release:
9797

9898
```bash
99-
git tag v1.0.0
100-
git push origin v1.0.0
99+
git tag v1.2.0
100+
git push origin v1.2.0
101101
```
102102

103103
After the workflow completes, build and notarize locally with `make prod-build && make notarize`, upload the DMG to the draft release, and publish it. Required secrets (`TWITCH_CLIENT_ID`, `DISCORD_CLIENT_ID`) must be configured in your repository's Actions secrets. See the [Development Guide](/docs/development) and [PUBLISH.md](https://github.com/MrDemonWolf/WolfWave/blob/main/PUBLISH.md) for the full release checklist.

0 commit comments

Comments
 (0)