joplin-plugin-filterable-notebook-tree-view 0.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright 2026 Wakakusa Ryuuzi
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,22 +1,54 @@
|
|
|
1
|
-
# Joplin Plugin Filterable Notebook TreeView
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
>
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
1
|
+
# Joplin Plugin Filterable Notebook TreeView
|
|
2
|
+
|
|
3
|
+
[日本語](./doc/README.jp.md)
|
|
4
|
+
|
|
5
|
+
> [!CAUTION]
|
|
6
|
+
> This plugin is currently under development.
|
|
7
|
+
> Use at your own risk.
|
|
8
|
+
|
|
9
|
+
Filterable Notebook TreeView adds a panel that lets you filter the notebook tree by name.
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+
|
|
13
|
+
# Motivation
|
|
14
|
+
|
|
15
|
+
As a heavy Joplin user, I ended up with too many notebooks, which made them hard to find.
|
|
16
|
+
|
|
17
|
+
I wanted a way to filter that:
|
|
18
|
+
|
|
19
|
+
- stays visible as a panel
|
|
20
|
+
- keeps parent/child relationships visible
|
|
21
|
+
|
|
22
|
+
So I created a filtering approach separate from the command palette.
|
|
23
|
+
|
|
24
|
+
# Installation
|
|
25
|
+
|
|
26
|
+
This plugin is published in Joplin's plugin registry.
|
|
27
|
+
In Joplin, open `Options` -> `Plugins`, then search for `Filterable Notebook TreeView`.
|
|
28
|
+
|
|
29
|
+
# Usage
|
|
30
|
+
|
|
31
|
+
## Panel
|
|
32
|
+
|
|
33
|
+
After installing and enabling the plugin, the panel appears.
|
|
34
|
+
Use `View` -> `Change application layout` to place it wherever you like.
|
|
35
|
+
|
|
36
|
+
## Filter
|
|
37
|
+
|
|
38
|
+
Type text into the field labeled `Notebook Name`.
|
|
39
|
+
Folders containing that text are shown, along with their parent path up to the root.
|
|
40
|
+
|
|
41
|
+
Selecting a folder in the panel moves Joplin to that folder.
|
|
42
|
+
|
|
43
|
+
# TODO
|
|
44
|
+
|
|
45
|
+
The following items are planned features or known bugs:
|
|
46
|
+
|
|
47
|
+
- [ ] You currently need to restart Joplin to show newly created notebooks
|
|
48
|
+
- [ ] Display order may not match Joplin in some cases
|
|
49
|
+
- [ ] Parent folders may not appear in some cases
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
# Lisence
|
|
53
|
+
|
|
54
|
+
This project is licensed under the MIT License.
|
package/package.json
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "joplin-plugin-filterable-notebook-tree-view",
|
|
3
|
-
"version": "
|
|
4
|
-
"scripts": {
|
|
5
|
-
"dev": "concurrently -k \"npm:dev:plugin\" \"npm:dev:webview\"",
|
|
6
|
-
"dev:webview": "vite",
|
|
7
|
-
"dev:plugin": "concurrently -k \"cross-env NODE_ENV=development webpack --watch --env joplin-plugin-config=buildMain\" \"cross-env NODE_ENV=development webpack --watch --env joplin-plugin-config=buildExtraScripts\"",
|
|
8
|
-
"build": "npm run build:plugin && npm run build:webview",
|
|
9
|
-
"build:webview": "vue-tsc --noEmit && vite build",
|
|
10
|
-
"build:plugin": "cross-env NODE_ENV=production webpack --env joplin-plugin-config=buildMain",
|
|
11
|
-
"packaging": "cross-env NODE_ENV=production webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && npm run build:webview && webpack --env joplin-plugin-config=createArchive",
|
|
12
|
-
"updateVersion": "webpack --env joplin-plugin-config=updateVersion",
|
|
13
|
-
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force"
|
|
14
|
-
},
|
|
15
|
-
"license": "MIT",
|
|
16
|
-
"keywords": [
|
|
17
|
-
"joplin-plugin"
|
|
18
|
-
],
|
|
19
|
-
"files": [
|
|
20
|
-
"publish"
|
|
21
|
-
],
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"@iconify-json/mdi": "^1.2.3",
|
|
24
|
-
"@types/node": "^18.7.13",
|
|
25
|
-
"@unocss/preset-icons": "^66.6.0",
|
|
26
|
-
"@unocss/preset-wind4": "^66.6.0",
|
|
27
|
-
"@vitejs/plugin-vue": "^5.0.0",
|
|
28
|
-
"chalk": "^4.1.0",
|
|
29
|
-
"concurrently": "^9.2.1",
|
|
30
|
-
"copy-webpack-plugin": "^11.0.0",
|
|
31
|
-
"cross-env": "^10.1.0",
|
|
32
|
-
"fs-extra": "^10.1.0",
|
|
33
|
-
"glob": "^8.0.3",
|
|
34
|
-
"raw-loader": "^4.0.2",
|
|
35
|
-
"tar": "^6.1.11",
|
|
36
|
-
"ts-loader": "^9.3.1",
|
|
37
|
-
"typescript": "^5.0.0",
|
|
38
|
-
"unocss": "^66.6.0",
|
|
39
|
-
"vite": "^5.0.0",
|
|
40
|
-
"vue-tsc": "^3.0.0",
|
|
41
|
-
"webpack": "^5.74.0",
|
|
42
|
-
"webpack-cli": "^4.10.0"
|
|
43
|
-
},
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"@vueuse/core": "^14.2.1",
|
|
46
|
-
"vue": "^3.5.28"
|
|
47
|
-
}
|
|
48
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "joplin-plugin-filterable-notebook-tree-view",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"dev": "concurrently -k \"npm:dev:plugin\" \"npm:dev:webview\"",
|
|
6
|
+
"dev:webview": "vite",
|
|
7
|
+
"dev:plugin": "concurrently -k \"cross-env NODE_ENV=development webpack --watch --env joplin-plugin-config=buildMain\" \"cross-env NODE_ENV=development webpack --watch --env joplin-plugin-config=buildExtraScripts\"",
|
|
8
|
+
"build": "npm run build:plugin && npm run build:webview",
|
|
9
|
+
"build:webview": "vue-tsc --noEmit && vite build",
|
|
10
|
+
"build:plugin": "cross-env NODE_ENV=production webpack --env joplin-plugin-config=buildMain",
|
|
11
|
+
"packaging": "cross-env NODE_ENV=production webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && npm run build:webview && webpack --env joplin-plugin-config=createArchive",
|
|
12
|
+
"updateVersion": "webpack --env joplin-plugin-config=updateVersion",
|
|
13
|
+
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force"
|
|
14
|
+
},
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"joplin-plugin"
|
|
18
|
+
],
|
|
19
|
+
"files": [
|
|
20
|
+
"publish"
|
|
21
|
+
],
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@iconify-json/mdi": "^1.2.3",
|
|
24
|
+
"@types/node": "^18.7.13",
|
|
25
|
+
"@unocss/preset-icons": "^66.6.0",
|
|
26
|
+
"@unocss/preset-wind4": "^66.6.0",
|
|
27
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
28
|
+
"chalk": "^4.1.0",
|
|
29
|
+
"concurrently": "^9.2.1",
|
|
30
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
31
|
+
"cross-env": "^10.1.0",
|
|
32
|
+
"fs-extra": "^10.1.0",
|
|
33
|
+
"glob": "^8.0.3",
|
|
34
|
+
"raw-loader": "^4.0.2",
|
|
35
|
+
"tar": "^6.1.11",
|
|
36
|
+
"ts-loader": "^9.3.1",
|
|
37
|
+
"typescript": "^5.0.0",
|
|
38
|
+
"unocss": "^66.6.0",
|
|
39
|
+
"vite": "^5.0.0",
|
|
40
|
+
"vue-tsc": "^3.0.0",
|
|
41
|
+
"webpack": "^5.74.0",
|
|
42
|
+
"webpack-cli": "^4.10.0"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@vueuse/core": "^14.2.1",
|
|
46
|
+
"vue": "^3.5.28"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
Binary file
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"manifest_version": 1,
|
|
3
|
-
"id": "com.wakakusa.filterable-notebook-tree-view",
|
|
4
|
-
"name": "Filterable Notebook TreeView",
|
|
5
|
-
"version": "0.0.1",
|
|
6
|
-
"app_min_version": "3.5",
|
|
7
|
-
"platforms": [
|
|
8
|
-
"desktop"
|
|
9
|
-
],
|
|
10
|
-
"description": "",
|
|
11
|
-
"author": "Wakakusa Ryuuzi",
|
|
12
|
-
"keywords": [
|
|
13
|
-
"notebook",
|
|
14
|
-
"filter"
|
|
15
|
-
],
|
|
16
|
-
"categories": [
|
|
17
|
-
"appearance",
|
|
18
|
-
"search",
|
|
19
|
-
"personal knowledge management"
|
|
20
|
-
],
|
|
21
|
-
"_publish_hash": "sha256:ade37213d2c4018c4f076549d020b3ac903f91fdcfcc50a052b8446f509b072d",
|
|
22
|
-
"_publish_commit": "main:6148cabd8645b50e470aed352aac605d0e22efa4"
|
|
23
|
-
}
|