Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Quorafind committed Oct 4, 2024
1 parent b8620b6 commit 4937266
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "shortcuts",
"name": "Shortcuts",
"version": "0.3.0-beta",
"version": "0.3.0-beta.1",
"minAppVersion": "0.15.0",
"description": "A shortcuts plugin for power users.",
"author": "Johnny & Boninall",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shortcuts",
"version": "0.3.0-beta",
"version": "0.3.0-beta.1",
"description": "A shortcuts plugin for power users.",
"main": "main.js",
"scripts": {
Expand Down
6 changes: 2 additions & 4 deletions src/shortcutsSettingTab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ interface CapturedKey {

const modifierKeys = [16, 17, 18, 91, 93];


export class ShortcutsSettingTab extends PluginSettingTab {
plugin: ShortcutsPlugin;
private commandId: string | null = null;
Expand Down Expand Up @@ -268,7 +267,6 @@ export class ShortcutsSettingTab extends PluginSettingTab {
});
}


updateSearchQuery(query: string): void {
this.searchQuery = query;
this.updateFilterDisplay();
Expand Down Expand Up @@ -507,7 +505,7 @@ export class ShortcutsSettingTab extends PluginSettingTab {
);
}

return filteredConfigsTemp;
return filteredConfigsTemp.filter((i) => !i.hide);
}

createShortcutSetting(
Expand Down Expand Up @@ -559,7 +557,7 @@ export class ShortcutsSettingTab extends PluginSettingTab {
cls: "setting-hotkey",
});
hotkeySpan.setText(this.formatSequence(config.sequence));

const deleteButton = hotkeySpan.createSpan(
{
cls: "setting-hotkey-icon setting-delete-hotkey",
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"0.2.2": "0.15.0",
"0.2.3": "0.15.0",
"0.2.4": "0.15.0",
"0.3.0-beta": "0.15.0"
"0.3.0-beta": "0.15.0",
"0.3.0-beta.1": "0.15.0"
}

0 comments on commit 4937266

Please sign in to comment.