Skip to content

Commit 2478704

Browse files
committed
Updated README
1 parent d05a4a2 commit 2478704

File tree

4 files changed

+26
-17
lines changed

4 files changed

+26
-17
lines changed

LessPass/LessPass.csproj

+13-5
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@
1111
<AssemblyName>LessPass</AssemblyName>
1212
<DefaultLanguage>en-US</DefaultLanguage>
1313
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
14-
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.16190.0</TargetPlatformVersion>
15-
<TargetPlatformMinVersion>10.0.10563.0</TargetPlatformMinVersion>
14+
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.16299.0</TargetPlatformVersion>
15+
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
1616
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
1717
<FileAlignment>512</FileAlignment>
1818
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1919
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
20-
<PackageCertificateKeyFile>LessPass_TemporaryKey.pfx</PackageCertificateKeyFile>
20+
<PackageCertificateKeyFile>LessPass_StoreKey.pfx</PackageCertificateKeyFile>
21+
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
22+
<AppxBundle>Auto</AppxBundle>
23+
<AppxBundlePlatforms>x86|x64|arm</AppxBundlePlatforms>
24+
<PackageCertificateThumbprint>0D6470993577D5E4EDAE2CD3B03B677412FF65B1</PackageCertificateThumbprint>
2125
</PropertyGroup>
2226
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
2327
<DebugSymbols>true</DebugSymbols>
@@ -86,7 +90,7 @@
8690
<UseVSHostingProcess>false</UseVSHostingProcess>
8791
<ErrorReport>prompt</ErrorReport>
8892
<Prefer32Bit>true</Prefer32Bit>
89-
<UseDotNetNativeToolchain>false</UseDotNetNativeToolchain>
93+
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
9094
</PropertyGroup>
9195
<PropertyGroup>
9296
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
@@ -110,6 +114,7 @@
110114
<Content Include="Assets\Fonts\Nunito-Regular.ttf" />
111115
<Content Include="Assets\Fonts\Inconsolata-Regular.ttf" />
112116
<None Include="Assets\Logo.afdesign" />
117+
<None Include="LessPass_StoreKey.pfx" />
113118
<None Include="LessPass_TemporaryKey.pfx" />
114119
<PRIResource Include="Strings\en-US\Resources.resw" />
115120
<PRIResource Include="Strings\fr-FR\Resources.resw" />
@@ -138,6 +143,9 @@
138143
<Content Include="Assets\StoreLogo.scale-400.png" />
139144
<Content Include="Assets\Wide310x150Logo.scale-100.png" />
140145
<Content Include="Assets\Wide310x150Logo.scale-400.png" />
146+
<None Include="Package.StoreAssociation.xml">
147+
<SubType>Designer</SubType>
148+
</None>
141149
<Content Include="Properties\Default.rd.xml" />
142150
<Content Include="Assets\SplashScreen.scale-200.png" />
143151
<Content Include="Assets\Square150x150Logo.scale-200.png" />
@@ -156,7 +164,7 @@
156164
</ItemGroup>
157165
<ItemGroup>
158166
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
159-
<Version>5.4.0</Version>
167+
<Version>6.0.6</Version>
160168
</PackageReference>
161169
</ItemGroup>
162170
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">

LessPass/MainPage.xaml.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System;
2+
using System.Diagnostics.CodeAnalysis;
23
using System.Threading;
34
using System.Threading.Tasks;
45
using Windows.ApplicationModel.Core;
@@ -15,8 +16,9 @@
1516
namespace LessPass
1617
{
1718
/// <summary>
18-
/// An empty page that can be used on its own or navigated to within a Frame.
19+
/// The main (and only) page of the application.
1920
/// </summary>
21+
[SuppressMessage("Compiler", "CS4014")]
2022
public sealed partial class MainPage
2123
{
2224
public static MainPage Instance;
@@ -25,11 +27,10 @@ private void OnSizeChanged(object sender, SizeChangedEventArgs e)
2527
{
2628
//// Apparently the app bar button's width is 40
2729
//// We have two buttons, plus a margin of 30 on each side
28-
//// + 36 because my calculations suck
2930
//// https://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn481531.aspx?f=255&MSPPError=-2147217396
30-
const int MinusWidth = (40 * 2) + (30 * 2);
31+
const int minusWidth = (40 * 2) + (30 * 2);
3132

32-
LengthSlider.Width = e.NewSize.Width - MinusWidth;
33+
LengthSlider.Width = e.NewSize.Width - minusWidth;
3334
}
3435

3536
private void OnLoaded(object sender, RoutedEventArgs e)

LessPass/Package.appxmanifest

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
3-
<Identity Name="3bd86dea-40b3-4737-9948-3310e317cee8" Publisher="CN=aej" Version="1.0.0.0" />
4-
<mp:PhoneIdentity PhoneProductId="3bd86dea-40b3-4737-9948-3310e317cee8" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
3+
<Identity Name="4516AeJ.LessPass" Publisher="CN=F365B0F1-2358-4E17-8CB1-F6C0A316700F" Version="1.1.0.0" />
4+
<mp:PhoneIdentity PhoneProductId="128b8940-441b-4877-82ed-87b16bf08dbe" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
55
<Properties>
6-
<DisplayName>LessPass</DisplayName>
7-
<PublisherDisplayName>Gregoire Geis</PublisherDisplayName>
6+
<DisplayName>Less Pass</DisplayName>
7+
<PublisherDisplayName>AeJ</PublisherDisplayName>
88
<Logo>Assets\StoreLogo.png</Logo>
99
</Properties>
1010
<Dependencies>
@@ -15,7 +15,7 @@
1515
</Resources>
1616
<Applications>
1717
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="LessPass.App">
18-
<uap:VisualElements DisplayName="LessPass" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Open source client for lesspass (https://lesspass.com)." BackgroundColor="transparent">
18+
<uap:VisualElements DisplayName="Less Pass" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Open source client for lesspass (https://lesspass.com)." BackgroundColor="transparent">
1919
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square310x310Logo="Assets\LargeTile.png" Square71x71Logo="Assets\SmallTile.png">
2020
</uap:DefaultTile>
2121
<uap:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="#0D0D0D" />

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Less Pass
22
=========
33

4+
An (unofficial) Windows 10 client for [lesspass](https://lesspass.com), in Fluent Design.
5+
46
![Screenshot](Screenshot-0.png)
57
![Screenshot](Screenshot-1.png)
68

7-
An (unofficial) Windows 10 client for [lesspass](https://lesspass.com).
89

9-
## Note
10-
My VS installation is [completely fucked](https://social.msdn.microsoft.com/Forums/windowsserver/en-US/df85de3a-df51-4a66-ac0a-6ec96e0be217), and I thus **cannot** build LessPass for a full release. If anyone can do it for me, that'd be great.
10+
<a href="https://www.microsoft.com/store/apps/9PFTP5150DMB?ocid=badge"><img src="https://assets.windowsphone.com/85864462-9c82-451e-9355-a3d5f874397a/English_get-it-from-MS_InvariantCulture_Default.png" alt="Get it from Microsoft" /></a>

0 commit comments

Comments
 (0)