Skip to content

Commit

Permalink
Fix SAM Key Entry update when only Key A is defined
Browse files Browse the repository at this point in the history
Bump version to 1.11.2
  • Loading branch information
Maxhy committed Nov 28, 2023
1 parent 8126ad0 commit 0f47368
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion KeyManager.Library.KeyStore.NXP_SAM/SAMKeyStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ public override Task Update(IChangeKeyEntry change, bool ignoreIfMissing)
{
new LibLogicalAccess.ByteVector(containers[0].Key.GetAggregatedValueAsBinary(true))
};
if (containers[1].IsConfigured())
if (containers[0].IsConfigured())
{
log.Info("Updating value for key version A.");
updateSettings.keyVa = 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>Leosac.$(AssemblyName)</PackageId>
<Version>1.11.1</Version>
<Version>1.11.2</Version>
<Title>Leosac Key Manager Plugin UI Library</Title>
<Company>Leosac SAS</Company>
<Product>Leosac Key Manager</Product>
Expand Down
2 changes: 1 addition & 1 deletion KeyManager.Library.Plugin/KeyManager.Library.Plugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>Leosac.$(AssemblyName)</PackageId>
<Version>1.11.1</Version>
<Version>1.11.2</Version>
<Title>Leosac Key Manager Plugin Library</Title>
<Company>Leosac SAS</Company>
<Product>Leosac Key Manager</Product>
Expand Down
2 changes: 1 addition & 1 deletion KeyManager.Library.UI/KeyManager.Library.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>Leosac.$(AssemblyName)</PackageId>
<Version>1.11.1</Version>
<Version>1.11.2</Version>
<Title>Leosac Key Manager UI Library</Title>
<Company>Leosac SAS</Company>
<Product>Leosac Key Manager</Product>
Expand Down
2 changes: 1 addition & 1 deletion KeyManager.Library/KeyManager.Library.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>Leosac.$(AssemblyName)</PackageId>
<Version>1.11.1</Version>
<Version>1.11.2</Version>
<Title>Leosac Key Manager Core Library</Title>
<Company>Leosac SAS</Company>
<Product>Leosac Key Manager</Product>
Expand Down
2 changes: 1 addition & 1 deletion KeyManager.Setup/config.wxi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Include xmlns="https://wixtoolset.org/schemas/v4/wxs">
<?define Manufacturer = "Leosac" ?>
<?define ProductName = "Leosac Key Manager" ?>
<?define Version = "1.11.1.0" ?>
<?define Version = "1.11.2.0" ?>
<?define AboutURL = "https://www.leosac.com" ?>
<?define SupportURL = "https://www.leosac.com" ?>
<?define UpdatesURL = "https://www.leosac.com" ?>
Expand Down
2 changes: 1 addition & 1 deletion KeyManager/KeyManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<Version>1.11.1</Version>
<Version>1.11.2</Version>
<Product>Leosac Key Manager</Product>
<Description>Key Manager for Access Control and RFID related technologies, by Leosac.</Description>
<Company>Leosac SAS</Company>
Expand Down
4 changes: 2 additions & 2 deletions latestversion
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"VersionString": "1.11.1",
"Uri": "https://download.leosac.com/lkm/KeyManager.Setup-1.11.1.msi"
"VersionString": "1.11.2",
"Uri": "https://download.leosac.com/lkm/KeyManager.Setup-1.11.2.msi"
}

0 comments on commit 0f47368

Please sign in to comment.