mirror of
https://github.com/takitsuba/obsidian-auto-bullet.git
synced 2026-07-22 05:42:45 +00:00
Fix review issues: naming convention, copyright notice and UI text case
This commit is contained in:
parent
cf4a606460
commit
877f89318e
4 changed files with 9 additions and 11 deletions
4
LICENSE
4
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.
|
||||
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.
|
||||
|
|
|
|||
|
|
@ -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).
|
||||
|
|
|
|||
6
main.ts
6
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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue