Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
FrayxRulez committed Dec 6, 2024
1 parent 665d51a commit 62580a2
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Telegram.Msix/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
IgnorableNamespaces="mp uap uap3 uap4 uap5 uap6 uap11 rescap desktop desktop4">
<Identity Name="38833FF26BA1D.UnigramPreview" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.5.2.0" />
<Identity Name="38833FF26BA1D.UnigramPreview" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.5.3.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
Expand Up @@ -11,7 +11,7 @@
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
IgnorableNamespaces="mp uap uap3 uap4 uap5 uap6 uap11 rescap desktop desktop4">
<Identity Name="38833FF26BA1D.UnigramExperimental" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.5.2.10781" />
<Identity Name="38833FF26BA1D.UnigramExperimental" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.5.3.10781" />
<mp:PhoneIdentity PhoneProductId="bf16cc61-265a-4c8a-9ead-f4f77e6a0a97" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>Unigram Experimental</DisplayName>
Expand Down
48 changes: 48 additions & 0 deletions Telegram/Stub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -900,6 +900,18 @@ public static Windows.ApplicationModel.Calls.VoipPhoneCall RequestNewOutgoingCal
}
public static class VoipPhoneCall_stub
{
public static void NotifyCallAccepted_stub(this Windows.ApplicationModel.Calls.VoipPhoneCall sender, Windows.ApplicationModel.Calls.VoipPhoneCallMedia media)
{
try
{
sender.NotifyCallAccepted(media);
}
catch (Exception ex)
{
Logger.Error(Environment.StackTrace);
throw new RuntimeException(ex);
}
}
public static void NotifyCallActive_stub(this Windows.ApplicationModel.Calls.VoipPhoneCall sender)
{
try
Expand Down Expand Up @@ -6156,6 +6168,18 @@ public static int GetLastInputTime_stub()
throw new RuntimeException(ex);
}
}
public static string GetLogMessage_stub(long format, long args)
{
try
{
return Telegram.Native.NativeUtils.GetLogMessage(format, args);
}
catch (Exception ex)
{
Logger.Error(Environment.StackTrace);
throw new RuntimeException(ex);
}
}
public static int GetScaleForCurrentView_stub()
{
try
Expand All @@ -6168,6 +6192,18 @@ public static int GetScaleForCurrentView_stub()
throw new RuntimeException(ex);
}
}
public static System.Collections.Generic.IList<Telegram.Native.FatalErrorFrame> GetStowedException_stub()
{
try
{
return Telegram.Native.NativeUtils.GetStowedException();
}
catch (Exception ex)
{
Logger.Error(Environment.StackTrace);
throw new RuntimeException(ex);
}
}
public static bool IsFileReadable_stub(string path, out long fileSize, out long fileTime)
{
try
Expand Down Expand Up @@ -6348,6 +6384,18 @@ public static Telegram.Native.QrBuffer FromString_stub(string text)
}
public static class VideoAnimation_stub
{
public static Windows.Storage.Streams.IRandomAccessStream GetAlbumCover_stub(this Telegram.Native.VideoAnimation sender)
{
try
{
return sender.GetAlbumCover();
}
catch (Exception ex)
{
Logger.Error(Environment.StackTrace);
throw new RuntimeException(ex);
}
}
public static Telegram.Native.VideoAnimation LoadFromFile_stub(Telegram.Native.IVideoAnimationSource file, bool preview, bool limitFps, bool probe)
{
try
Expand Down

0 comments on commit 62580a2

Please sign in to comment.