Skip to content

Commit

Permalink
Update the changelog and version.
Browse files Browse the repository at this point in the history
Hide the gitapp in release, as it isnt ready yet.
  • Loading branch information
Lyeeedar committed Jan 7, 2020
1 parent 8533781 commit 95ec285
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
21 changes: 20 additions & 1 deletion StructuredXmlEditor/Changelog.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
3 changes: 3 additions & 0 deletions StructuredXmlEditor/Data/Workspace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion StructuredXmlEditor/Util/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; } }
Expand Down

0 comments on commit 95ec285

Please sign in to comment.