Skip to content

Commit

Permalink
Update package
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsaidi committed Dec 9, 2024
1 parent d1ce8a6 commit 616f05b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "KeyboardKitPro",
url: "https://github.com/KeyboardKit/KeyboardKit/releases/download/9.0.1/KeyboardKitPro_v2.zip",
checksum: "bc45e8082079944981d5087dd5c56aca7fb9102c485c835c4ac3cf4cfe1f272e"
url: "https://github.com/KeyboardKit/KeyboardKit/releases/download/9.0.2/KeyboardKitPro_v2.zip",
checksum: "41a81ecea380f53d79089bc3fafac33a6c3cee6dd5ef09ec7593cf2ae2d9d257"
)
]
)
36 changes: 25 additions & 11 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,26 +22,40 @@ The legacy migrations will be removed in 9.1, so make sure to first upgrade to 9



## 9.0.1
## 9.0.2

This version adds more next word prediction utilities.
This version adds more next word prediction and settings utilities.

### 📱 App
### ✨ Features

`KeyboardApp.SettingsScreen` can now show a next word prediction section, to let users set their own request.
* `Autocomplete.NextWordPredictionRequest` has a new `type` property.

### 💡 Autocomplete
### 👑 Pro

* `Autocomplete.Settings` has a new `nextWordPredictionRequest` property.
* `KeyboardApp.SettingsScreen` has ne sections and can be customized in even more ways.
* `KeyboardInputViewController` sets up settings-based next word prediction if specified.

`Autocomplete.NextWordPredictionRequestType` is a new enum that can be used to let users pick a request type.
`Autocomplete.Settings` has new properties to let users pick which next word request type and API key to use.

### 🎛️ Settings

The various settings types have been moved from the context to the namespace, for instance:
## 9.0.1

This version adds more next word prediction utilities.

### ✨ Features

* `Autocomplete.NextWordPredictionRequestType` is a new enum.
* `Autocomplete.Settings` has new next word request type and API key properties.

### 👑 Pro

* `AutocompleteContext.Settings` is now named `Autocomplete.Settings`.
* `KeyboardApp.SettingsScreen` can now show a custom next word prediction section.

### 💡 Adjustments

The context classes however still have `Settings` typealiases to keep the public APIs unchanged.
* The various settings types are moved from the contexts to namespaces.
* For instance, `AutocompleteContext.Settings` is now named `Autocomplete.Settings`.
* The contexts still have `Settings` typealiases to keep the previous APIs unchanged.



Expand Down

0 comments on commit 616f05b

Please sign in to comment.