Skip to content

Commit

Permalink
Bump version and update changelog in preparation for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyeeedar committed Apr 21, 2020
1 parent 6784419 commit e40d90d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion StructuredXmlEditor/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
--------- 1.9.0 ---------
--------- 1.10.0 ---------
- Add basic support for localised strings. Marking a string element as NeedsLocalisation will write the string contents to a file, and reference it with a GUID in the original element.
- Create a data transformer tool that allows mutating xml files through a template.
- Allow Collections to load their contents from a Keys list or a DefKey, like References do.

- Fix multiple prompts to reload file when it changes on disk.
- Fix some graph node jumping bugs.

--------- 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.
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 = 9;
public const int FeatureVersion = 10;
public const int BugFixVersion = 0;

public static string Version { get { return MajorVersion + "." + FeatureVersion + "." + BugFixVersion; } }
Expand Down

0 comments on commit e40d90d

Please sign in to comment.