Skip to content

Commit 57e3c9e

Browse files
committed
Bump version number to 0.4.6
1 parent f4372e4 commit 57e3c9e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Diff for: ItemInteractions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ private static void Manager_DataRequested(DataTransferManager sender, DataReques
498498

499499
public static void DeleteItem_Click(object sender, RoutedEventArgs e)
500500
{
501-
501+
502502
}
503503

504504
public static void RenameItem_Click(object sender, RoutedEventArgs e)

Diff for: Package.appxmanifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:uap4="http://schemas.microsoft.com/appx/manifest/uap/windows10/4" IgnorableNamespaces="uap mp rescap desktop4 desktop uap3 uap4">
3-
<Identity Name="cd15f916-6036-4135-8201-430a5c5547dd" Publisher="CN=lukeb" Version="0.4.5.0" />
3+
<Identity Name="cd15f916-6036-4135-8201-430a5c5547dd" Publisher="CN=lukeb" Version="0.4.6.0" />
44
<mp:PhoneIdentity PhoneProductId="cd15f916-6036-4135-8201-430a5c5547dd" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
55
<Properties>
66
<DisplayName>Files</DisplayName>

Diff for: SettingsPages/About.xaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<StackPanel Orientation="Vertical">
1313
<TextBlock x:Name="Header" Text="About Files" Margin="0,0,0,25" FontFamily="Segoe UI Black" FontWeight="Bold" FontSize="48" HorizontalAlignment="Left" VerticalAlignment="Top" />
1414
<TextBlock Margin="0,0,0,10" FontFamily="Segoe UI" FontSize="24" Text="Product Information"/>
15-
<TextBlock FontSize="18" Text="Edition: Files Home"/>
16-
<TextBlock FontSize="18" Text="Version: 0.4.5 Pre-Release"/>
15+
<TextBlock FontSize="18" Text="Edition: Files Pre-Release"/>
16+
<TextBlock FontSize="18" Text="Version: 0.4.6"/>
1717
<ListView IsItemClickEnabled="True" Margin="0,35,0,0" ItemClick="ListView_ItemClick" HorizontalAlignment="Stretch">
18-
<ListViewItem IsEnabled="False" Name="FeedbackForm">
18+
<ListViewItem IsEnabled="True" Name="FeedbackForm">
1919
<StackPanel Orientation="Horizontal">
2020
<FontIcon Margin="0,0,25,0" Glyph="&#xED15;"/>
2121
<StackPanel Orientation="Vertical">
2222
<TextBlock Text="Submit Feedback"/>
23-
<TextBlock Text="Fill out a quick form to provide the developers with information" Foreground="Gray"/>
23+
<TextBlock Text="Submit an issue report to provide the developers with information" Foreground="Gray"/>
2424
</StackPanel>
2525
</StackPanel>
2626

Diff for: SettingsPages/About.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ private async void ListView_ItemClick(object sender, ItemClickEventArgs e)
2121
var trulyclicked = Interaction.FindParent<ListViewItem>(e.ClickedItem as DependencyObject);
2222
if (trulyclicked.Name == "FeedbackForm")
2323
{
24-
await Launcher.LaunchUriAsync(new Uri(@"https://goo.gl/forms/Z4bfKhaJJ6lT3Tcu2"));
24+
await Launcher.LaunchUriAsync(new Uri(@"https://github.com/duke7553/files-uwp/issues/new"));
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)