chore(ios): rename app to Clawdis

This commit is contained in:
Peter Steinberger
2025-12-13 13:11:31 +00:00
parent 5dbc7cc68d
commit 1ca77bee26
5 changed files with 14 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
# ClawdisKit (iOS)
# Clawdis (iOS)
Internal-only SwiftUI app scaffold.
@@ -11,7 +11,7 @@ brew install swiftformat swiftlint
```bash
cd apps/ios
xcodegen generate
open ClawdisNode.xcodeproj
open Clawdis.xcodeproj
```
## Shared packages

View File

@@ -1,7 +1,7 @@
import SwiftUI
@main
struct ClawdisNodeApp: App {
struct ClawdisApp: App {
@StateObject private var appModel = NodeAppModel()
@Environment(\.scenePhase) private var scenePhase

View File

@@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>ClawdisKit</string>
<string>Clawdis</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
@@ -25,11 +25,11 @@
<string>_clawdis-bridge._tcp</string>
</array>
<key>NSLocalNetworkUsageDescription</key>
<string>ClawdisKit discovers and connects to your Clawdis bridge on the local network.</string>
<string>Clawdis discovers and connects to your Clawdis bridge on the local network.</string>
<key>NSMicrophoneUsageDescription</key>
<string>ClawdisKit needs microphone access for voice wake.</string>
<string>Clawdis needs microphone access for voice wake.</string>
<key>NSSpeechRecognitionUsageDescription</key>
<string>ClawdisKit uses on-device speech recognition for voice wake.</string>
<string>Clawdis uses on-device speech recognition for voice wake.</string>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>

View File

@@ -1,4 +1,4 @@
name: ClawdisNode
name: Clawdis
options:
bundleIdPrefix: com.steipete.clawdis
deploymentTarget:
@@ -10,7 +10,7 @@ packages:
path: ../shared/ClawdisKit
targets:
ClawdisNode:
Clawdis:
type: application
platform: iOS
sources:
@@ -43,14 +43,14 @@ targets:
info:
path: Sources/Info.plist
properties:
CFBundleDisplayName: ClawdisKit
CFBundleDisplayName: Clawdis
UILaunchScreen: {}
UIApplicationSceneManifest:
UIApplicationSupportsMultipleScenes: false
UIBackgroundModes:
- audio
NSLocalNetworkUsageDescription: ClawdisKit discovers and connects to your Clawdis bridge on the local network.
NSLocalNetworkUsageDescription: Clawdis discovers and connects to your Clawdis bridge on the local network.
NSBonjourServices:
- _clawdis-bridge._tcp
NSMicrophoneUsageDescription: ClawdisKit needs microphone access for voice wake.
NSSpeechRecognitionUsageDescription: ClawdisKit uses on-device speech recognition for voice wake.
NSMicrophoneUsageDescription: Clawdis needs microphone access for voice wake.
NSSpeechRecognitionUsageDescription: Clawdis uses on-device speech recognition for voice wake.

View File

@@ -171,7 +171,7 @@ Generate the Xcode project:
```bash
cd apps/ios
xcodegen generate
open ClawdisNode.xcodeproj
open Clawdis.xcodeproj
```
## Storage plan (private by default)