joplin-plugin-quick-note 1.0.0

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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Aravind Potluri
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,74 @@
1
+ # Quick Note Plugin for Joplin
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 (default: ALT+Q).
4
+
5
+ <div align=center>
6
+ <p>Capture ideas instantly with a dedicated Quick Note.</p>
7
+ </div>
8
+
9
+ ---
10
+
11
+ <div align="center">
12
+ <p>Desktop</p>
13
+ <img src="docs/assets/desktop.gif" alt="Desktop GIF" style="margin-bottom:20px;" />
14
+ </div>
15
+
16
+ ---
17
+
18
+ <div align="center">
19
+ <p>Mobile</p>
20
+ <img src="docs/assets/mobile.gif" alt="Mobile GIF" height="600px" />
21
+ </div>
22
+
23
+ ## Features
24
+
25
+ - Open a Quick Note on Joplin startup.
26
+ - Set any note as your Quick Note.
27
+ - Open Quick Note anytime with **Alt+Q** (customizable shortcut).
28
+ - Toolbar button for one-click access.
29
+ - Easily unset the Quick Note when no longer needed.
30
+
31
+ ## Installation
32
+
33
+ There are two ways to install Quick Note:
34
+
35
+ 1. **Via Joplin Plugin Search:**
36
+
37
+ - Open Joplin → Tools → Options → Plugins → `Search`.
38
+ - Search for **Quick Note** and install directly.
39
+
40
+ 2. **Manual Installation:**
41
+
42
+ - Follow the instructions in [GENERATOR_DOC](GENERATOR_DOC.md) to generate the `.jpl` file.
43
+ - Open Joplin → Tools → Options → Plugins → `Install from file`.
44
+ - Select the generated `.jpl` file and install.
45
+
46
+ ## Usage
47
+
48
+ 1. Select a note → **Tools → Quick Note → Set as Quick Note**.
49
+ 2. Quick Note automatically opens on Joplin startup (can be disabled in settings).
50
+ 3. Press **Alt+Q** (or your configured shortcut) to open the Quick Note instantly.
51
+ 4. To unset the Quick Note, use **Unset Quick Note** from the menu.
52
+
53
+ ## Settings
54
+
55
+ Navigate to **Tools → Options → Quick Note** to configure:
56
+
57
+ | Setting | Description |
58
+ | ------------------- | ----------------------------------------------------- |
59
+ | **Open on Startup** | Automatically open the Quick Note when Joplin starts. |
60
+ | **Quick Note ID** | The ID of the note set as Quick Note. |
61
+
62
+ ## Commands
63
+
64
+ - **Open Quick Note** → Opens your Quick Note.
65
+ - **Set as Quick Note** → Sets the current note as your Quick Note.
66
+ - **Unset Quick Note** → Removes the Quick Note.
67
+
68
+ ## Contributing
69
+
70
+ Contributions are welcome! Feel free to open issues or pull requests on [GitHub](https://github.com/cipherswami/joplin-plugin-quick-note).
71
+
72
+ ## License
73
+
74
+ [MIT License © Aravind Potluri](./LICENSE)
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "joplin-plugin-quick-note",
3
+ "version": "1.0.0",
4
+ "scripts": {
5
+ "dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
6
+ "prepare": "npm run dist",
7
+ "updateVersion": "webpack --env joplin-plugin-config=updateVersion",
8
+ "update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force"
9
+ },
10
+ "license": "MIT",
11
+ "keywords": [
12
+ "joplin-plugin",
13
+ "quick note"
14
+ ],
15
+ "files": [
16
+ "publish"
17
+ ],
18
+ "devDependencies": {
19
+ "@types/node": "^18.7.13",
20
+ "chalk": "^4.1.0",
21
+ "copy-webpack-plugin": "^11.0.0",
22
+ "fs-extra": "^10.1.0",
23
+ "glob": "^8.0.3",
24
+ "tar": "^6.1.11",
25
+ "ts-loader": "^9.3.1",
26
+ "typescript": "^4.8.2",
27
+ "webpack": "^5.74.0",
28
+ "webpack-cli": "^4.10.0"
29
+ }
30
+ }
@@ -0,0 +1,56 @@
1
+ {
2
+ "manifest_version": 1,
3
+ "id": "com.cipherswami.quick.note",
4
+ "app_min_version": "3.3",
5
+ "version": "1.0.0",
6
+ "name": "Quick Note",
7
+ "description": "Quickly jot down notes on startup or with a shortcut.",
8
+ "author": "Aravind Potluri",
9
+ "homepage_url": "https://cipherswami.github.io/joplin-plugin-quick-note",
10
+ "repository_url": "https://github.com/cipherswami/joplin-plugin-quick-note",
11
+ "platforms": [
12
+ "desktop",
13
+ "mobile"
14
+ ],
15
+ "keywords": [
16
+ "joplin-plugin",
17
+ "quick note"
18
+ ],
19
+ "categories": [
20
+ "productivity"
21
+ ],
22
+ "screenshots": [
23
+ {
24
+ "src": "docs/assets/quick-note.png",
25
+ "label": "Quick Note"
26
+ },
27
+ {
28
+ "src": "docs/assets/desktop-main.png",
29
+ "label": "Desktop main"
30
+ },
31
+ {
32
+ "src": "docs/assets/desktop-settings.png",
33
+ "label": "Desktop settings"
34
+ },
35
+ {
36
+ "src": "docs/assets/mobile-main.png",
37
+ "label": "Mobile main"
38
+ },
39
+ {
40
+ "src": "docs/assets/mobile-settings.png",
41
+ "label": "Mobile settings"
42
+ }
43
+ ],
44
+ "icons": {
45
+ "16": "docs/assets/icon-16.png",
46
+ "32": "docs/assets/icon-32.png",
47
+ "128": "docs/assets/icon-128.png",
48
+ "512": "docs/assets/icon-512.png"
49
+ },
50
+ "promo_tile": {
51
+ "src": "docs/assets/quick-note-promo.png",
52
+ "label": "Quick Note"
53
+ },
54
+ "_publish_hash": "sha256:1c3d6f29668b184616071a30457bb7ea5e564c403def43b632fcb260f2c6140e",
55
+ "_publish_commit": "main:60eb9d9d1e490d9f6ed1d3536bb7fa586735324a"
56
+ }