Skip to content

Commit

Permalink
Bugfix: Update of ExternalPluginUpdates.xml now works properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Rookiestyle committed May 6, 2022
1 parent 2bba8c3 commit b1e7214
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/EarlyUpdateCheck.cs
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ private void CheckExternalPluginUpdate()
if (UpdateInfoExternParser.VersionInstalled >= UpdateInfoExternParser.VersionAvailable) return;
var pu = PluginUpdateHandler.Plugins.Find(x => x is EarlyUpdateCheckUpdate) as OwnPluginUpdate;
if (pu == null) return;
if (!bDownloadFile) bDownloadFile = Tools.AskYesNo(PluginTranslate.UpdateExternalInfo) != DialogResult.Yes;
if (!bDownloadFile) bDownloadFile = Tools.AskYesNo(PluginTranslate.UpdateExternalInfo) == DialogResult.Yes;
if (!bDownloadFile) return;
m_host.MainWindow.Invoke(new KeePassLib.Delegates.GAction(() => { UpdatePlugins(UpdateFlags.ExternalUpdateInfo, null); }), null);
}
Expand Down
4 changes: 2 additions & 2 deletions src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
//
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
[assembly: AssemblyVersion("4.1.3")]
[assembly: AssemblyFileVersion("4.1.3")]
[assembly: AssemblyVersion("4.1.4")]
[assembly: AssemblyFileVersion("4.1.4")]
[assembly: Guid("672570AF-CC57-4980-86F9-D48FD1CC707D")]
2 changes: 1 addition & 1 deletion version.info
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:
Early update check:4.1.3
Early update check:4.1.4
Early update check!de:9
Early update check!ru:2
Early update check!fr:1
Expand Down

0 comments on commit b1e7214

Please sign in to comment.