Skip to content

Commit

Permalink
release 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xpgo committed Feb 1, 2021
1 parent e9351a3 commit 6afdf2b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Just a simple trick. When create description note for a folder, a note file name
- **Note Initial Content**: set the initial content for a new folder note.
- {{FOLDER_NAME}} in the content will be replaced with the folder name.
- {{FOLDER_BRIEF}} in the content will be replaced with a card-style overview of current folder.
- {{FOLDER_BRIEF_LIVE}} in the content will be replaced with a tiny code block which will be rendered to the folder overview in real time.

## Card-style overview of folder

Expand All @@ -39,6 +40,10 @@ The card-style overview of a folder by keyword {{FOLDER_BRIEF}} is a block of ht

## Change log

### 0.3.3

- add keyword {{FOLDER_BRIEF_LIVE}} for inital content to generate folder overview in real time.

### 0.3.2

- Insert folder overview by command: ctrl+p, Insert Folder Overview
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface FolderNotePluginSettings {
const DEFAULT_SETTINGS: FolderNotePluginSettings = {
folderNoteHide: true,
folderNoteName: '_about_',
folderNoteStrInit: '# About {{FOLDER_NAME}}\n {{FOLDER_BRIEF}} \n'
folderNoteStrInit: '# {{FOLDER_NAME}} Overview\n {{FOLDER_BRIEF_LIVE}} \n'
}

export default class FolderNotePlugin extends Plugin {
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "folder-note-plugin",
"name": "Folder Note",
"version": "0.3.2",
"version": "0.3.3",
"minAppVersion": "0.9.12",
"description": "Click a folder node to show a note describing the folder.",
"author": "xpgo",
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"0.2.5": "0.9.7",
"0.3.0": "0.9.7",
"0.3.1": "0.9.7",
"0.3.2": "0.9.7"
"0.3.2": "0.9.7",
"0.3.3": "0.9.7"
}

0 comments on commit 6afdf2b

Please sign in to comment.