@lvce-editor/title-bar-worker 4.6.1 → 4.7.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/dist/titleBarWorkerMain.js +10 -0
- package/package.json +1 -1
|
@@ -1605,6 +1605,7 @@ const SourceControl = 'Source Control';
|
|
|
1605
1605
|
const Terminal$1 = 'Terminal';
|
|
1606
1606
|
const ToggleDeveloperTools = 'Toggle Developer Tools';
|
|
1607
1607
|
const View$1 = 'View';
|
|
1608
|
+
const ViewLicense = 'View License';
|
|
1608
1609
|
const WordWrap = 'Word Wrap';
|
|
1609
1610
|
const Extensions = 'Extensions';
|
|
1610
1611
|
const AddCursorAbove = 'Add Cursor Above';
|
|
@@ -2293,6 +2294,9 @@ const toggleDeveloperTools = () => {
|
|
|
2293
2294
|
const openProcessExplorer = () => {
|
|
2294
2295
|
return i18nString(OpenProcessExplorer);
|
|
2295
2296
|
};
|
|
2297
|
+
const viewLicense = () => {
|
|
2298
|
+
return i18nString(ViewLicense);
|
|
2299
|
+
};
|
|
2296
2300
|
const about = () => {
|
|
2297
2301
|
return i18nString(About);
|
|
2298
2302
|
};
|
|
@@ -2320,6 +2324,12 @@ const getMenuEntries$9 = async platform => {
|
|
|
2320
2324
|
if (entries.length > 0) {
|
|
2321
2325
|
entries.push(menuEntrySeparator);
|
|
2322
2326
|
}
|
|
2327
|
+
entries.push({
|
|
2328
|
+
command: 'License.openLicense',
|
|
2329
|
+
flags: None,
|
|
2330
|
+
id: 'viewLicense',
|
|
2331
|
+
label: viewLicense()
|
|
2332
|
+
});
|
|
2323
2333
|
entries.push({
|
|
2324
2334
|
command: 'About.showAbout',
|
|
2325
2335
|
flags: None,
|