Skip to content

Commit 326eea4

Browse files
committed
Bump version to 11.13.10
1 parent 99acb0d commit 326eea4

File tree

3 files changed

+71
-2
lines changed

3 files changed

+71
-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.9.0" />
3+
<Identity Name="38833FF26BA1D.UnigramPreview" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.13.10.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.9.12072" />
14+
<Identity Name="38833FF26BA1D.UnigramExperimental" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.13.10.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: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,21 @@ public static void Remove_stub(this Windows.Storage.AccessCache.StorageItemMostR
103103
}
104104
}
105105
}
106+
public static class TextRecognizer_stub
107+
{
108+
public static Telegram.Native.AI.ITextRecognizer GetOne_stub(string modelKey)
109+
{
110+
try
111+
{
112+
return Telegram.Native.AI.TextRecognizer.GetOne(modelKey);
113+
}
114+
catch (Exception ex)
115+
{
116+
Logger.Error(Environment.StackTrace);
117+
throw new RuntimeException(ex);
118+
}
119+
}
120+
}
106121
public static class ConnectedAnimation_stub
107122
{
108123
public static bool TryStart_stub(this Windows.UI.Xaml.Media.Animation.ConnectedAnimation sender, Windows.UI.Xaml.UIElement destination)
@@ -4638,6 +4653,30 @@ public static Microsoft.Graphics.Canvas.Geometry.CanvasGeometry CreateText_stub(
46384653
throw new RuntimeException(ex);
46394654
}
46404655
}
4656+
public static void Dispose_stub(this Microsoft.Graphics.Canvas.Geometry.CanvasGeometry sender)
4657+
{
4658+
try
4659+
{
4660+
sender.Dispose();
4661+
}
4662+
catch (Exception ex)
4663+
{
4664+
Logger.Error(Environment.StackTrace);
4665+
throw new RuntimeException(ex);
4666+
}
4667+
}
4668+
public static Microsoft.Graphics.Canvas.Geometry.CanvasGeometry Transform_stub(this Microsoft.Graphics.Canvas.Geometry.CanvasGeometry sender, System.Numerics.Matrix3x2 transform)
4669+
{
4670+
try
4671+
{
4672+
return sender.Transform(transform);
4673+
}
4674+
catch (Exception ex)
4675+
{
4676+
Logger.Error(Environment.StackTrace);
4677+
throw new RuntimeException(ex);
4678+
}
4679+
}
46414680
}
46424681
public static class CanvasPathBuilder_stub
46434682
{
@@ -5032,6 +5071,21 @@ public static bool TryGetPosition_stub(this Windows.UI.Xaml.Input.ContextRequest
50325071
}
50335072
}
50345073
}
5074+
public static class DoubleTappedRoutedEventArgs_stub
5075+
{
5076+
public static Windows.Foundation.Point GetPosition_stub(this Windows.UI.Xaml.Input.DoubleTappedRoutedEventArgs sender, Windows.UI.Xaml.UIElement relativeTo)
5077+
{
5078+
try
5079+
{
5080+
return sender.GetPosition(relativeTo);
5081+
}
5082+
catch (Exception ex)
5083+
{
5084+
Logger.Error(Environment.StackTrace);
5085+
throw new RuntimeException(ex);
5086+
}
5087+
}
5088+
}
50355089
public static class FocusManager_stub
50365090
{
50375091
public static Windows.UI.Xaml.DependencyObject FindFirstFocusableElement_stub(Windows.UI.Xaml.DependencyObject searchScope)
@@ -5179,6 +5233,21 @@ public static Windows.UI.Input.PointerPoint GetCurrentPoint_stub(this Windows.UI
51795233
}
51805234
}
51815235
}
5236+
public static class TappedRoutedEventArgs_stub
5237+
{
5238+
public static Windows.Foundation.Point GetPosition_stub(this Windows.UI.Xaml.Input.TappedRoutedEventArgs sender, Windows.UI.Xaml.UIElement relativeTo)
5239+
{
5240+
try
5241+
{
5242+
return sender.GetPosition(relativeTo);
5243+
}
5244+
catch (Exception ex)
5245+
{
5246+
Logger.Error(Environment.StackTrace);
5247+
throw new RuntimeException(ex);
5248+
}
5249+
}
5250+
}
51825251
public static class CompositionInteractionSourceCollection_stub
51835252
{
51845253
public static void Add_stub(this Windows.UI.Composition.Interactions.CompositionInteractionSourceCollection sender, Windows.UI.Composition.Interactions.ICompositionInteractionSource value)

0 commit comments

Comments
 (0)