diff --git a/ExpressionBuilder/ExpressionBuilder/ExpressionBuilder.csproj b/ExpressionBuilder/ExpressionBuilder/ExpressionBuilder.csproj index 71530295..65606e00 100644 --- a/ExpressionBuilder/ExpressionBuilder/ExpressionBuilder.csproj +++ b/ExpressionBuilder/ExpressionBuilder/ExpressionBuilder.csproj @@ -141,7 +141,7 @@ - 6.0.6 + 6.0.8 diff --git a/MALCLient.UrlInterceptor/project.json b/MALCLient.UrlInterceptor/project.json index 5476c2ce..472259cb 100644 --- a/MALCLient.UrlInterceptor/project.json +++ b/MALCLient.UrlInterceptor/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.UniversalWindowsPlatform": "6.0.6" + "Microsoft.NETCore.UniversalWindowsPlatform": "6.0.8" }, "frameworks": { "uap10.0.10586": {} diff --git a/MALClient.Android/AndroidViewModelLocator.cs b/MALClient.Android/AndroidViewModelLocator.cs index 14187ce9..9051e368 100644 --- a/MALClient.Android/AndroidViewModelLocator.cs +++ b/MALClient.Android/AndroidViewModelLocator.cs @@ -21,7 +21,7 @@ using MALClient.Android.ViewModels; using MALClient.XShared.Interfaces; using MALClient.XShared.ViewModels; -using Microsoft.Practices.ServiceLocation; +using CommonServiceLocator; namespace MALClient.Android { diff --git a/MALClient.CommTest/project.json b/MALClient.CommTest/project.json index 873119f1..e792e9fd 100644 --- a/MALClient.CommTest/project.json +++ b/MALClient.CommTest/project.json @@ -1,8 +1,8 @@ { "dependencies": { - "Microsoft.NETCore.UniversalWindowsPlatform": "6.0.6", - "xunit": "2.1.0", - "xunit.runner.visualstudio": "2.1.0" + "Microsoft.NETCore.UniversalWindowsPlatform": "6.0.8", + "xunit": "2.3.1", + "xunit.runner.visualstudio": "2.3.1" }, "frameworks": { "uap10.0.10586": {} diff --git a/MALClient.Desktop/MALClient.UWP.Desktop.csproj b/MALClient.Desktop/MALClient.UWP.Desktop.csproj index a927928f..55ffdb6c 100644 --- a/MALClient.Desktop/MALClient.UWP.Desktop.csproj +++ b/MALClient.Desktop/MALClient.UWP.Desktop.csproj @@ -252,7 +252,7 @@ - + @@ -578,7 +578,7 @@ 4.1.6 - 1.6.13 + 1.7.1 10.1705.16001 @@ -587,25 +587,25 @@ 2.2.29 - 6.0.6 + 6.0.8 10.1705.16001 - 2.1.1 + 2.2.0 - 2.1.1 + 2.2.0 - 2.1.1 + 2.2.0 - 5.3.0 + 5.4.1 - 10.0.3 + 11.0.1 2.3.0 diff --git a/MALClient.Desktop/MainPage.xaml b/MALClient.Desktop/MainPage.xaml index 8a3e3316..4ec97584 100644 --- a/MALClient.Desktop/MainPage.xaml +++ b/MALClient.Desktop/MainPage.xaml @@ -118,7 +118,6 @@ @@ -334,7 +333,7 @@ QuerySubmitted="SearchInput_OnQuerySubmitted" Text="{Binding CurrentSearchQuery, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Visibility="{Binding SearchInputVisibility, Converter={StaticResource BoolToVisibilityConverter}}" - PlaceholderText="Search..." Height="32" MinWidth="250" /> + PlaceholderText="Search..." Height="32" MinWidth="250" Margin="0,0,5,0" /> - diff --git a/MALClient.Desktop/Pages/Forums/ForumBoardPage.xaml b/MALClient.Desktop/Pages/Forums/ForumBoardPage.xaml index 8f288c55..a19bb16a 100644 --- a/MALClient.Desktop/Pages/Forums/ForumBoardPage.xaml +++ b/MALClient.Desktop/Pages/Forums/ForumBoardPage.xaml @@ -91,7 +91,7 @@ TintOpacity="0.7" FallbackColor="{StaticResource ColorPivotInnerHeaderBarBackground}"/> - + diff --git a/MALClient.Desktop/Pages/Forums/ForumBoardPage.xaml.cs b/MALClient.Desktop/Pages/Forums/ForumBoardPage.xaml.cs index fc187628..cdb3ada7 100644 --- a/MALClient.Desktop/Pages/Forums/ForumBoardPage.xaml.cs +++ b/MALClient.Desktop/Pages/Forums/ForumBoardPage.xaml.cs @@ -8,6 +8,7 @@ using MALClient.XShared.ViewModels; using MALClient.XShared.ViewModels.Forums; using MALClient.XShared.ViewModels.Forums.Items; +using Windows.UI.Xaml.Media.Animation; // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238 @@ -37,7 +38,13 @@ protected override void OnNavigatedTo(NavigationEventArgs e) { _args = e.Parameter as ForumsBoardNavigationArgs; base.OnNavigatedTo(e); - } + + ConnectedAnimation anim = ConnectedAnimationService.GetForCurrentView().GetAnimation("header"); + if (anim != null) + { + anim.TryStart(DestStack); + } + } private void TopicOnClick(object sender, ItemClickEventArgs e) { diff --git a/MALClient.Desktop/Pages/Forums/ForumIndexPage.xaml b/MALClient.Desktop/Pages/Forums/ForumIndexPage.xaml index bb8674d5..e94d3b47 100644 --- a/MALClient.Desktop/Pages/Forums/ForumIndexPage.xaml +++ b/MALClient.Desktop/Pages/Forums/ForumIndexPage.xaml @@ -90,7 +90,7 @@ CommandParameter="{Binding Board}" /> - + diff --git a/MALClient.Desktop/Pages/Forums/ForumIndexPage.xaml.cs b/MALClient.Desktop/Pages/Forums/ForumIndexPage.xaml.cs index 953f8d95..bafa321c 100644 --- a/MALClient.Desktop/Pages/Forums/ForumIndexPage.xaml.cs +++ b/MALClient.Desktop/Pages/Forums/ForumIndexPage.xaml.cs @@ -9,6 +9,7 @@ using MALClient.XShared.ViewModels; using MALClient.XShared.ViewModels.Forums; using MALClient.XShared.ViewModels.Forums.Items; +using Windows.UI.Xaml.Media.Animation; // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238 @@ -34,7 +35,8 @@ protected override void OnNavigatedTo(NavigationEventArgs e) private void BoardGridOnItemClick(object sender, ItemClickEventArgs e) { - ViewModel.NavigateBoardCommand.Execute((e.ClickedItem as ForumBoardEntryViewModel).Board); + (sender as GridView).PrepareConnectedAnimation("header", e.ClickedItem, "SourceStack"); + ViewModel.NavigateBoardCommand.Execute((e.ClickedItem as ForumBoardEntryViewModel).Board); } private void BoardGridOnRightClick(object sender, RightTappedRoutedEventArgs e) diff --git a/MALClient.Desktop/Pages/Main/AnimeListPage.xaml b/MALClient.Desktop/Pages/Main/AnimeListPage.xaml index 857bfab3..6ec64492 100644 --- a/MALClient.Desktop/Pages/Main/AnimeListPage.xaml +++ b/MALClient.Desktop/Pages/Main/AnimeListPage.xaml @@ -165,8 +165,7 @@ - + diff --git a/MALClient.Desktop/Pages/Main/CalendarPage.xaml b/MALClient.Desktop/Pages/Main/CalendarPage.xaml index 97c3582b..0e6d335c 100644 --- a/MALClient.Desktop/Pages/Main/CalendarPage.xaml +++ b/MALClient.Desktop/Pages/Main/CalendarPage.xaml @@ -55,8 +55,7 @@ + HorizontalAlignment="Stretch" /> @@ -83,7 +82,7 @@ - + + + + + + + + + - + - + diff --git a/MALClient.Desktop/Pages/Main/PopularVideosPage.xaml b/MALClient.Desktop/Pages/Main/PopularVideosPage.xaml index 74ed4f0a..20d16dd5 100644 --- a/MALClient.Desktop/Pages/Main/PopularVideosPage.xaml +++ b/MALClient.Desktop/Pages/Main/PopularVideosPage.xaml @@ -29,7 +29,7 @@ - + diff --git a/MALClient.Desktop/Pages/Main/ProfilePage.xaml b/MALClient.Desktop/Pages/Main/ProfilePage.xaml index 64c33def..4db45979 100644 --- a/MALClient.Desktop/Pages/Main/ProfilePage.xaml +++ b/MALClient.Desktop/Pages/Main/ProfilePage.xaml @@ -308,7 +308,7 @@ - + @@ -479,7 +479,7 @@ - + @@ -519,7 +519,7 @@ - + diff --git a/MALClient.Desktop/Pages/Off/AnimeDetailsPage.xaml b/MALClient.Desktop/Pages/Off/AnimeDetailsPage.xaml index 5e2fbd4f..8b52c517 100644 --- a/MALClient.Desktop/Pages/Off/AnimeDetailsPage.xaml +++ b/MALClient.Desktop/Pages/Off/AnimeDetailsPage.xaml @@ -789,7 +789,7 @@ Margin="5,10" BorderThickness="1" Style="{StaticResource ButtonRevealStyle}"/> - @@ -1591,7 +1591,7 @@ - + diff --git a/MALClient.Desktop/Pages/Off/SettingsPages/SettingsArticlesPage.xaml b/MALClient.Desktop/Pages/Off/SettingsPages/SettingsArticlesPage.xaml index e2ae9f43..cd2b6001 100644 --- a/MALClient.Desktop/Pages/Off/SettingsPages/SettingsArticlesPage.xaml +++ b/MALClient.Desktop/Pages/Off/SettingsPages/SettingsArticlesPage.xaml @@ -30,8 +30,8 @@ - --> -