Skip to content
This repository has been archived by the owner on Oct 17, 2020. It is now read-only.

Commit

Permalink
Include domain identification fixes from upstream library
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyrat committed Jun 26, 2016
1 parent aee8443 commit bbcd4cc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Firefox addon/KeeFox/install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<Description about="urn:mozilla:install-manifest">
<em:id>[email protected]</em:id>
<em:version>1.6.1b1</em:version>
<em:version>1.6.2b1</em:version>
<em:type>2</em:type>
<em:unpack>true</em:unpack>
<em:multiprocessCompatible>true</em:multiprocessCompatible>
Expand All @@ -20,7 +20,7 @@
<!-- Firefox -->
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>32.0</em:minVersion>
<em:maxVersion>47.*</em:maxVersion>
<em:maxVersion>49.*</em:maxVersion>
</Description>
</em:targetApplication>

Expand All @@ -29,7 +29,7 @@
<!-- Thunderbird -->
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
<em:minVersion>32.0</em:minVersion>
<em:maxVersion>47.*</em:maxVersion>
<em:maxVersion>49.*</em:maxVersion>
</Description>
</em:targetApplication>

Expand Down
2 changes: 1 addition & 1 deletion Firefox addon/KeeFox/modules/kprpcClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function kprpcClient() {
this.requestId = 1;
this.callbacks = {};
this.callbacksData = {};
this.clientVersion = [1,6,0];
this.clientVersion = [1,6,2];
this.authPromptAborted = false;

// We manually create HMACs to protect the integrity of our AES encrypted messages
Expand Down
Binary file modified KeePassRPC/DomainPublicSuffix.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion KeePassRPC/KeePassRPCExt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public sealed class KeePassRPCExt : Plugin
//private static LifetimeServices fakeHack = new LifetimeServices();

// version information
public static readonly Version PluginVersion = new Version(1, 6, 0);
public static readonly Version PluginVersion = new Version(1, 6, 2);

private BackgroundWorker _BackgroundWorker; // used to invoke main thread from other threads
private AutoResetEvent _BackgroundWorkerAutoResetEvent;
Expand Down
4 changes: 2 additions & 2 deletions KeePassRPC/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ You should have received a copy of the GNU General Public License
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Chris Tomlinson")]
[assembly: AssemblyProduct("KeePass Plugin")]
[assembly: AssemblyCopyright("Copyright © 2015 Chris Tomlinson")]
[assembly: AssemblyCopyright("Copyright © 2016 Chris Tomlinson")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -41,4 +41,4 @@ You should have received a copy of the GNU General Public License

// Assembly version information
[assembly: AssemblyVersion("2.0.19.*")]
[assembly: AssemblyFileVersion("1.6.0.0")] // also change PluginVersion in KeePassRPCExt.cs!
[assembly: AssemblyFileVersion("1.6.2.0")] // also change PluginVersion in KeePassRPCExt.cs!

0 comments on commit bbcd4cc

Please sign in to comment.