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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

### Fixed
- CI unit-test 卡住:为 job 与 step 增加 `timeout-minutes`,避免单个 Package 挂起导致无限等待;OCRCore 在 CI 上跳过依赖真实 Vision OCR 的集成测试(无头 runner 上 Vision 首次初始化可能挂起),本地仍完整运行(`scripts/test.sh`)
- 本地打包失败:SwiftLint 0.65+ 移除 `--path` 选项,`project.yml` 的 SwiftLint build phase 改用位置参数(新旧版本均兼容)

## [0.6.1] - 2026-09-02

Expand Down
2 changes: 1 addition & 1 deletion project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ targets:
basedOnDependencyAnalysis: false
script: |
if which swiftlint > /dev/null; then
swiftlint lint --config "${SRCROOT}/.swiftlint.yml" --path "${SRCROOT}/App/SnapGlass"
swiftlint lint --config "${SRCROOT}/.swiftlint.yml" "${SRCROOT}/App/SnapGlass"
else
echo "warning: SwiftLint not installed"
fi
Expand Down
Loading