Patchnotes corrected and updated
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<items>
|
||||
<item>
|
||||
<content time="2019-06-23" version="1.2">
|
||||
<item time="2019-06-23" version="1.2">
|
||||
<content>
|
||||
<en-US>### What's new:
|
||||
- Fixed some cases when playlist cards aren't displayed
|
||||
- Fixed some cases when the app crashes
|
||||
@@ -9,6 +9,7 @@
|
||||
- You can now report comments as spam
|
||||
- You can now report videos
|
||||
- Enchanced background subscriptions check sequence
|
||||
- Corrected misspells in English localization
|
||||
</en-US>
|
||||
<ru-RU>### Что нового:
|
||||
- Исправлены некоторые случаи при которых карточки плейлистов не отображались
|
||||
@@ -17,6 +18,7 @@
|
||||
- Теперь вы можете помечать комментарии как спам
|
||||
- Теперь вы можете отправлять жалобы на видео
|
||||
- Улучшена проверка новых видео подписок в фоне
|
||||
- Исправлены ошибки в английской локализации
|
||||
</ru-RU>
|
||||
</content>
|
||||
</item>
|
||||
|
||||
@@ -44,14 +44,14 @@ namespace FoxTube.Pages.SettingsPages
|
||||
items.Add(new InboxItem(
|
||||
e.GetAttribute("version"),
|
||||
e["content"][GetLanguage()].InnerText,
|
||||
DateTime.Parse(e.GetAttribute("time"), System.Globalization.CultureInfo.GetCultureInfo("en-US").DateTimeFormat)));
|
||||
DateTime.Parse(e.GetAttribute("time"), CultureInfo.GetCultureInfo("en-US").DateTimeFormat)));
|
||||
|
||||
doc.Load("http://foxgame-studio.000webhostapp.com/foxtube-messages.xml");
|
||||
foreach (XmlElement e in doc["posts"].ChildNodes)
|
||||
items.Add(new InboxItem(
|
||||
e["header"][GetLanguage()].InnerText,
|
||||
e["content"][GetLanguage()].InnerText,
|
||||
DateTime.Parse(e.GetAttribute("time"), System.Globalization.CultureInfo.GetCultureInfo("en-US").DateTimeFormat),
|
||||
DateTime.Parse(e.GetAttribute("time"), CultureInfo.GetCultureInfo("en-US").DateTimeFormat),
|
||||
e["id"].InnerText,
|
||||
e["contentHeader"].InnerText));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user