Skip to content

Commit

Permalink
Bump vesion
Browse files Browse the repository at this point in the history
  • Loading branch information
FrayxRulez committed Oct 10, 2024
1 parent 57be7ba commit 73c7be3
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Telegram.Msix/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:uap4="http://schemas.microsoft.com/appx/manifest/uap/windows10/4" xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4" xmlns:iot2="http://schemas.microsoft.com/appx/manifest/iot/windows10/2" xmlns:uap6="http://schemas.microsoft.com/appx/manifest/uap/windows10/6" IgnorableNamespaces="uap uap3 uap4 uap5 mp rescap desktop desktop4 iot2 uap6">
<Identity Name="38833FF26BA1D.UnigramPreview" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.2.3.0" />
<Identity Name="38833FF26BA1D.UnigramPreview" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.2.4.0" />
<mp:PhoneIdentity PhoneProductId="bf16cc61-265a-4c8a-9ead-f4f77e6a0a97" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>Unigram—Telegram for Windows</DisplayName>
Expand Down
2 changes: 1 addition & 1 deletion Telegram/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:uap4="http://schemas.microsoft.com/appx/manifest/uap/windows10/4" xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4" xmlns:iot2="http://schemas.microsoft.com/appx/manifest/iot/windows10/2" xmlns:uap6="http://schemas.microsoft.com/appx/manifest/uap/windows10/6" IgnorableNamespaces="uap uap3 uap4 uap5 mp rescap desktop desktop4 iot2 uap6">
<Identity Name="38833FF26BA1D.UnigramExperimental" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.2.3.10131" />
<Identity Name="38833FF26BA1D.UnigramExperimental" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.2.4.10131" />
<mp:PhoneIdentity PhoneProductId="bf16cc61-265a-4c8a-9ead-f4f77e6a0a97" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>Unigram Experimental</DisplayName>
Expand Down
30 changes: 30 additions & 0 deletions Telegram/Stub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3385,6 +3385,21 @@ public static string GetHeader_stub(this Microsoft.Web.WebView2.Core.CoreWebView
}
}
}
public static class CoreWebView2WebMessageReceivedEventArgs_stub
{
public static string TryGetWebMessageAsString_stub(this Microsoft.Web.WebView2.Core.CoreWebView2WebMessageReceivedEventArgs sender)
{
try
{
return sender.TryGetWebMessageAsString();
}
catch (Exception ex)
{
Logger.Error(Environment.StackTrace);
throw new RuntimeException(ex);
}
}
}
public static class CoreWebView2WebResourceRequestedEventArgs_stub
{
public static Windows.Foundation.Deferral GetDeferral_stub(this Microsoft.Web.WebView2.Core.CoreWebView2WebResourceRequestedEventArgs sender)
Expand Down Expand Up @@ -7840,6 +7855,21 @@ public static Windows.UI.ViewManagement.ViewModePreferences CreateDefault_stub(W
}
}
}
public static class AppWindow_stub
{
public static void ClearPersistedState_stub(string key)
{
try
{
Windows.UI.WindowManagement.AppWindow.ClearPersistedState(key);
}
catch (Exception ex)
{
Logger.Error(Environment.StackTrace);
throw new RuntimeException(ex);
}
}
}
public static class AppWindowPresenter_stub
{
public static bool IsPresentationSupported_stub(this Windows.UI.WindowManagement.AppWindowPresenter sender, Windows.UI.WindowManagement.AppWindowPresentationKind presentationKind)
Expand Down

0 comments on commit 73c7be3

Please sign in to comment.