diff --git a/StructuredXmlEditor/Changelog.txt b/StructuredXmlEditor/Changelog.txt index f2b86de..aa79479 100644 --- a/StructuredXmlEditor/Changelog.txt +++ b/StructuredXmlEditor/Changelog.txt @@ -1,4 +1,15 @@ ---------- 1.5.0 --------- +--------- 1.6.0 --------- + +- Improve timelines. + -- Keyframes can now have a duration. + -- Timelines sequentially next to each other will share a scroll position and zoom amount. + -- Keyframes can snap to the start/end of keyframes on other timelines in the group. +- Number items will now parse equations typed into them. (e.g. typing 3*4 will put 12 into the data). +- Add support for 'comment' elements. This should help with organising your data. +- Add a 'ReferenceDef' element that allows you to specify the Keys in a seperate element, then import those. + + +--------- 1.5.0 --------- - Add support for multiediting. Either select some documents in the project view then right click -> Multiedit (this will open it as a new document), or right click on a collection and click multi edit children (this will show it in the Focus tool). - Add support for Yaml as a data type. diff --git a/StructuredXmlEditor/Util/VersionInfo.cs b/StructuredXmlEditor/Util/VersionInfo.cs index c9f267b..29b489b 100644 --- a/StructuredXmlEditor/Util/VersionInfo.cs +++ b/StructuredXmlEditor/Util/VersionInfo.cs @@ -13,8 +13,8 @@ public class VersionInfo { public const int MajorVersion = 1; - public const int FeatureVersion = 5; - public const int BugFixVersion = 1; + public const int FeatureVersion = 6; + public const int BugFixVersion = 0; public static string Version { get { return MajorVersion + "." + FeatureVersion + "." + BugFixVersion; } }