diff --git a/CampusAppWP8/CampusAppWP8/Pages/Exams/Exams.xaml.cs b/CampusAppWP8/CampusAppWP8/Pages/Exams/Exams.xaml.cs index 6ca7e292..3dfbda47 100644 --- a/CampusAppWP8/CampusAppWP8/Pages/Exams/Exams.xaml.cs +++ b/CampusAppWP8/CampusAppWP8/Pages/Exams/Exams.xaml.cs @@ -62,6 +62,11 @@ namespace CampusAppWP8.Pages.Exams { base.OnNavigatedTo(e); + if (this.Orientation.Equals(PageOrientation.Landscape) || this.Orientation.Equals(PageOrientation.LandscapeLeft) || this.Orientation.Equals(PageOrientation.LandscapeRight)) + { + ApplicationBar.Mode = Microsoft.Phone.Shell.ApplicationBarMode.Default; + } + if (this.feed == null) { this.InitializeFeed(); diff --git a/CampusAppWP8/CampusAppWP8/Properties/WMAppManifest.xml b/CampusAppWP8/CampusAppWP8/Properties/WMAppManifest.xml index 65151051..fed34237 100644 --- a/CampusAppWP8/CampusAppWP8/Properties/WMAppManifest.xml +++ b/CampusAppWP8/CampusAppWP8/Properties/WMAppManifest.xml @@ -1,20 +1,15 @@  - + Assets\ApplicationIcon.png - - - - - @@ -23,9 +18,9 @@ - Assets\Tiles\kachel_small.png + Assets\ApplicationIcon.png 0 - Assets\Tiles\kachel_medium.png + Assets\ApplicationIcon.png BTU-CampusApp diff --git a/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs b/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs index e048fd68..8fba8e85 100644 --- a/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs +++ b/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs @@ -106,7 +106,7 @@ namespace CampusAppWP8.Resources { } /// - /// Sucht eine lokalisierte Zeichenfolge, die BTU Campus-App ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die BTU CampusApp ähnelt. /// public static string ApplicationTitle { get { diff --git a/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx b/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx index dd4a19a6..6c138b3d 100644 --- a/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx +++ b/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx @@ -126,7 +126,7 @@ Controls the Language and ensures that the font for all elements in the RootFrame aligns with the app's language. Set to the language code of this resource file's language. - BTU Campus-App + BTU CampusApp Beispielwert für die Laufzeiteigenschaft diff --git a/CampusAppWP8/CampusAppWP8ScheduledTaskAgent/ScheduledAgent.cs b/CampusAppWP8/CampusAppWP8ScheduledTaskAgent/ScheduledAgent.cs index 7d2cb57b..eb22f70b 100644 --- a/CampusAppWP8/CampusAppWP8ScheduledTaskAgent/ScheduledAgent.cs +++ b/CampusAppWP8/CampusAppWP8ScheduledTaskAgent/ScheduledAgent.cs @@ -409,7 +409,7 @@ namespace CampusAppWP8ScheduledTaskAgent /// true, if it is up-to-date, otherwise false. private bool CheckRssIsUpToDate(DateTime lastModified) { - int diff = lastModified.CompareTo(DateTime.Now.AddHours(3)); + int diff = lastModified.CompareTo(DateTime.Now.AddDays(1)); if (diff < 0) {