Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Requires **macOS 14+** and **Swift 5.9+**.
git clone https://github.com/wxtsky/CodeIsland.git
cd CodeIsland

# Development (debug build + launch)
# Development (debug build + launch; Buddy Bluetooth needs the .app below)
swift build && ./.build/debug/CodeIsland

# Release (universal binary: Apple Silicon + Intel)
Expand Down
2 changes: 1 addition & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ brew install --cask codeisland
git clone https://github.com/wxtsky/CodeIsland.git
cd CodeIsland

# 开发模式(debug 构建 + 启动)
# 开发模式(debug 构建 + 启动;Buddy 蓝牙需要下面的 .app
swift build && ./.build/debug/CodeIsland

# 发布模式(通用二进制:Apple Silicon + Intel)
Expand Down
2 changes: 2 additions & 0 deletions Sources/CodeIsland/ClineView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ struct ClineView: View {
}
}

#if DEBUG
#Preview("ClineView") {
HStack(spacing: 20) {
ClineView(status: .idle, size: 54)
Expand All @@ -286,3 +287,4 @@ struct ClineView: View {
.padding(24)
.background(Color(white: 0.15))
}
#endif
Loading