From 877f89318e65b1127831d7cde913c96c47196a09 Mon Sep 17 00:00:00 2001 From: Hiroo Takizawa Date: Sun, 23 Mar 2025 16:24:48 +0900 Subject: [PATCH] Fix review issues: naming convention, copyright notice and UI text case --- LICENSE | 4 ++-- README.md | 4 ++-- main.ts | 6 +++--- manifest.json | 6 ++---- 4 files changed, 9 insertions(+), 11 deletions(-) diff --git a/LICENSE b/LICENSE index 287f37a..e632c4a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ -Copyright (C) 2020-2025 by Dynalist Inc. +Copyright (C) 2025 by takitsuba Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/README.md b/README.md index c7f984f..7e51354 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Obsidian Auto Bullet +# Auto Bullet This plugin automatically inserts bullet points ("- ") when you type spaces or tabs at the beginning of a line in Obsidian. @@ -49,4 +49,4 @@ This plugin is inspired by the automatic bullet point feature in [Cosense](https ## License -Released under the MIT License. +See [LICENSE](LICENSE). diff --git a/main.ts b/main.ts index a12f832..531f4c9 100644 --- a/main.ts +++ b/main.ts @@ -196,7 +196,7 @@ class AutoBulletSettingTab extends PluginSettingTab { containerEl.empty(); new Setting(containerEl) - .setName('Half-width Space') + .setName('Half-width space') .setDesc('Insert bullet points when you press a half-width space at the beginning of a line') .addToggle(toggle => toggle .setValue(this.plugin.settings.enableHalfWidthSpace) @@ -206,7 +206,7 @@ class AutoBulletSettingTab extends PluginSettingTab { })); new Setting(containerEl) - .setName('Full-width Space') + .setName('Full-width space') .setDesc('Insert bullet points when you press a full-width space at the beginning of a line') .addToggle(toggle => toggle .setValue(this.plugin.settings.enableFullWidthSpace) @@ -226,7 +226,7 @@ class AutoBulletSettingTab extends PluginSettingTab { })); new Setting(containerEl) - .setName('Customize Home Key') + .setName('Customize home key') .setDesc('Move cursor after bullet point (- ) when pressing Home or Ctrl+A in a bullet line') .addToggle(toggle => toggle .setValue(this.plugin.settings.customizeHomeKey) diff --git a/manifest.json b/manifest.json index 83865ae..55cbf2c 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,5 @@ "description": "Automatically inserts bullet points when you type spaces or tabs at the beginning of a line.", "author": "takitsuba", "authorUrl": "https://github.com/takitsuba", - "fundingUrl": "", - "isDesktopOnly": false, - "hasSettings": true -} \ No newline at end of file + "isDesktopOnly": false +}