Skip to content

Commit 1c4dbc0

Browse files
committed
Update Package for v0.4.0 Release
1 parent 1185e4b commit 1c4dbc0

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

MonacoEditorComponent/MonacoEditorComponent.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package >
33
<metadata>
44
<id>Monaco.Editor</id>
5-
<version>0.3-alpha</version>
5+
<version>0.4-alpha</version>
66
<title>Monaco Editor UWP Component</title>
77
<authors>Michael A. Hawker</authors>
88
<owners>Michael A. Hawker</owners>
99
<licenseUrl>https://github.com/hawkerm/monaco-editor-uwp/blob/master/LICENSE</licenseUrl>
1010
<projectUrl>https://github.com/hawkerm/monaco-editor-uwp</projectUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>A Windows Runtime Component wrapper around the web-based Monaco Editor</description>
13-
<releaseNotes>Removed access to *DeltaDecorationsAsync*, use *CodeEditor.Decorations* collection instead. Added Actions, Commands, Model, and Options support.</releaseNotes>
13+
<releaseNotes>Multiple Bug Fixes. Added Markers support.</releaseNotes>
1414
<copyright>Copyright 2017</copyright>
1515
<tags>uwp monaco editor controls</tags>
1616
<dependencies>

MonacoEditorComponent/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
// You can specify all the values or you can default the Build and Revision Numbers
2525
// by using the '*' as shown below:
2626
// [assembly: AssemblyVersion("1.0.*")]
27-
[assembly: AssemblyVersion("0.3.0.0")]
28-
[assembly: AssemblyFileVersion("0.3.0.0")]
27+
[assembly: AssemblyVersion("0.4.0.0")]
28+
[assembly: AssemblyFileVersion("0.4.0.0")]
2929
[assembly: ComVisible(false)]

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Monaco Editor UWP
22
=================
3-
A *Windows Runtime Component* wrapper around the web-based [Monaco Editor](https://microsoft.github.io/monaco-editor/). This allows the Monaco Editor to be more easily consumed directly in XAML for C#/C++ UWP based projects.
3+
A *Windows Runtime Component* wrapper around the web-based [Monaco Editor](https://microsoft.github.io/monaco-editor/). This allows the Monaco Editor to be more easily consumed directly in XAML for C# UWP based projects.
44

55
This project is not affiliated with the Monaco team and is provided for convenience. Please direct issues related to the use of this control wrapper to this repository.
66

7-
This control is still in an early alpha state. Currently, every minor version change will signal breaking changes.
7+
This control is still in an early alpha state. Currently, every minor version change may signal breaking changes.
88

99
Supported Features
1010
------------------
@@ -13,10 +13,11 @@ The following Monaco Editor features are currently supported by this component b
1313
- Two-way Text Binding
1414
- Code Language for Syntax Highlighting
1515
- Stand Alone Code Editor Options
16-
- Decorations
16+
- Markers and Decorations
1717
- Actions and Commands
1818
- Basic IModel Support
1919
- KeyDown Events
20+
- Responds Appropriately to Programmatic Focus Events
2021
- Render Aware: Only displays once Loading is complete.
2122

2223
Usage
@@ -25,7 +26,7 @@ Usage
2526
A NuGet Package is provided:
2627

2728
```
28-
Install-Package Monaco.Editor -Version 0.3.0-alpha
29+
Install-Package Monaco.Editor -Version 0.4.0-alpha
2930
```
3031

3132
Look at the TestApp for current usage.

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
v0.4 - 11/13/2017
2+
-----------------
3+
- Added support for *[Markers](https://microsoft.github.io/monaco-editor/api/modules/monaco.editor.html#setmodelmarkers)*
4+
- Added Opening/Intercepting URIs typed in the Editor.
5+
- Added *InternalException* event for better pre-release error information.
6+
- Fixes for #5, #7, #8, #10, #12
7+
- Cleaned-up Sample App Presentation
8+
19
v0.3 - 08/21/2017
210
-----------------
311
- **Breaking:** Removed access to *DeltaDecorationsAsync*, use *CodeEditor.Decorations* collection instead. This simplifies usage of the control in the asynchronous environment.

0 commit comments

Comments
 (0)