Skip to content

Commit b1e7214

Browse files
committed
Bugfix: Update of ExternalPluginUpdates.xml now works properly
1 parent 2bba8c3 commit b1e7214

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/EarlyUpdateCheck.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ private void CheckExternalPluginUpdate()
516516
if (UpdateInfoExternParser.VersionInstalled >= UpdateInfoExternParser.VersionAvailable) return;
517517
var pu = PluginUpdateHandler.Plugins.Find(x => x is EarlyUpdateCheckUpdate) as OwnPluginUpdate;
518518
if (pu == null) return;
519-
if (!bDownloadFile) bDownloadFile = Tools.AskYesNo(PluginTranslate.UpdateExternalInfo) != DialogResult.Yes;
519+
if (!bDownloadFile) bDownloadFile = Tools.AskYesNo(PluginTranslate.UpdateExternalInfo) == DialogResult.Yes;
520520
if (!bDownloadFile) return;
521521
m_host.MainWindow.Invoke(new KeePassLib.Delegates.GAction(() => { UpdatePlugins(UpdateFlags.ExternalUpdateInfo, null); }), null);
522522
}

src/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
//
2727
// You can specify all the values or you can use the default the Revision and
2828
// Build Numbers by using the '*' as shown below:
29-
[assembly: AssemblyVersion("4.1.3")]
30-
[assembly: AssemblyFileVersion("4.1.3")]
29+
[assembly: AssemblyVersion("4.1.4")]
30+
[assembly: AssemblyFileVersion("4.1.4")]
3131
[assembly: Guid("672570AF-CC57-4980-86F9-D48FD1CC707D")]

version.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:
2-
Early update check:4.1.3
2+
Early update check:4.1.4
33
Early update check!de:9
44
Early update check!ru:2
55
Early update check!fr:1

0 commit comments

Comments
 (0)