Player fixes. Localization updates. Tiles updated
Related Work Items: #161
This commit is contained in:
@@ -466,18 +466,13 @@ namespace FoxTube
|
||||
if(videoPlaceholder.Content == null)
|
||||
nav.ExpandedModeThresholdWidth = 1008;
|
||||
nav.Margin = new Thickness(0);
|
||||
nav.OpenPaneLength = 300;
|
||||
nav.CompactPaneLength = 40;
|
||||
if (videoPlaceholder.Content != null && nav.IsPaneOpen)
|
||||
{
|
||||
nav.IsPaneOpen = true;
|
||||
nav.IsPaneOpen = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
nav.OpenPaneLength = 300;
|
||||
nav.CompactPaneLength = 40;
|
||||
}
|
||||
SetTitleBar();
|
||||
}
|
||||
nav.UpdateLayout();
|
||||
}
|
||||
|
||||
public void CloseVideo()
|
||||
@@ -488,6 +483,7 @@ namespace FoxTube
|
||||
Fullscreen(false);
|
||||
}
|
||||
videoPlaceholder.Content = null;
|
||||
GC.Collect();
|
||||
Window.Current.CoreWindow.PointerCursor = new CoreCursor(CoreCursorType.Arrow, 0);
|
||||
MaximizeVideo();
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
<TextBlock Visibility="Collapsed" Margin="0,0,0,10"> <Run x:Uid="/About/myBlog">My blog (Russian language only):</Run> <Hyperlink NavigateUri="https://michael-xfox.com">https://michael-xfox.com</Hyperlink></TextBlock>
|
||||
|
||||
<TextBlock x:Uid="/About/legal" Text="Legal stuff" FontSize="22" FontWeight="SemiBold"/>
|
||||
<HyperlinkButton x:Uid="/About/ourPrivacy" Content="Our Privacy Policy" NavigateUri="https://michael-xfox.com/foxtubepp.txt" Padding="0,5,0,0"/>
|
||||
<HyperlinkButton x:Uid="/About/ourPrivacy" Content="Our Privacy Policy" NavigateUri="https://foxgame-studio.000webhostapp.com/FoxTubeAssets/PrivacyPolicy.txt" Padding="0,5,0,0"/>
|
||||
<HyperlinkButton x:Uid="/About/ytPrivacy" Content="YouTube Privacy Policy" NavigateUri="https://youtube.com/t/privacy" Padding="0"/>
|
||||
<HyperlinkButton x:Uid="/About/terms" Content="YouTube Terms of use" NavigateUri="https://youtube.com/t/terms" Padding="0"/>
|
||||
<HyperlinkButton x:Uid="/About/guides" Content="YouTube Community Guidelines" NavigateUri="https://youtube.com/t/community_guidelines" Padding="0,0,0,10"/>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
using System.Globalization;
|
||||
using System.Linq;
|
||||
using System.Linq;
|
||||
using Windows.ApplicationModel.Core;
|
||||
using Windows.UI;
|
||||
using Windows.UI.Xaml;
|
||||
|
||||
@@ -33,15 +33,15 @@ namespace FoxTube.Pages.SettingsPages
|
||||
foreach (XmlElement e in doc["items"].ChildNodes)
|
||||
items.Add(new InboxItem(
|
||||
e.GetAttribute("version"),
|
||||
e["content"].InnerText,
|
||||
e["content"][SettingsStorage.Language].InnerText,
|
||||
e.GetAttribute("time")));
|
||||
|
||||
doc.Load("http://foxgame-studio.000webhostapp.com/foxtube-messages.xml");
|
||||
foreach (XmlElement e in doc["posts"].ChildNodes)
|
||||
items.Add(new InboxItem(
|
||||
e["header"].InnerText,
|
||||
e["content"].InnerText,
|
||||
DateTime.Parse(e["time"].InnerText),
|
||||
e["content"][SettingsStorage.Language].InnerText,
|
||||
DateTime.Parse(e.GetAttribute("time")),
|
||||
e["id"].InnerText
|
||||
));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user