orgnote-api 0.41.26 → 0.41.28
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/constants/i18n-keys.d.ts
CHANGED
|
@@ -177,6 +177,13 @@ export declare enum i18n {
|
|
|
177
177
|
PICK_NOTE_TO_LINK = "pick note to link",
|
|
178
178
|
UNTITLED = "untitled",
|
|
179
179
|
NO_SELECTED_NOTE = "no selected note",
|
|
180
|
+
NOTE_INFO_TAGS = "note info tags",
|
|
181
|
+
NOTE_INFO_LINKS = "note info links",
|
|
182
|
+
NOTE_INFO_BACKLINKS = "note info backlinks",
|
|
183
|
+
NOTE_INFO_CREATED = "note info created",
|
|
184
|
+
NOTE_INFO_UPDATED = "note info updated",
|
|
185
|
+
NOTE_INFO_LAST_OPENED = "note info last opened",
|
|
186
|
+
NOTE_INFO_LAST_SYNC = "note info last sync",
|
|
180
187
|
GPG_EMAIL_REQUIRED = "gpg email required",
|
|
181
188
|
GPG_EMAIL_INVALID = "gpg email invalid"
|
|
182
189
|
}
|
|
@@ -264,6 +271,8 @@ export declare const I18N: {
|
|
|
264
271
|
SHOW_MOBILE_FILE_SEARCH: DefaultCommands.SHOW_MOBILE_FILE_SEARCH;
|
|
265
272
|
HIDE_MOBILE_FILE_SEARCH: DefaultCommands.HIDE_MOBILE_FILE_SEARCH;
|
|
266
273
|
OPEN_NOTE: DefaultCommands.OPEN_NOTE;
|
|
274
|
+
SHOW_FILE_INFO: DefaultCommands.SHOW_FILE_INFO;
|
|
275
|
+
OPEN_FILE_ACTIONS: DefaultCommands.OPEN_FILE_ACTIONS;
|
|
267
276
|
TABS: DefaultCommands.TABS;
|
|
268
277
|
SHOW_TAB_SWITCHER: DefaultCommands.SHOW_TAB_SWITCHER;
|
|
269
278
|
CLOSE_TAB: DefaultCommands.CLOSE_TAB;
|
|
@@ -479,6 +488,13 @@ export declare const I18N: {
|
|
|
479
488
|
PICK_NOTE_TO_LINK: i18n.PICK_NOTE_TO_LINK;
|
|
480
489
|
UNTITLED: i18n.UNTITLED;
|
|
481
490
|
NO_SELECTED_NOTE: i18n.NO_SELECTED_NOTE;
|
|
491
|
+
NOTE_INFO_TAGS: i18n.NOTE_INFO_TAGS;
|
|
492
|
+
NOTE_INFO_LINKS: i18n.NOTE_INFO_LINKS;
|
|
493
|
+
NOTE_INFO_BACKLINKS: i18n.NOTE_INFO_BACKLINKS;
|
|
494
|
+
NOTE_INFO_CREATED: i18n.NOTE_INFO_CREATED;
|
|
495
|
+
NOTE_INFO_UPDATED: i18n.NOTE_INFO_UPDATED;
|
|
496
|
+
NOTE_INFO_LAST_OPENED: i18n.NOTE_INFO_LAST_OPENED;
|
|
497
|
+
NOTE_INFO_LAST_SYNC: i18n.NOTE_INFO_LAST_SYNC;
|
|
482
498
|
GPG_EMAIL_REQUIRED: i18n.GPG_EMAIL_REQUIRED;
|
|
483
499
|
GPG_EMAIL_INVALID: i18n.GPG_EMAIL_INVALID;
|
|
484
500
|
};
|
package/constants/i18n-keys.js
CHANGED
|
@@ -187,6 +187,13 @@ export var i18n;
|
|
|
187
187
|
i18n["PICK_NOTE_TO_LINK"] = "pick note to link";
|
|
188
188
|
i18n["UNTITLED"] = "untitled";
|
|
189
189
|
i18n["NO_SELECTED_NOTE"] = "no selected note";
|
|
190
|
+
i18n["NOTE_INFO_TAGS"] = "note info tags";
|
|
191
|
+
i18n["NOTE_INFO_LINKS"] = "note info links";
|
|
192
|
+
i18n["NOTE_INFO_BACKLINKS"] = "note info backlinks";
|
|
193
|
+
i18n["NOTE_INFO_CREATED"] = "note info created";
|
|
194
|
+
i18n["NOTE_INFO_UPDATED"] = "note info updated";
|
|
195
|
+
i18n["NOTE_INFO_LAST_OPENED"] = "note info last opened";
|
|
196
|
+
i18n["NOTE_INFO_LAST_SYNC"] = "note info last sync";
|
|
190
197
|
// GPG
|
|
191
198
|
i18n["GPG_EMAIL_REQUIRED"] = "gpg email required";
|
|
192
199
|
i18n["GPG_EMAIL_INVALID"] = "gpg email invalid";
|
|
@@ -82,6 +82,8 @@ export declare enum DefaultCommands {
|
|
|
82
82
|
SHOW_MOBILE_FILE_SEARCH = "show mobile file search",
|
|
83
83
|
HIDE_MOBILE_FILE_SEARCH = "hide mobile file search",
|
|
84
84
|
OPEN_NOTE = "open note",
|
|
85
|
+
SHOW_FILE_INFO = "show file info",
|
|
86
|
+
OPEN_FILE_ACTIONS = "open file actions",
|
|
85
87
|
TABS = "show tabs",
|
|
86
88
|
SHOW_TAB_SWITCHER = "show tab switcher",
|
|
87
89
|
CLOSE_TAB = "close tab",
|
|
@@ -98,6 +98,8 @@ export var DefaultCommands;
|
|
|
98
98
|
DefaultCommands["HIDE_MOBILE_FILE_SEARCH"] = "hide mobile file search";
|
|
99
99
|
// Notes commands
|
|
100
100
|
DefaultCommands["OPEN_NOTE"] = "open note";
|
|
101
|
+
DefaultCommands["SHOW_FILE_INFO"] = "show file info";
|
|
102
|
+
DefaultCommands["OPEN_FILE_ACTIONS"] = "open file actions";
|
|
101
103
|
// Windows & buffers
|
|
102
104
|
DefaultCommands["TABS"] = "show tabs";
|
|
103
105
|
DefaultCommands["SHOW_TAB_SWITCHER"] = "show tab switcher";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orgnote-api",
|
|
3
|
-
"version": "0.41.
|
|
3
|
+
"version": "0.41.28",
|
|
4
4
|
"description": "Official API for creating extensions for OrgNote app",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -89,4 +89,4 @@
|
|
|
89
89
|
"vue": ">=3.0.0",
|
|
90
90
|
"vue-router": ">=4.0.0"
|
|
91
91
|
}
|
|
92
|
-
}
|
|
92
|
+
}
|