Skip to content

Commit

Permalink
Release 0.16.1 (hotfix: correctly save config on new installations)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngld committed Sep 5, 2020
1 parent 6d4fe89 commit 1a556e8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion HtmlRenderer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
// 既定値にすることができます:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.16.0.0")]
[assembly: AssemblyVersion("0.16.1.0")]
2 changes: 1 addition & 1 deletion OverlayPlugin.Common/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
// 既定値にすることができます:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.16.0.0")]
[assembly: AssemblyVersion("0.16.1.0")]
3 changes: 2 additions & 1 deletion OverlayPlugin.Core/EventSources/BuiltinEventConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ public static BuiltinEventConfig LoadConfig(IPluginConfig Config)
public void SaveConfig(IPluginConfig Config)
{
var newObj = JObject.FromObject(this);
if (!JObject.DeepEquals(Config.EventSourceConfigs["MiniParse"], newObj))
if (!Config.EventSourceConfigs.ContainsKey("MiniParse")
|| !JObject.DeepEquals(Config.EventSourceConfigs["MiniParse"], newObj))
{
Config.EventSourceConfigs["MiniParse"] = newObj;
Config.MarkDirty();
Expand Down
2 changes: 1 addition & 1 deletion OverlayPlugin.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
// 既定値にすることができます:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.16.0.0")]
[assembly: AssemblyVersion("0.16.1.0")]
2 changes: 1 addition & 1 deletion OverlayPlugin.Updater/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.16.0.0")]
[assembly: AssemblyVersion("0.16.1.0")]
2 changes: 1 addition & 1 deletion OverlayPlugin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
// 既定値にすることができます:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.16.0.0")]
[assembly: AssemblyVersion("0.16.1.0")]

0 comments on commit 1a556e8

Please sign in to comment.