Skip to content

Commit e40d90d

Browse files
committed
Bump version and update changelog in preparation for release
1 parent 6784419 commit e40d90d

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

StructuredXmlEditor/Changelog.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
--------- 1.9.0 ---------
1+
--------- 1.10.0 ---------
2+
- 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.
3+
- Create a data transformer tool that allows mutating xml files through a template.
4+
- Allow Collections to load their contents from a Keys list or a DefKey, like References do.
5+
6+
- Fix multiple prompts to reload file when it changes on disk.
7+
- Fix some graph node jumping bugs.
8+
9+
--------- 1.9.0 ---------
210

311
- StructElements now load comments from the definition file and use them in the created item.
412
- Added a flags dara type. This is a comma seperated list of strings, editted with a multiselect editor.

StructuredXmlEditor/Util/VersionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
public class VersionInfo
1414
{
1515
public const int MajorVersion = 1;
16-
public const int FeatureVersion = 9;
16+
public const int FeatureVersion = 10;
1717
public const int BugFixVersion = 0;
1818

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

0 commit comments

Comments
 (0)