Skip to content

Commit cf5c995

Browse files
committed
Minor fix and change to Preview
1 parent 0f4c434 commit cf5c995

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

ClipboardCanvas/Dialogs/UpdateChangeLogDialog.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public UpdateChangeLogDialog()
2525
// TODO: Move to view model
2626
private async void ContentDialog_Loaded(object sender, Windows.UI.Xaml.RoutedEventArgs e)
2727
{
28-
await ViewModel.LoadUpdateDataFromGitHub(true);
28+
await ViewModel?.LoadUpdateDataFromGitHub(true);
2929
}
3030
}
3131
}

ClipboardCanvas/Helpers/InitialApplicationChecksHelpers.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@ public static async Task CheckVersionAndShowDialog()
3434
// Compare two versions
3535
if (VersionHelpers.IsVersionDifferentThan(lastVersion, currentVersion))
3636
{
37-
UpdateChangeLogDialog updateChangeLogDialog = new UpdateChangeLogDialog();
38-
3937
// Show the update dialog
40-
await updateChangeLogDialog.ShowAsync();
38+
await App.DialogService.ShowDialog(new UpdateChangeLogDialogViewModel());
4139

4240
// Update the last version number to be the current number
4341
App.AppSettings.ApplicationSettings.LastVersionNumber = currentVersion;

ClipboardCanvas/Package.appxmanifest

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
<Identity
1313
Name="3515d2dyno.ClipboardCanvas"
1414
Publisher="CN=5D7DCD3D-745C-4E03-AC4D-F5BFEB54F40E"
15-
Version="1.0.0.0" />
15+
Version="1.0.1.0" />
1616

1717
<mp:PhoneIdentity PhoneProductId="35b56687-e655-46c4-862f-25725278c524" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
1818

1919
<Properties>
20-
<DisplayName>Clipboard Canvas</DisplayName>
20+
<DisplayName>Clipboard Canvas - Preview</DisplayName>
2121
<PublisherDisplayName>d2dyno</PublisherDisplayName>
2222
<Logo>Assets\AppIcon\StoreLogo.png</Logo>
2323
</Properties>
@@ -37,7 +37,7 @@
3737
desktop4:SupportsMultipleInstances="true"
3838
iot2:SupportsMultipleInstances="true">
3939
<uap:VisualElements
40-
DisplayName="Clipboard Canvas"
40+
DisplayName="Clipboard Canvas - Preview"
4141
Square150x150Logo="Assets\AppIcon\Square150x150Logo.png"
4242
Square44x44Logo="Assets\AppIcon\Square44x44Logo.png"
4343
Description="Clipboard Canvas gives users an enhanced clipboard experience. Clipboard Canvas enables you to paste content worry free increasing your productivity."

0 commit comments

Comments
 (0)