mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2024-12-26 04:08:21 +01:00
update antedit
This commit is contained in:
parent
e3562e75e9
commit
21f2e58768
@ -6,6 +6,7 @@ The editor functionality can be extended by its extension mechanism.
|
|||||||
Extension can be developed/released/isntalled by the editor itself.
|
Extension can be developed/released/isntalled by the editor itself.
|
||||||
|
|
||||||
### Change logs
|
### Change logs
|
||||||
|
- 0.1.17-b: Fix extension keybinding bug with the new monaco editor
|
||||||
- 0.1.16-b: use the new version of monaco editor
|
- 0.1.16-b: use the new version of monaco editor
|
||||||
- 0.1.14-b: improve output log display
|
- 0.1.14-b: improve output log display
|
||||||
- 0.1.13-b: Allow file upload in file view, add menu context in tabbar
|
- 0.1.13-b: Allow file upload in file view, add menu context in tabbar
|
||||||
|
@ -6,6 +6,7 @@ The editor functionality can be extended by its extension mechanism.
|
|||||||
Extension can be developed/released/isntalled by the editor itself.
|
Extension can be developed/released/isntalled by the editor itself.
|
||||||
|
|
||||||
### Change logs
|
### Change logs
|
||||||
|
- 0.1.17-b: Fix extension keybinding bug with the new monaco editor
|
||||||
- 0.1.16-b: use the new version of monaco editor
|
- 0.1.16-b: use the new version of monaco editor
|
||||||
- 0.1.14-b: improve output log display
|
- 0.1.14-b: improve output log display
|
||||||
- 0.1.13-b: Allow file upload in file view, add menu context in tabbar
|
- 0.1.13-b: Allow file upload in file view, add menu context in tabbar
|
||||||
|
File diff suppressed because one or more lines are too long
@ -7,7 +7,7 @@
|
|||||||
"author": "Xuan Sang LE",
|
"author": "Xuan Sang LE",
|
||||||
"email": "mrsang@iohub.dev"
|
"email": "mrsang@iohub.dev"
|
||||||
},
|
},
|
||||||
"version": "0.1.16-b",
|
"version": "0.1.17-b",
|
||||||
"category": "Development",
|
"category": "Development",
|
||||||
"iconclass": "bi bi-journal-code",
|
"iconclass": "bi bi-journal-code",
|
||||||
"mimes": [
|
"mimes": [
|
||||||
|
Binary file not shown.
@ -7,7 +7,7 @@
|
|||||||
"author": "Xuan Sang LE",
|
"author": "Xuan Sang LE",
|
||||||
"email": "mrsang@iohub.dev"
|
"email": "mrsang@iohub.dev"
|
||||||
},
|
},
|
||||||
"version": "0.1.16-b",
|
"version": "0.1.17-b",
|
||||||
"category": "Development",
|
"category": "Development",
|
||||||
"iconclass": "bi bi-journal-code",
|
"iconclass": "bi bi-journal-code",
|
||||||
"mimes": [
|
"mimes": [
|
||||||
|
@ -1327,7 +1327,7 @@ namespace OS {
|
|||||||
binding = binding | monaco.KeyMod.WinCtrl;
|
binding = binding | monaco.KeyMod.WinCtrl;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
const k = `KEY_${key}`;
|
const k = `Key${key}`;
|
||||||
if(monaco.KeyCode[k])
|
if(monaco.KeyCode[k])
|
||||||
{
|
{
|
||||||
binding = binding | monaco.KeyCode[k];
|
binding = binding | monaco.KeyCode[k];
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/Antedit/README.md",
|
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/Antedit/README.md",
|
||||||
"category": "Development",
|
"category": "Development",
|
||||||
"author": "Xuan Sang LE",
|
"author": "Xuan Sang LE",
|
||||||
"version": "0.1.16-b",
|
"version": "0.1.17-b",
|
||||||
"dependencies": ["MonacoCore@0.33.0-r"],
|
"dependencies": ["MonacoCore@0.33.0-r"],
|
||||||
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/Antedit/build/release/Antedit.zip"
|
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/Antedit/build/release/Antedit.zip"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user