You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AS Notes is a VS Code extension that turns your editor into a Personal Knowledge Management System (PKMS).
@@ -211,9 +213,20 @@ In outliner mode, pressing Enter on a closing `` ``` `` line that belongs to a b
211
213
212
214
## AS Notes Pro Features
213
215
214
-
A **Pro licence** unlocks premium features. Enter your licence key in VS Code settings under `as-notes.licenceKey`. When a valid key is active the status bar shows **AS Notes (Pro)**.
216
+
A **Pro licence** unlocks premium features. When a valid key is active the status bar shows **AS Notes (Pro)**.
217
+
218
+
To obtain a licence key, visit [asnotes.io](https://www.asnotes.io/pricing)
219
+
220
+
**Entering your licence key:**
221
+
222
+
- Run **AS Notes: Enter Licence Key** from the Command Palette (`Ctrl+Shift+P`) — the quickest way.
223
+
- Or open VS Code Settings (`Ctrl+,`), search for `as-notes.licenceKey`, and paste your key there.
224
+
225
+
### Table commands
226
+
227
+
All table operations in the slash command menu (`/`) are Pro features. Free users see them listed with **(Pro)** appended — they are visible but blocked until a licence is active.
215
228
216
-
To obtain a licence key, contact [appsoftware.com](https://www.appsoftware.com/contact).
229
+
See [Slash Commands](#slash-commands) for the full list of table commands.
217
230
218
231
### Encrypted notes
219
232
@@ -604,7 +617,7 @@ Front-matter holds the structured fields; the Markdown body is the card descript
604
617
|---|---|---|
605
618
|`as-notes.periodicScanInterval`|`300`| Seconds between automatic background scans for file changes. Set to `0` to disable. Minimum: `30`. |
606
619
|`as-notes.journalFolder`|`journals`| Folder for daily journal files, relative to workspace root. |
607
-
|`as-notes.licenceKey`|*(empty)*| AS Notes Pro licence key. Scope: machine (not synced). |
620
+
|`as-notes.licenceKey`|*(empty)*| AS Notes Pro licence key (format: `ASNO-XXXX-XXXX-XXXX-XXXX`). Enter via **AS Notes: Enter Licence Key** in the Command Palette or directly in Settings. Scope: machine (not synced). |
608
621
|`as-notes.enableLogging`|`false`| Enable diagnostic logging to `.asnotes/logs/`. Rolling 10 MB files, max 5. Requires reload after changing. Also activated by setting the `AS_NOTES_DEBUG=1` environment variable. |
Copy file name to clipboardExpand all lines: docs-src/pages/Settings.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ All AS Notes settings are available in VS Code Settings (`Ctrl+,`). Search for `
27
27
28
28
| Setting | Default | Description |
29
29
|---|---|---|
30
-
|`as-notes.licenceKey`|*(empty)*| AS Notes Pro licence key. Stored at machine scope (not synced across devices). See [[Encrypted Notes]]. |
30
+
|`as-notes.licenceKey`|*(empty)*| AS Notes Pro licence key (format: `ASNO-XXXX-XXXX-XXXX-XXXX`). Unlocks table commands and encrypted notes. Enter via **AS Notes: Enter Licence Key** in the Command Palette, or paste directly here. Stored at machine scope (not synced across devices). See [[Encrypted Notes]]. |
Copy file name to clipboardExpand all lines: docs-src/pages/Slash Commands.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,10 @@ These commands only appear in the slash menu when the cursor is on a task line (
65
65
|**Task: Priority 3**| Inserts `#P3`, replacing any existing priority tag |
66
66
|**Task: Waiting**| Inserts `#W` at the task text start |
67
67
|**Task: Due Date**| Opens a date input pre-filled with today (YYYY-MM-DD format). On confirm, inserts `#D-YYYY-MM-DD` at the task text start |
68
+
|**Task: Completion Date**| Opens a date input pre-filled with today (YYYY-MM-DD format). On confirm, inserts `#C-YYYY-MM-DD` at the task text start |
68
69
69
70
## Pro Licence
70
71
71
-
Pro users see clean command names in the menu. Free users see the same commands with **(Pro)** appended. See [[Encrypted Notes]] for how to obtain and enter a licence key.
72
+
Pro users see clean command names in the menu. Free users see the same commands with **(Pro)** appended.
73
+
74
+
To enter your licence key, run **AS Notes: Enter Licence Key** from the Command Palette (`Ctrl+Shift+P`), or open VS Code Settings (`Ctrl+,`) and search for `as-notes.licenceKey`. See [[Settings]] for details.
Copy file name to clipboardExpand all lines: vs-code-extension/package.json
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "as-notes",
3
3
"displayName": "AS Notes - Personal Knowledge Management System (PKMS)",
4
4
"description": "VS Code Personal Knowledge Management System (PKMS) - Markdown Editing, Wikilinks (inc. Nested), Tasks, Kanban, Files, Publish to HTML, Daily Journal, Encrypted Notes",
5
-
"version": "2.2.1",
5
+
"version": "2.2.2",
6
6
"publisher": "appsoftwareltd",
7
7
"license": "Elastic-2.0",
8
8
"icon": "images/icon.png",
@@ -145,6 +145,10 @@
145
145
{
146
146
"command": "as-notes.renameKanbanBoard",
147
147
"title": "AS Notes: Rename Kanban Board"
148
+
},
149
+
{
150
+
"command": "as-notes.enterLicenceKey",
151
+
"title": "AS Notes: Enter Licence Key"
148
152
}
149
153
],
150
154
"keybindings": [
@@ -217,7 +221,7 @@
217
221
"type": "string",
218
222
"default": "",
219
223
"scope": "machine",
220
-
"description": "AS Notes Pro licence key. Enter your 24-character licence key to activate Pro features."
224
+
"description": "AS Notes Pro licence key (format: ASNO-XXXX-XXXX-XXXX-XXXX). Enter your licence key to activate Pro features. Purchase at https://www.asnotes.io/pricing"
0 commit comments