|
| 1 | +# 2.1.0 (2023-03-03) |
| 2 | + |
| 3 | +Bugfixes and improvements: |
| 4 | + |
| 5 | +* Fix broken proposal retrieval by adapting to data format and URL changes on swift.org. |
| 6 | + |
| 7 | +* The proposal title is now displayed more prominently in Alfred (together with the proposal ID). |
| 8 | + |
| 9 | +* New actions in Alfred: |
| 10 | + * Hold down Command to copy the proposal title to the clipboard. |
| 11 | + * Hold down Shift+Command to copy a Markdown link to the proposal to the clipboard. |
| 12 | + * (To copy the URL, hit Tab on a proposal and select Copy as Plain Text from the menu. This is not a new feature.) |
| 13 | + |
| 14 | +* The script now forwards four variables to Alfred that can be used in subsequent workflow actions: |
| 15 | + * `proposal_id` (e.g. "SE-0304") |
| 16 | + * `proposal_title` ("Structured concurrency") |
| 17 | + * `proposal_status` ("Implemented") |
| 18 | + * `proposal_url` ("https://github.com/apple/swift-evolution/blob/main/proposals/0304-structured-concurrency.md") |
| 19 | + |
| 20 | + If you want to customize the workflow for your needs, you can use these variables in your actions. Refer to the "Copy Markdown link" action for an example. |
| 21 | + |
| 22 | +* Display more detailed error messages in Alfred on network or parsing failures. |
| 23 | + |
1 | 24 | # 2.0.1 (2017-02-20) |
2 | 25 |
|
3 | 26 | This is a bugfix release with the following changes: |
4 | 27 |
|
5 | | - * The query string is now case insensitive, as it should be. |
6 | | - * You can now search for proposals using the internal name of a |
7 | | - particular proposal status (such as `.rejected` or |
8 | | - `.acceptedWithRevisions`). |
9 | | - * You now have to insert a space between <kbd>se</kbd> and your |
10 | | - query string. Previously, the workflow also triggered for queries |
11 | | - such as <kbd>setup</kbd>, which was not a good idea. |
12 | | - * The timing of how the script is run when you modify the query |
13 | | - string has been tweaked. |
| 28 | +* The query string is now case insensitive, as it should be. |
| 29 | +* You can now search for proposals using the internal name of a |
| 30 | + particular proposal status (such as `.rejected` or |
| 31 | + `.acceptedWithRevisions`). |
| 32 | +* You now have to insert a space between <kbd>se</kbd> and your |
| 33 | + query string. Previously, the workflow also triggered for queries |
| 34 | + such as <kbd>setup</kbd>, which was not a good idea. |
| 35 | +* The timing of how the script is run when you modify the query |
| 36 | + string has been tweaked. |
14 | 37 |
|
15 | 38 | # 2.0.0 (2017-02-20) |
16 | 39 |
|
17 | 40 | This third release of `alfred-swift-evolution` contains the following improvements: |
18 | 41 |
|
19 | | - * The script implementing the workflow is now written in Swift. |
20 | | - * Proposal information is now downloaded from the JSON API behind |
21 | | - the official [Swift evolution review status page][status]. |
22 | | - * Alfred now displays a list of matching proposals, not just a |
23 | | - generic item for running the actual lookup. |
24 | | - * Matching proposals are now listed with their title and current |
25 | | - status. |
26 | | - * You can filter proposals by keyword or status, not just by |
27 | | - proposal number. |
| 42 | +* The script implementing the workflow is now written in Swift. |
| 43 | +* Proposal information is now downloaded from the JSON API behind |
| 44 | + the official [Swift evolution review status page][status]. |
| 45 | +* Alfred now displays a list of matching proposals, not just a |
| 46 | + generic item for running the actual lookup. |
| 47 | +* Matching proposals are now listed with their title and current |
| 48 | + status. |
| 49 | +* You can filter proposals by keyword or status, not just by |
| 50 | + proposal number. |
28 | 51 |
|
29 | 52 | [status]: https://apple.github.io/swift-evolution/ |
30 | 53 |
|
|
0 commit comments