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