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
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,10 @@ fastlane/test_output
/build/XCBuildData

# Test results
/*.xcresult
/*.xcresult

# Generated docs intermediates. The sourcekitten JSON embeds absolute build
# paths in key.filepath entries, and jazzy writes the build path into
# undocumented.json. Neither file needs to be tracked.
docs/JSON/
docs/**/undocumented.json
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

### Fixed

- Hid swipe action buttons from VoiceOver while the swipe is closed. The buttons become accessibility elements again once the swipe is open, so the row's `accessibilityCustomActions` no longer competes with invisible, off-screen buttons.

### Added

### Removed
Expand All @@ -16,6 +14,12 @@

# Past Releases

# 17.0.1 - 2026-05-27

### Fixed

- Hid swipe action buttons from VoiceOver while the swipe is closed. The buttons become accessibility elements again once the swipe is open, so the row's `accessibilityCustomActions` no longer competes with invisible, off-screen buttons.

# 17.0.0 - 2026-02-25

### Changed
Expand Down
3 changes: 3 additions & 0 deletions Scripts/generate_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ destination="generic/platform=iOS Simulator"
tuist install --path Development/
tuist generate --no-open --path Development/

# docs/JSON is gitignored — these files are intermediate sourcekitten output
# consumed by jazzy below.
mkdir -p docs/JSON
$sourcekitten doc -- -workspace Development/ListableDevelopment.xcworkspace -scheme ListableUI -destination "$destination" > docs/JSON/ListableUI.json
$sourcekitten doc -- -workspace Development/ListableDevelopment.xcworkspace -scheme BlueprintUILists -destination "$destination" > docs/JSON/BlueprintUILists.json

Expand Down
Binary file modified docs/BlueprintLists/docsets/BlueprintLists.tgz
Binary file not shown.
4 changes: 0 additions & 4 deletions docs/BlueprintLists/undocumented.json

This file was deleted.

7,235 changes: 0 additions & 7,235 deletions docs/JSON/BlueprintUILists.json

This file was deleted.

119,912 changes: 0 additions & 119,912 deletions docs/JSON/ListableUI.json

This file was deleted.

Binary file modified docs/Listable/docsets/Listable.tgz
Binary file not shown.
4 changes: 0 additions & 4 deletions docs/Listable/undocumented.json

This file was deleted.

2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

BLUEPRINT_VERSION ||= ['~> 5.0'].freeze

LISTABLE_VERSION ||= '17.0.0'
LISTABLE_VERSION ||= '17.0.1'

LISTABLE_IOS_DEPLOYMENT_TARGET ||= '15.0'

Expand Down
Loading