Skip to content

Commit d3d84bb

Browse files
committed
Bump version to 11.13.2
1 parent c9cbf3b commit d3d84bb

File tree

3 files changed

+40
-4
lines changed

3 files changed

+40
-4
lines changed

Telegram.Msix/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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:uap6="http://schemas.microsoft.com/appx/manifest/uap/windows10/6" xmlns:uap11="http://schemas.microsoft.com/appx/manifest/uap/windows10/11" 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" IgnorableNamespaces="mp uap uap3 uap4 uap5 uap6 uap11 rescap desktop desktop4">
3-
<Identity Name="38833FF26BA1D.UnigramPreview" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.13.1.0" />
3+
<Identity Name="38833FF26BA1D.UnigramPreview" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.13.2.0" />
44
<mp:PhoneIdentity PhoneProductId="bf16cc61-265a-4c8a-9ead-f4f77e6a0a97" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
55
<Properties>
66
<DisplayName>Unigram—Telegram for Windows</DisplayName>

Telegram/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
1212
xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
1313
IgnorableNamespaces="mp uap uap3 uap4 uap5 uap6 uap11 rescap desktop desktop4">
14-
<Identity Name="38833FF26BA1D.UnigramExperimental" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.13.1.11774" />
14+
<Identity Name="38833FF26BA1D.UnigramExperimental" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.13.2.11774" />
1515
<mp:PhoneIdentity PhoneProductId="bf16cc61-265a-4c8a-9ead-f4f77e6a0a97" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
1616
<Properties>
1717
<DisplayName>Unigram Experimental</DisplayName>

Telegram/Stub.cs

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5958,7 +5958,7 @@ public static Telegram.Native.CachedVideoAnimation LoadFromFile_stub(Telegram.Na
59585958
throw new RuntimeException(ex);
59595959
}
59605960
}
5961-
public static void RenderSync_stub(this Telegram.Native.CachedVideoAnimation sender, Windows.Storage.Streams.IBuffer bitmap, out int seconds, out bool completed)
5961+
public static void RenderSync_stub(this Telegram.Native.CachedVideoAnimation sender, Windows.Storage.Streams.IBuffer bitmap, out double seconds, out bool completed)
59625962
{
59635963
try
59645964
{
@@ -6348,6 +6348,18 @@ public static void Encode_stub(this Telegram.Native.PlaceholderImageHelper sende
63486348
throw new RuntimeException(ex);
63496349
}
63506350
}
6351+
public static Windows.UI.Composition.CompositionPath GetEllipticalClip_stub(this Telegram.Native.PlaceholderImageHelper sender, float width, float height, float radius, float x, float y)
6352+
{
6353+
try
6354+
{
6355+
return sender.GetEllipticalClip(width, height, radius, x, y);
6356+
}
6357+
catch (Exception ex)
6358+
{
6359+
Logger.Error(Environment.StackTrace);
6360+
throw new RuntimeException(ex);
6361+
}
6362+
}
63516363
public static Windows.UI.Composition.CompositionPath GetOutline_stub(this Telegram.Native.PlaceholderImageHelper sender, System.Collections.Generic.IList<Telegram.Td.Api.ClosedVectorPath> contours)
63526364
{
63536365
try
@@ -6360,6 +6372,18 @@ public static Windows.UI.Composition.CompositionPath GetOutline_stub(this Telegr
63606372
throw new RuntimeException(ex);
63616373
}
63626374
}
6375+
public static Windows.UI.Composition.CompositionPath GetReplyMarkupClip_stub(this Telegram.Native.PlaceholderImageHelper sender, System.Collections.Generic.IList<System.Collections.Generic.IList<Windows.Foundation.Rect>> buttons, float bottomRightRadius, float bottomLeftRadius)
6376+
{
6377+
try
6378+
{
6379+
return sender.GetReplyMarkupClip(buttons, bottomRightRadius, bottomLeftRadius);
6380+
}
6381+
catch (Exception ex)
6382+
{
6383+
Logger.Error(Environment.StackTrace);
6384+
throw new RuntimeException(ex);
6385+
}
6386+
}
63636387
public static Windows.UI.Composition.CompositionPath GetTail_stub(this Telegram.Native.PlaceholderImageHelper sender, float width, float height, float topLeftRadius, float topRightRadius, float bottomRightRadius, float bottomLeftRadius)
63646388
{
63656389
try
@@ -6372,6 +6396,18 @@ public static Windows.UI.Composition.CompositionPath GetTail_stub(this Telegram.
63726396
throw new RuntimeException(ex);
63736397
}
63746398
}
6399+
public static Windows.UI.Composition.CompositionPath GetVoiceNoteClip_stub(this Telegram.Native.PlaceholderImageHelper sender, System.Collections.Generic.IList<byte> waveform, double waveformWidth)
6400+
{
6401+
try
6402+
{
6403+
return sender.GetVoiceNoteClip(waveform, waveformWidth);
6404+
}
6405+
catch (Exception ex)
6406+
{
6407+
Logger.Error(Environment.StackTrace);
6408+
throw new RuntimeException(ex);
6409+
}
6410+
}
63756411
public static bool IsWebP_stub(string fileName, out int pixelWidth, out int pixelHeight)
63766412
{
63776413
try
@@ -6462,7 +6498,7 @@ public static Telegram.Native.VideoAnimation LoadFromFile_stub(Telegram.Native.I
64626498
throw new RuntimeException(ex);
64636499
}
64646500
}
6465-
public static int RenderSync_stub(this Telegram.Native.VideoAnimation sender, Windows.Storage.Streams.IBuffer bitmap, int width, int height, bool preview, out int seconds)
6501+
public static int RenderSync_stub(this Telegram.Native.VideoAnimation sender, Windows.Storage.Streams.IBuffer bitmap, int width, int height, bool preview, out double seconds)
64666502
{
64676503
try
64686504
{

0 commit comments

Comments
 (0)