From 95ec285b967a8b50c00b212b1b0c67969fc0ce20 Mon Sep 17 00:00:00 2001 From: lyeeedar Date: Tue, 7 Jan 2020 16:52:46 +0000 Subject: [PATCH] Update the changelog and version. Hide the gitapp in release, as it isnt ready yet. --- StructuredXmlEditor/Changelog.txt | 21 ++++++++++++++++++++- StructuredXmlEditor/Data/Workspace.cs | 3 +++ StructuredXmlEditor/Util/VersionInfo.cs | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/StructuredXmlEditor/Changelog.txt b/StructuredXmlEditor/Changelog.txt index 4c70c4f..877dc3f 100644 --- a/StructuredXmlEditor/Changelog.txt +++ b/StructuredXmlEditor/Changelog.txt @@ -1,4 +1,23 @@ ---------- 1.8.0 --------- +--------- 1.9.0 --------- + +- StructElements now load comments from the definition file and use them in the created item. +- Added a flags dara type. This is a comma seperated list of strings, editted with a multiselect editor. +- You can now drag between timelines in a group. +- You can now marquee select across a timeline group. +- Allow loading of references that have only a single valid type (useful for switching from struct -> reference). +- Make graph nodes snap to a grid. This should make it easier to make nicer looking graphs. +- Documents now only prompt to reload when focused, and only prompt a single time. +- Graphs are now positioned with their root node at the origin on save. + +- Fix a number of cases of keyboard focus being lost on editing. +- Fix a crash on shutdown. +- Fix a bug when deleting timeline keyframes. +- Fix a crash in the timeline. +- Fix a crash when updating the description of reference items. +- Fix a bug that was preventing visibleif bindings being updated on change. + + +--------- 1.8.0 --------- - Use the comments in the definition for a timelines keyframes to group them in the dropdown. - Allow referencedefs to be global. diff --git a/StructuredXmlEditor/Data/Workspace.cs b/StructuredXmlEditor/Data/Workspace.cs index b7e4371..1f905e4 100644 --- a/StructuredXmlEditor/Data/Workspace.cs +++ b/StructuredXmlEditor/Data/Workspace.cs @@ -251,7 +251,10 @@ public Workspace() Tools.Add(new ProjectViewTool(this)); Tools.Add(new TemplateCreatorTool(this)); Tools.Add(new FocusTool(this)); + +#if DEBUG Tools.Add(new GitTool(this)); +#endif Thread workerThread = new Thread(WorkerThreadLoop); workerThread.IsBackground = true; diff --git a/StructuredXmlEditor/Util/VersionInfo.cs b/StructuredXmlEditor/Util/VersionInfo.cs index 902bcd1..020aed7 100644 --- a/StructuredXmlEditor/Util/VersionInfo.cs +++ b/StructuredXmlEditor/Util/VersionInfo.cs @@ -13,7 +13,7 @@ public class VersionInfo { public const int MajorVersion = 1; - public const int FeatureVersion = 8; + public const int FeatureVersion = 9; public const int BugFixVersion = 0; public static string Version { get { return MajorVersion + "." + FeatureVersion + "." + BugFixVersion; } }