diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d88442..3e87385 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Fanhuaji (繁化姬) +## 1.3.3 + +- fix: `fanhuaji_convert_panel` is not working +- chore: add a default keybinding for the `fanhuaji_convert_panel` command + + ```js + [ + { + keys: ["alt+f", "alt+h", "alt+j"], + command: "fanhuaji_convert_panel", + }, + ]; + ``` + ## 1.3.2 - feat: use `sublime.QuickPanelItem()` if possible diff --git a/messages.json b/messages.json index b4ae5a5..f36d63d 100644 --- a/messages.json +++ b/messages.json @@ -1,4 +1,4 @@ { - "1.3.2": "messages/update_message.md", + "1.3.3": "messages/update_message.md", "install": "README.md" } diff --git a/messages/update_message.md b/messages/update_message.md index 267207d..0e0b5ca 100644 --- a/messages/update_message.md +++ b/messages/update_message.md @@ -1,8 +1,16 @@ Fanhuaji has been updated. To see the changelog, visit Preferences » Package Settings » Fanhuaji » Changelog -## 1.3.2 +## 1.3.3 -- feat: use `sublime.QuickPanelItem()` if possible +- fix: `fanhuaji_convert_panel` is not working +- chore: add a default keybinding for the `fanhuaji_convert_panel` command - This will require ST >= 4083. + ```js + [ + { + keys: ["alt+f", "alt+h", "alt+j"], + command: "fanhuaji_convert_panel", + }, + ]; + ```