Skip to content

Commit 08e6e2e

Browse files
committed
Bump version
1 parent aaf334e commit 08e6e2e

File tree

3 files changed

+59
-2
lines changed

3 files changed

+59
-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.9.5.0" />
3+
<Identity Name="38833FF26BA1D.UnigramPreview" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.11.0.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.9.5.10781" />
14+
<Identity Name="38833FF26BA1D.UnigramExperimental" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.11.0.10781" />
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: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -642,6 +642,18 @@ public static void SetConnectionMode_stub(this Telegram.Native.Calls.VoipGroupMa
642642
throw new RuntimeException(ex);
643643
}
644644
}
645+
public static void SetEncryptDecrypt_stub(this Telegram.Native.Calls.VoipGroupManager sender, Telegram.Native.Calls.EncryptGroupCallDataDelegate encryptData, Telegram.Native.Calls.DecryptGroupCallDataDelegate decryptData)
646+
{
647+
try
648+
{
649+
sender.SetEncryptDecrypt(encryptData, decryptData);
650+
}
651+
catch (Exception ex)
652+
{
653+
Logger.Error(Environment.StackTrace);
654+
throw new RuntimeException(ex);
655+
}
656+
}
645657
public static void SetJoinResponsePayload_stub(this Telegram.Native.Calls.VoipGroupManager sender, string payload)
646658
{
647659
try
@@ -4786,6 +4798,21 @@ public static bool IsSupported_stub(string geographicRegionCode)
47864798
}
47874799
}
47884800
}
4801+
public static class Language_stub
4802+
{
4803+
public static bool IsWellFormed_stub(string languageTag)
4804+
{
4805+
try
4806+
{
4807+
return Windows.Globalization.Language.IsWellFormed(languageTag);
4808+
}
4809+
catch (Exception ex)
4810+
{
4811+
Logger.Error(Environment.StackTrace);
4812+
throw new RuntimeException(ex);
4813+
}
4814+
}
4815+
}
47894816
public static class ElementCompositionPreview_stub
47904817
{
47914818
public static Windows.UI.Composition.Visual GetElementChildVisual_stub(Windows.UI.Xaml.UIElement element)
@@ -6685,6 +6712,36 @@ public static string FormatUInt_stub(this Windows.Globalization.NumberFormatting
66856712
}
66866713
}
66876714
}
6715+
public static class INumberFormatter2_stub
6716+
{
6717+
public static string FormatInt_stub(this Windows.Globalization.NumberFormatting.INumberFormatter2 sender, long value)
6718+
{
6719+
try
6720+
{
6721+
return sender.FormatInt(value);
6722+
}
6723+
catch (Exception ex)
6724+
{
6725+
Logger.Error(Environment.StackTrace);
6726+
throw new RuntimeException(ex);
6727+
}
6728+
}
6729+
}
6730+
public static class INumberParser_stub
6731+
{
6732+
public static long? ParseInt_stub(this Windows.Globalization.NumberFormatting.INumberParser sender, string text)
6733+
{
6734+
try
6735+
{
6736+
return sender.ParseInt(text);
6737+
}
6738+
catch (Exception ex)
6739+
{
6740+
Logger.Error(Environment.StackTrace);
6741+
throw new RuntimeException(ex);
6742+
}
6743+
}
6744+
}
66886745
public static class OpusOutput_stub
66896746
{
66906747
public static void Transcode_stub(this Telegram.Native.Opus.OpusOutput sender, string fileName)

0 commit comments

Comments
 (0)