Archived
1
0

Notification system development 2

This commit is contained in:
Michael Gordeev
2018-10-24 22:00:47 +03:00
parent 1a93ea4801
commit df6d9c4aab
5 changed files with 18 additions and 21 deletions
+3 -3
View File
@@ -9,7 +9,7 @@ namespace FoxTube.Background
{
XmlDocument template = new XmlDocument();
template.LoadXml($@"<toast activationType='foreground' launch='changelog|{version.Replace(".", "-")}'>
template.LoadXml($@"<toast activationType='foreground' launch='changelog|{version}'>
<visual>
<binding template='ToastGeneric'>
<image placement='hero' src='http://foxgame.hol.es/FoxTubeAssets/WhatsNewThumb.png'/>
@@ -38,8 +38,8 @@ namespace FoxTube.Background
</visual>
<actions>
<action content='Add to Watch later' activationType='background' arguments='later-{id}'/>
<action content='Go to channel' activationType='foreground' arguments='channel-{channelId}'/>
<action content='Add to Watch later' activationType='background' arguments='later|{id}'/>
<action content='Go to channel' activationType='foreground' arguments='channel|{channelId}'/>
</actions>
</toast>");