This commit is contained in:
Daniel Grunwald 2014-06-28 15:48:55 +02:00
Родитель f9f7a704f7
Коммит ca37878c38
4 изменённых файлов: 77 добавлений и 4 удалений

56
ChangeLog.txt Normal file
Просмотреть файл

@ -0,0 +1,56 @@
Note: this changelog only lists major changes and fixes for major bugs. For a complete list of changes, see the git log.
2014/06/28: AvalonEdit 5.0.1-pre
* License changed from LGPL to MIT
* New Feature: Hide mouse cursor while typing (enabled by default)
* New Feature: Highlight current line (disabled by default)
* New Feature: Overstrike mode (disabled by default)
* AvalonEdit now raises the WPF DataObject attached events on clipboard and drag'n'drop operations.
* Encoding detection now distinguishes between UTF-8 with BOM and UTF-8 without BOM. This prevents AvalonEdit from adding the BOM to existing UTF-8 files.
* Improved handling of grapheme clusters. A base character followed by a combining mark is now treated as a single character by the caret movement logic.
* Added RichText, RichTextModel and RichTextColorizer.
* Renamed the VB highlighting mode from "VBNET" to "VB"
* Changed IHighlighter API in order to support SharpDevelop's semantic C# highlighter
* The regex-based highlighting engine was moved into its own class (HighlightingEngine) to be separated from the state-tracking logic in DocumentHighlighter.
* Add FileName property to TextDocument class.
* DocumentChangeEventArgs.RemovedText/InsertedText are now of type ITextSource instead of string.
* Removed the error-tolerant XML parser ("AvalonEdit.Xml"). An improved version of this parser is available as part of NRefactory 5.
* Removed some obsolete APIs.
2014/05/01: AvalonEdit 4.4.2.9744
* Fixed crash-on-launch in .NET 3.5 version of AvalonEdit.
* Fixed bug that caused deleted document lines to return IsDeleted=false after the whole document document content was replaced.
2014/04/30: AvalonEdit 4.4.1.9739
* Fix crash when using AvalonEdit on multiple UI threads.
2014/01/23: AvalonEdit 4.4.0.9727
* Fix Home/End keys to only act on the current TextLine when word-wrapping is enabled, not on the whole VisualLine.
* Remove the caret stop in the middle of surrogate pairs, so that characters outside the basic multilingual plane work as expected.
2013/04/02: AvalonEdit 4.3.1.9430
* Fix bug that caused IME support to be disabled depending on which WPF control had the focus before AvalonEdit got focused.
2013/03/09: AvalonEdit 4.3.0.9390
* Added IME support
* Fix "InvalidOperationException: Trying to build visual line from collapsed line" when updating existing foldings
2012/05/12: AvalonEdit 4.2.0.8783
* Added SearchPanel
* Added support for virtual space
* C# syntax highlighting: Do not colorize punctuation
2011/09/24: AvalonEdit 4.1.0.8000
* Added region tooltips
* Improved WPF text rendering performance (use of DrawingVisual)
2011/01/16: AvalonEdit 4.0.0.7070
* First official stable release

Просмотреть файл

@ -39,6 +39,7 @@
<PropertyGroup Condition=" '$(Platform)' == 'WithNRefactory' ">
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<DefineConstants>DOTNET4;NREFACTORY</DefineConstants>
<AssemblyOriginatorKeyFile>..\..\NRefactory\ICSharpCode.NRefactory.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>

Просмотреть файл

@ -2,7 +2,7 @@
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>AvalonEdit.Sample</id>
<version>4.4.0.9727</version>
<version>5.0.1-pre</version>
<authors>Daniel Grunwald</authors>
<owners>SharpDevelop</owners>
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
@ -16,7 +16,7 @@ StartupUri="/Samples/AvalonEdit/Window1.xaml"</description>
<summary>Sample code for AvalonEdit the WPF-based text editor used in SharpDevelop 4.0.</summary>
<language>en-US</language>
<dependencies>
<dependency id="AvalonEdit" version="4.4.0.9727" />
<dependency id="AvalonEdit" version="5.0.1-pre" />
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Windows.Forms" />

Просмотреть файл

@ -2,7 +2,7 @@
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>AvalonEdit</id>
<version>4.4.0.9727</version>
<version>5.0.1-pre</version>
<authors>Daniel Grunwald</authors>
<owners>SharpDevelop</owners>
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
@ -11,7 +11,23 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>AvalonEdit is the WPF-based text editor used in SharpDevelop. There are two builds of AvalonEdit included in this package. One that targets .NET 4.0 and one that targets .NET 3.5.</description>
<summary>AvalonEdit is the WPF-based text editor used in SharpDevelop</summary>
<releaseNotes>AvalonEdit 4.4 changes the Home/End keys to only act on the current TextLine when word-wrapping is enabled. It also removes the caret stop in the middle of surrogate pairs, making characters outside the basic multilingual plane work as expected.</releaseNotes>
<releaseNotes>
* License changed from LGPL to MIT
* New Feature: Hide mouse cursor while typing (enabled by default)
* New Feature: Highlight current line (disabled by default)
* New Feature: Overstrike mode (disabled by default)
* AvalonEdit now raises the WPF DataObject attached events on clipboard and drag'n'drop operations.
* Encoding detection now distinguishes between UTF-8 with BOM and UTF-8 without BOM. This prevents AvalonEdit from adding the BOM to existing UTF-8 files.
* Improved handling of grapheme clusters. A base character followed by a combining mark is now treated as a single character by the caret movement logic.
* Added RichText, RichTextModel and RichTextColorizer.
* Renamed the VB highlighting mode from "VBNET" to "VB"
* Changed IHighlighter API in order to support SharpDevelop's semantic C# highlighter
* The regex-based highlighting engine was moved into its own class (HighlightingEngine) to be separated from the state-tracking logic in DocumentHighlighter.
* Add FileName property to TextDocument class.
* DocumentChangeEventArgs.RemovedText/InsertedText are now of type ITextSource instead of string.
* The error-tolerant XML parser included with AvalonEdit was removed. An improved version of this parser is part of the NRefactory 5 project.
* Removed some obsolete APIs.
</releaseNotes>
<language>en-US</language>
<tags>WPF Text Editor SharpDevelop AvalonEdit</tags>
</metadata>