joplin-plugin-quick-note 1.1.2 → 1.1.3
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/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Quick Note
|
|
1
|
+
# Quick Note
|
|
2
2
|
|
|
3
|
-
Quick Note allows you to instantly open a dedicated note for capturing ideas, tasks, or reminders — either on startup or via a customizable keyboard shortcut
|
|
3
|
+
Quick Note is joplin plugin which allows you to instantly open a dedicated note for capturing ideas, tasks, or reminders — either on startup or via a customizable keyboard shortcut.
|
|
4
4
|
|
|
5
5
|
<link rel="icon" type="image/x-icon" href="docs/assets/icon-32.png">
|
|
6
6
|
|
|
@@ -8,20 +8,6 @@ Quick Note allows you to instantly open a dedicated note for capturing ideas, ta
|
|
|
8
8
|
<p>Capture ideas instantly with a dedicated Quick Note.</p>
|
|
9
9
|
</div>
|
|
10
10
|
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
<div align="center">
|
|
14
|
-
<p>Desktop</p>
|
|
15
|
-
<img src="docs/assets/desktop.gif" alt="Desktop GIF" style="margin-bottom:20px;" />
|
|
16
|
-
</div>
|
|
17
|
-
|
|
18
|
-
---
|
|
19
|
-
|
|
20
|
-
<div align="center">
|
|
21
|
-
<p>Mobile</p>
|
|
22
|
-
<img src="docs/assets/mobile.gif" alt="Mobile GIF" height="600px" />
|
|
23
|
-
</div>
|
|
24
|
-
|
|
25
11
|
## Features
|
|
26
12
|
|
|
27
13
|
- Open a Quick Note on Joplin startup.
|
|
@@ -34,16 +20,32 @@ Quick Note allows you to instantly open a dedicated note for capturing ideas, ta
|
|
|
34
20
|
|
|
35
21
|
There are two ways to install Quick Note:
|
|
36
22
|
|
|
37
|
-
|
|
23
|
+
### **Joplin Market Place**
|
|
24
|
+
|
|
25
|
+
- Open Joplin → Tools → Options → Plugins → `Search`.
|
|
26
|
+
- Search for **Quick Note** and install directly.
|
|
27
|
+
|
|
28
|
+
### **Build from source**
|
|
29
|
+
|
|
30
|
+
- Clone the repositroy:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
git clone https://github.com/cipherswami/joplin-plugin-quick-note.git
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
- Install dependencies:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
npm install
|
|
40
|
+
```
|
|
38
41
|
|
|
39
|
-
|
|
40
|
-
- Search for **Quick Note** and install directly.
|
|
42
|
+
* Generate the plugin package (`.jpl` will be created in the `publish/` directory):
|
|
41
43
|
|
|
42
|
-
|
|
44
|
+
```bash
|
|
45
|
+
npm run dist
|
|
46
|
+
```
|
|
43
47
|
|
|
44
|
-
|
|
45
|
-
- Open Joplin → Tools → Options → Plugins → `Install from file`.
|
|
46
|
-
- Select the generated `.jpl` file and install.
|
|
48
|
+
* In Joplin, go to **Tools → Options → Plugins → Install from file**, then select the generated `.jpl` to install it.
|
|
47
49
|
|
|
48
50
|
## Usage
|
|
49
51
|
|
|
@@ -52,25 +54,19 @@ There are two ways to install Quick Note:
|
|
|
52
54
|
3. Press **Alt+Q** (or your configured shortcut) to open the Quick Note instantly.
|
|
53
55
|
4. To unset the Quick Note, use **Unset Quick Note** from the menu.
|
|
54
56
|
|
|
55
|
-
## Settings
|
|
56
|
-
|
|
57
|
-
Navigate to **Tools → Options → Quick Note** to configure:
|
|
58
|
-
|
|
59
|
-
| Setting | Description |
|
|
60
|
-
| ------------------- | ----------------------------------------------------- |
|
|
61
|
-
| **Open on Startup** | Automatically open the Quick Note when Joplin starts. |
|
|
62
|
-
| **Quick Note ID** | The ID of the note set as Quick Note. |
|
|
63
|
-
|
|
64
57
|
## Commands
|
|
65
58
|
|
|
66
59
|
- **Open Quick Note** → Opens your Quick Note.
|
|
67
60
|
- **Set as Quick Note** → Sets the current note as your Quick Note.
|
|
68
61
|
- **Unset Quick Note** → Removes the Quick Note.
|
|
69
62
|
|
|
70
|
-
##
|
|
63
|
+
## Settings
|
|
71
64
|
|
|
72
|
-
|
|
65
|
+
Navigate to **Tools → Options → Quick Note** to configure:
|
|
73
66
|
|
|
74
|
-
|
|
67
|
+
- **Open on Startup**: Automatically open the Quick Note when Joplin starts.
|
|
68
|
+
- **Quick Note ID**: The ID of the note set as Quick Note.
|
|
75
69
|
|
|
76
|
-
|
|
70
|
+
## Contributing
|
|
71
|
+
|
|
72
|
+
Contributions are welcome! Feel free to open issues or pull requests on [GitHub](https://github.com/cipherswami/joplin-plugin-quick-note).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-quick-note",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
6
6
|
"prepare": "npm run dist",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
],
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/node": "^18.7.13",
|
|
20
|
+
"baseline-browser-mapping": "^2.9.11",
|
|
20
21
|
"chalk": "^4.1.0",
|
|
21
22
|
"copy-webpack-plugin": "^11.0.0",
|
|
22
23
|
"fs-extra": "^10.1.0",
|
|
@@ -27,4 +28,4 @@
|
|
|
27
28
|
"webpack": "^5.74.0",
|
|
28
29
|
"webpack-cli": "^4.10.0"
|
|
29
30
|
}
|
|
30
|
-
}
|
|
31
|
+
}
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.cipherswami.quick.note",
|
|
4
4
|
"app_min_version": "3.3",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.3",
|
|
6
6
|
"name": "Quick Note",
|
|
7
7
|
"description": "Quickly jot down notes on startup or with a shortcut.",
|
|
8
8
|
"author": "Aravind Potluri",
|
|
@@ -47,10 +47,7 @@
|
|
|
47
47
|
"128": "docs/assets/icon-128.png",
|
|
48
48
|
"512": "docs/assets/icon-512.png"
|
|
49
49
|
},
|
|
50
|
-
"promo_tile": {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
},
|
|
54
|
-
"_publish_hash": "sha256:e3234ae9e0d245f9562b0090d6e2085ca755d988d186c57d31fe0fec832df522",
|
|
55
|
-
"_publish_commit": "main:f66370484e140d0863618665a1839354c5fa95c4"
|
|
50
|
+
"promo_tile": {},
|
|
51
|
+
"_publish_hash": "sha256:76dd46d1beaf047e3b582b27b49a8be166dc89bdca42f592fac4fbc34b257feb",
|
|
52
|
+
"_publish_commit": "main:651a39edc814c6b3b4411fa454b0d62e9678cd56"
|
|
56
53
|
}
|