Skip to content

Commit

Permalink
Update changelog and version for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyeeedar committed Feb 12, 2017
1 parent 6f21556 commit 0ba9ede
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion StructuredXmlEditor/Changelog.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions StructuredXmlEditor/Util/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; } }

Expand Down

0 comments on commit 0ba9ede

Please sign in to comment.