Skip to content

Commit 703c2fc

Browse files
update README
1 parent a0dddfe commit 703c2fc

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@
66
![Platform](https://img.shields.io/badge/platform-macOS-lightgrey.svg?style=flat)
77
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
88

9-
Display things in an app-modal floating window that users can fuzzy-filter by typing ahead.
9+
Display things in an app-modal floating window that users can fuzzy-filter by typing ahead. Its style roughly matches the floating Spotlight window.
1010

1111
![](assets/screenshot-combined.png)
1212

13+
The list uses the default `NSTableView` styles, so it'll look right at home on Big Sur and older macOS versions alike!
14+
1315
## Usage
1416

1517
This module strives for taking care of its components's memory wherever possible. This means you do not need to keep a reference to the window or its controller around. **Both will be freed when the action has been completed.**
@@ -22,7 +24,7 @@ This is useful if you want to filter e.g. a limited collection of files, like "R
2224
```swift
2325
import FloatingFilter
2426

25-
// ...
27+
// ...
2628

2729
let items = [
2830
Item(identifier: UUID(), title: "Create new widget"),
@@ -45,11 +47,11 @@ Add this to your `Cartfile`:
4547

4648
github "cleancocoa/FloatingFilter"
4749

48-
Then run
50+
Then run
4951

5052
$ carthage update
5153

52-
... and include `FloatingFilter.framework` from `Carthage/Build/Mac` in your app.
54+
... and include `FloatingFilter.framework` from `Carthage/Build/Mac` in your app.
5355

5456
## License
5557

0 commit comments

Comments
 (0)