0.8.3. prep

pull/8/merge
Alex Dima 2017-03-03 17:45:02 +01:00
parent cd24ba4660
commit 3d272380ab
5 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,8 @@
# Monaco Editor Change log
## [0.8.3]
- Fixes an issue in monaco-typescript where it would attempt to validate a disposed model.
## [0.8.2]
- Fixes the following regressions:
- [issue #385](https://github.com/Microsoft/monaco-editor/issues/385): Cannot add action to the left-hand-side of the diff editor

2
monaco.d.ts vendored
View File

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Type definitions for monaco-editor v0.8.2
* Type definitions for monaco-editor v0.8.3
* Released under the MIT license
*-----------------------------------------------------------*/
declare module monaco {

View File

@ -26,7 +26,7 @@
"monaco-html": "1.2.1",
"monaco-json": "1.2.2",
"monaco-languages": "0.7.0",
"monaco-typescript": "2.1.1",
"monaco-typescript": "2.1.2",
"rimraf": "^2.5.2",
"typedoc": "^0.5.0",
"uncss": "^0.14.1"

View File

@ -28,7 +28,7 @@ define(['./samples-all.generated'], function(ALL_SAMPLES) {
name: name,
mimeType: mimeType,
loadText: function() {
return monaco.Promise.as(XHR_SAMPLES[modelUrl]);
return monaco.Promise.as(XHR_SAMPLES[modelUrl]).then(textModifier);
}
});
}
@ -66,6 +66,7 @@ define(['./samples-all.generated'], function(ALL_SAMPLES) {
addXHRSample('Z___jquery-min.js', 'run-editor-jquery-min-js.txt', 'text/javascript');
addXHRSample('Z___scrolling-strategy.js', 'run-editor-sample-js.txt', 'text/plain', function(text) {
console.log('here I am');
var lines = text.split('\n');
var newLines = lines.slice(0);

View File

@ -1,6 +1,6 @@
/*!-----------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Type definitions for monaco-editor v0.8.2
* Type definitions for monaco-editor v0.8.3
* Released under the MIT license
*-----------------------------------------------------------*/
declare module monaco {