rename to obsidian-ribbon-clasp
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# Ribbon Order Lock
|
# Obsidian Ribbon Clasp
|
||||||
|
|
||||||
Obsidian plugin that stops the left ribbon icons from reshuffling themselves.
|
An [Obsidian][^1] plugin that stops the left ribbon icons from reshuffling themselves.
|
||||||
|
|
||||||
The plugin should work completely transparently, but it relies on undocumented
|
The plugin should work completely transparently, but it relies on undocumented
|
||||||
internals within Obsidian's `workspace.leftRibbon` object, so some future app
|
internals within Obsidian's `workspace.leftRibbon` object, so some future app
|
||||||
@@ -8,9 +8,11 @@ update could break it. Please open an issue if the ribbon ever stops behaving.
|
|||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
**BRAT**: `bdeshi/obsidian-ribbon-order-lock`
|
**BRAT**: `bdeshi/obsidian-ribbon-clasp`
|
||||||
|
|
||||||
**Manual**: extract the latest release archive inside
|
**Manual**: extract the latest release archive inside
|
||||||
`.obsidian/plugins/ribbon-order-lock/`, and enable it.
|
`.obsidian/plugins/ribbon-clasp/`, and enable it.
|
||||||
|
|
||||||
If you're using lazy-plugins, set this plugin's startup type to "Instant".
|
If you're using lazy-plugins, set this plugin's startup type to "Instant".
|
||||||
|
|
||||||
|
[^1]: https://obsidian.md/
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ function debounce(fn, wait) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = class RibbonOrderLock extends Plugin {
|
module.exports = class RibbonClasp extends Plugin {
|
||||||
async onload() {
|
async onload() {
|
||||||
this.settings = Object.assign({ order: [] }, await this.loadData());
|
this.settings = Object.assign({ order: [] }, await this.loadData());
|
||||||
this.enforcing = false;
|
this.enforcing = false;
|
||||||
|
|||||||
+3
-3
@@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"id": "ribbon-order-lock",
|
"id": "ribbon-clasp",
|
||||||
"name": "Ribbon Order Lock",
|
"name": "Ribbon Clasp",
|
||||||
"version": "0.9.0",
|
"version": "0.9.0",
|
||||||
"minAppVersion": "1.1.0",
|
"minAppVersion": "1.1.0",
|
||||||
"description": "Keeps left-ribbon icon order stable across restarts",
|
"description": "Stops the left ribbon icons from reshuffling themselves.",
|
||||||
"author": "bdeshi",
|
"author": "bdeshi",
|
||||||
"authorUrl": "https://github.com/bdeshi",
|
"authorUrl": "https://github.com/bdeshi",
|
||||||
"isDesktopOnly": false
|
"isDesktopOnly": false
|
||||||
|
|||||||
Reference in New Issue
Block a user