Skip to content

Commit

Permalink
feat: version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenAssassine committed May 3, 2024
1 parent bb6a929 commit 1c0c6b1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion EasePass/Assets/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Version 1.2.0 [01/20/2024]
#Version 1.2.0 [05/03/2024]
• Added option to create and choose from multiple databases
• Added daily tips to the login page
• Added dialog to select which passwords to export
Expand Down
9 changes: 4 additions & 5 deletions EasePass/EasePass.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<UseWinUI>true</UseWinUI>
<EnableMsixTooling>true</EnableMsixTooling>
<Authors>Julius Kirsch, Finn Freitag</Authors>
<Copyright>Copyright © 2023 </Copyright>
<Copyright>Copyright © 2023-2024 </Copyright>
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
<PackageCertificateThumbprint>31005D76C01117397C1391884CCCB2CD42D16455</PackageCertificateThumbprint>
Expand All @@ -21,15 +21,14 @@
<AppxBundle>Always</AppxBundle>
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate>
<AppxBundlePlatforms>arm64</AppxBundlePlatforms>
<AppxPackageDir>F:\C#\EasePass\EasePass\bin\publish</AppxPackageDir>
<AppxBundlePlatforms>x86|x64|arm64</AppxBundlePlatforms>
<RepositoryUrl>https://github.com/FrozenAssassine/EasePass.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>http://easepass.frozenassassine.de/</PackageProjectUrl>
<ApplicationIcon>Assets\AppIcon\appicon.ico</ApplicationIcon>
<UseWindowsForms>False</UseWindowsForms>
<AssemblyVersion>1.1.0</AssemblyVersion>
<Version>1.1.0</Version>
<AssemblyVersion>1.2.0</AssemblyVersion>
<Version>1.2.0</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="AppWindows\ScreenScannerWindow.xaml" />
Expand Down
2 changes: 1 addition & 1 deletion EasePass/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<Properties>
<DisplayName>Ease Pass</DisplayName>
<PublisherDisplayName>Julius Kirsch, Finn Freitag</PublisherDisplayName>
<PublisherDisplayName>Julius Kirsch</PublisherDisplayName>
<Logo>Assets\AppIcon\Generated\StoreLogo.png</Logo>
</Properties>

Expand Down
2 changes: 1 addition & 1 deletion EasePass/Views/AboutPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<FontIcon Margin="0,0,5,0" Grid.Column="3" Glyph="&#xE77B;" VerticalAlignment="Center" FontFamily="{StaticResource SymbolThemeFontFamily}"/>
<StackPanel Grid.Column="4">
<TextBlock TextAlignment="Left" FontSize="16" Text="Developers" x:Uid="View_About_Developer"/>
<TextBlock TextAlignment="Left" Text="{x:Bind DeveloperName}"/>
<TextBlock TextAlignment="Left" Text="Julius Kirsch, Finn Freitag"/>
</StackPanel>
</Grid>
</Grid>
Expand Down
2 changes: 0 additions & 2 deletions EasePass/Views/AboutPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ namespace EasePass.Views
public sealed partial class AboutPage : Page
{
public string AppVersion => AppVersionHelper.GetAppVersion();
public string DeveloperName => Package.Current.PublisherDisplayName;


public AboutPage()
{
Expand Down

0 comments on commit 1c0c6b1

Please sign in to comment.