Skip to content

Commit

Permalink
release: 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RyotaUshio committed Feb 18, 2024
1 parent 7306403 commit 6274986
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
gh release create "$tag" \
--title="$tag" \
--draft \
main.js manifest.json styles.css
main.js manifest.json
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "command-blacklist",
"name": "Command Blacklist",
"version": "0.1.0",
"version": "0.1.1",
"minAppVersion": "1.3.5",
"description": "Hide unwanted commands from the command palette.",
"author": "Ryota Ushio",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-command-blacklist",
"version": "0.1.0",
"version": "0.1.1",
"description": "An Obsidian.md plugin to hide unwanted commands from the command palette.",
"scripts": {
"dev": "node esbuild.config.mjs",
Expand Down
2 changes: 0 additions & 2 deletions src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export type KeysOfType<Obj, Type> = NonNullable<{ [k in keyof Obj]: Obj[k] exten
export class SampleSettingTab extends PluginSettingTab {
constructor(public plugin: MyPlugin) {
super(plugin.app, plugin);
this.containerEl.addClass('command-blacklist-settings');
}

get settings(): MyPluginSettings {
Expand All @@ -84,7 +83,6 @@ export class SampleSettingTab extends PluginSettingTab {
const iconEl = createDiv();
setting.settingEl.prepend(iconEl)
setIcon(iconEl, icon);
setting.settingEl.addClass('pdf-plus-setting-heading');
}
});
}
Expand Down
3 changes: 0 additions & 3 deletions styles.css

This file was deleted.

0 comments on commit 6274986

Please sign in to comment.