generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
60 changed files
with
12,838 additions
and
12,740 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"semi": true, | ||
"tabWidth": 2, | ||
"printWidth": 100, | ||
"singleQuote": false, | ||
"trailingComma": "es5", | ||
"bracketSpacing": true, | ||
"bracketSameLine": false, | ||
"arrowParens": "always", | ||
"endOfLine": "lf", | ||
"quoteProps": "as-needed", | ||
"overrides": [ | ||
{ | ||
"files": "*.md", | ||
"options": { | ||
"tabWidth": 2 | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,63 @@ | ||
# Changelog | ||
|
||
## 1.4.2 | ||
|
||
- Refactored names of files to better conform to best practices. | ||
- Added prettier config for more consistent code formatting. | ||
|
||
## 1.4.1 | ||
|
||
- Updated ReadMe.md. | ||
- Disabled spellchecking for lookup input field. | ||
- Minor bugfixes and behind-the-scenes improvements. | ||
- Updated ReadMe.md. | ||
- Disabled spellchecking for lookup input field. | ||
- Minor bugfixes and behind-the-scenes improvements. | ||
|
||
## 1.4.0 | ||
|
||
- Implemented a built-in way of renaming notes. | ||
- It will automatically rename files below in the hiearchy. | ||
- Can be access either through the Command Palette or by right-clicking on a note in the tree view and selecting "Rename Note". | ||
- Will not allow you to rename a note to a name that already exists in the vault. | ||
- Moved Canvas support to experimental as it is not fully supported by this plugin yet. | ||
- Implemented a built-in way of renaming notes. | ||
- It will automatically rename files below in the hiearchy. | ||
- Can be access either through the Command Palette or by right-clicking on a note in the tree view and selecting "Rename Note". | ||
- Will not allow you to rename a note to a name that already exists in the vault. | ||
- Moved Canvas support to experimental as it is not fully supported by this plugin yet. | ||
|
||
## 1.3.0 | ||
|
||
- Reworked the "Auto-generate Properties" setting. | ||
- ID generation is now optional. | ||
- Can optionally create a `tags` property. | ||
- A `created` property can be optionally created with the current date. | ||
- It will use the user selected keys for title and description. If the keys are not present, it will default to `title` and `desc`. | ||
- It now generates a title based on the file name. | ||
- Reworked the "Auto-generate Properties" setting. | ||
- ID generation is now optional. | ||
- Can optionally create a `tags` property. | ||
- A `created` property can be optionally created with the current date. | ||
- It will use the user selected keys for title and description. If the keys are not present, it will default to `title` and `desc`. | ||
- It now generates a title based on the file name. | ||
|
||
## 1.2.0 | ||
|
||
- Redesigned Lookup to include the contents of the description property. | ||
- Set custom Properties key for title and description. | ||
- Small bug fixes. | ||
- Redesigned Lookup to include the contents of the description property. | ||
- Set custom Properties key for title and description. | ||
- Small bug fixes. | ||
|
||
## 1.1.0 | ||
|
||
- Added support for all file types supported by Obsidian, including Canvas. | ||
- Small bug and grammatical fixes | ||
- Added support for all file types supported by Obsidian, including Canvas. | ||
- Small bug and grammatical fixes | ||
|
||
## 1.0.4 | ||
|
||
- Small, behind-the-scenes changes to comply with Obsidian review | ||
- Small, behind-the-scenes changes to comply with Obsidian review | ||
|
||
## 1.0.3 | ||
|
||
- Behind-the-scenes improvements to streamline the codebase | ||
- Behind-the-scenes improvements to streamline the codebase | ||
|
||
## 1.0.2 | ||
|
||
- Updated manifest version number | ||
- Updated manifest version number | ||
|
||
## 1.0.1 | ||
|
||
- Updated ReadMe to give credit to original repo | ||
- Updated ReadMe to give credit to original repo | ||
|
||
## 1.0.0 | ||
|
||
Initial Release: | ||
|
||
- Forked from [Obsidian Dendron Tree](https://github.com/levirs565/obsidian-dendron-tree) by [levirs565](https://github.com/levirs565). | ||
- Added setting to choose how files are deleted | ||
- Forked from [Obsidian Dendron Tree](https://github.com/levirs565/obsidian-dendron-tree) by [levirs565](https://github.com/levirs565). | ||
- Added setting to choose how files are deleted |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export function customAlphabet(alphabet: string, defaultSize?: number): (size?: number) => string { | ||
return () => "" | ||
return () => ""; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** @type {import('ts-jest').JestConfigWithTsJest} */ | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'node', | ||
}; | ||
preset: "ts-jest", | ||
testEnvironment: "node", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"id": "structured-tree", | ||
"name": "Structured Tree", | ||
"version": "1.4.1", | ||
"version": "1.4.2", | ||
"minAppVersion": "1.1.0", | ||
"description": "A file explorer similar to Dendron for navigating hierarchical notes separated by '.'", | ||
"author": "Marius Svarverud", | ||
"authorUrl": "https://github.com/Rudtrack", | ||
"fundingUrl": "https://github.com/sponsors/Rudtrack", | ||
"isDesktopOnly": false | ||
} | ||
} |
Oops, something went wrong.