Update antedit

This commit is contained in:
lxsang 2021-06-14 19:29:33 +02:00
parent 8a46d88268
commit c05fe5d1dd
8 changed files with 7 additions and 5 deletions

View File

@ -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.11-b: fix file type parsing from path
- 0.1.10-b: Antedit now has it own extension manager - 0.1.10-b: Antedit now has it own extension manager
- 0.1.9-a: Allow output text selection - 0.1.9-a: Allow output text selection
- 0.1.8-a: Allow to change language mode - 0.1.8-a: Allow to change language mode

View File

@ -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.11-b: fix file type parsing from path
- 0.1.10-b: Antedit now has it own extension manager - 0.1.10-b: Antedit now has it own extension manager
- 0.1.9-a: Allow output text selection - 0.1.9-a: Allow output text selection
- 0.1.8-a: Allow to change language mode - 0.1.8-a: Allow to change language mode

File diff suppressed because one or more lines are too long

View File

@ -7,7 +7,7 @@
"author": "Xuan Sang LE", "author": "Xuan Sang LE",
"email": "mrsang@iohub.dev" "email": "mrsang@iohub.dev"
}, },
"version": "0.1.10-b", "version": "0.1.11-b",
"category": "Development", "category": "Development",
"iconclass": "bi bi-journal-code", "iconclass": "bi bi-journal-code",
"mimes": [ "mimes": [

Binary file not shown.

View File

@ -7,7 +7,7 @@
"author": "Xuan Sang LE", "author": "Xuan Sang LE",
"email": "mrsang@iohub.dev" "email": "mrsang@iohub.dev"
}, },
"version": "0.1.10-b", "version": "0.1.11-b",
"category": "Development", "category": "Development",
"iconclass": "bi bi-journal-code", "iconclass": "bi bi-journal-code",
"mimes": [ "mimes": [

View File

@ -81,7 +81,7 @@ namespace OS {
model: monaco.editor.createModel(file.cache, "textplain") model: monaco.editor.createModel(file.cache, "textplain")
} }
} }
const uri = monaco.Uri.parse(file.path); const uri = monaco.Uri.parse(file.protocol + "://antedit/file/" + file.genealogy.join("/"));
const model = monaco.editor.getModel(uri); const model = monaco.editor.getModel(uri);
if(model) if(model)
{ {

View File

@ -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.10-b", "version": "0.1.11-b",
"dependencies": ["MonacoCore@0.23.0-r"], "dependencies": ["MonacoCore@0.23.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"
}, },