Skip to content

Commit aefc736

Browse files
committed
Bump version to 11.13.7
1 parent bcaea29 commit aefc736

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
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.6.0" />
3+
<Identity Name="38833FF26BA1D.UnigramPreview" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.13.7.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.6.11774" />
14+
<Identity Name="38833FF26BA1D.UnigramExperimental" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.13.7.12072" />
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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4626,6 +4626,18 @@ public static Microsoft.Graphics.Canvas.Geometry.CanvasGeometry CreateRoundedRec
46264626
throw new RuntimeException(ex);
46274627
}
46284628
}
4629+
public static Microsoft.Graphics.Canvas.Geometry.CanvasGeometry CreateText_stub(Microsoft.Graphics.Canvas.Text.CanvasTextLayout textLayout)
4630+
{
4631+
try
4632+
{
4633+
return Microsoft.Graphics.Canvas.Geometry.CanvasGeometry.CreateText(textLayout);
4634+
}
4635+
catch (Exception ex)
4636+
{
4637+
Logger.Error(Environment.StackTrace);
4638+
throw new RuntimeException(ex);
4639+
}
4640+
}
46294641
}
46304642
public static class CanvasPathBuilder_stub
46314643
{
@@ -6831,6 +6843,18 @@ public static string FormatInt_stub(this Windows.Globalization.NumberFormatting.
68316843
}
68326844
public static class INumberParser_stub
68336845
{
6846+
public static double? ParseDouble_stub(this Windows.Globalization.NumberFormatting.INumberParser sender, string text)
6847+
{
6848+
try
6849+
{
6850+
return sender.ParseDouble(text);
6851+
}
6852+
catch (Exception ex)
6853+
{
6854+
Logger.Error(Environment.StackTrace);
6855+
throw new RuntimeException(ex);
6856+
}
6857+
}
68346858
public static long? ParseInt_stub(this Windows.Globalization.NumberFormatting.INumberParser sender, string text)
68356859
{
68366860
try

0 commit comments

Comments
 (0)