Skip to content

Commit 6e52d73

Browse files
authored
Merge pull request #8 from shugaoye/master
Build release 1.2.4
2 parents 148af1e + 46d5dee commit 6e52d73

File tree

6 files changed

+17
-19
lines changed

6 files changed

+17
-19
lines changed

KPCLib.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>KPCLib</id>
5-
<version>1.2.3.0</version>
5+
<version>1.2.4.0</version>
66
<authors>Roger Ye</authors>
77
<owners>Roger Ye</owners>
88
<requireLicenseAcceptance>false</requireLicenseAcceptance>

KPCLib.xunit/KPCLib.xunit.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
11-
<PackageReference Include="PassXYZ" Version="2.1.4.8" />
11+
<PackageReference Include="PassXYZ" Version="2.1.4.9" />
1212
<PackageReference Include="SkiaSharp" Version="2.80.2" />
1313
<PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.80.2" />
1414
<PackageReference Include="xunit" Version="2.4.1" />

KPCLib/KPCLib.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@
66
<OutputType>Library</OutputType>
77
<StartupObject />
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
9-
<Version>1.2.3.0</Version>
9+
<Version>1.2.4.0</Version>
1010
<PackageProjectUrl>https://github.com/passxyz/KPCLib</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/passxyz/KPCLib</RepositoryUrl>
1212
<Description>This is the build of KeePassLib in Xamarin Portable Class Library. Three platforms, UWP, Android and iOS, are supported and tested.</Description>
1313
<Copyright>Dominik Reichl is the author of the original KeePassLib on Windows platform. Roger Ye created this for UWP, Android and iOS platforms.</Copyright>
1414
<Authors>Roger Ye</Authors>
1515
<Company>PassXYZ Inc.</Company>
16-
<PackageReleaseNotes>1.2.3 - OTP support
16+
<PackageReleaseNotes>1.2.4 - Updated Item to add an "Id" field
17+
1.2.3 - OTP support
1718
1.2.2 - Release PassXYZLib
1819
1.2.0 - Enhanced KeePassLib
1920
1.1.9 - Removed dependency Xamarin.Forms
@@ -23,8 +24,8 @@
2324

2425
1.1.6 - KPCLib has been tested on all three platforms (Android, iOS and UWP).</PackageReleaseNotes>
2526
<NeutralLanguage>en-US</NeutralLanguage>
26-
<AssemblyVersion>1.2.3.0</AssemblyVersion>
27-
<FileVersion>1.2.3.0</FileVersion>
27+
<AssemblyVersion>1.2.4.0</AssemblyVersion>
28+
<FileVersion>1.2.4.0</FileVersion>
2829
</PropertyGroup>
2930

3031
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

KPCLib/PassXYZLib/Item.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ public abstract class Item : INotifyPropertyChanged
2121

2222
public abstract bool IsGroup { get; }
2323

24+
public string Id { get { return Uuid.ToHexString(); } }
25+
2426
/// <summary>
2527
/// UUID of this item.
2628
/// </summary>

KPCLib/PwGroup.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,9 @@ public override string Name
8686
}
8787

8888
#if KPCLib
89-
public override string Description
90-
{
91-
get {
92-
return $"PwGroup\t{LastModificationTime.ToString("yyyy'-'MM'-'dd")}";
93-
}
94-
}
95-
89+
public override string Description => $"PwGroup\t{LastModificationTime:yyyy'-'MM'-'dd}\t{Notes}";
9690

97-
public override bool IsGroup => true;
91+
public override bool IsGroup => true;
9892

9993
/// <summary>
10094
/// Get a list of items in this group.

PassXYZLib/PassXYZLib.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>1.2.3.0</Version>
6-
<AssemblyVersion>1.2.3.0</AssemblyVersion>
7-
<FileVersion>1.2.3.0</FileVersion>
5+
<Version>1.2.4.0</Version>
6+
<AssemblyVersion>1.2.4.0</AssemblyVersion>
7+
<FileVersion>1.2.4.0</FileVersion>
88
<Company>PassXYZ Inc.</Company>
99
<Authors>Roger Ye</Authors>
1010
<Copyright>Roger Ye</Copyright>
11-
<PackageReleaseNotes>1.2.2.8 - Support Device Lock
11+
<PackageReleaseNotes>1.2.4.0 - See KeePassLib release notes
12+
1.2.2.8 - Support Device Lock
1213
1.2.0.1 - Added IsParentGroup, MoveEntry, MoveGroup
1314
1.2.0.0 - Updated to KeePassLib 2.4.7. Enhanced KeePassLib
1415
</PackageReleaseNotes>
@@ -18,7 +19,7 @@
1819
</PropertyGroup>
1920

2021
<ItemGroup>
21-
<PackageReference Include="PassXYZ" Version="2.1.4.8" />
22+
<PackageReference Include="PassXYZ" Version="2.1.4.9" />
2223
</ItemGroup>
2324

2425
<ItemGroup>

0 commit comments

Comments
 (0)