Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
FrayxRulez committed Feb 17, 2025
1 parent 4879970 commit e7c17cf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 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.7.0.0" />
<Identity Name="38833FF26BA1D.UnigramPreview" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.7.1.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.7.0.10781" />
<Identity Name="38833FF26BA1D.UnigramExperimental" Publisher="CN=D89C87B4-2758-402A-8F40-3571D00882AB" Version="11.7.1.10781" />
<mp:PhoneIdentity PhoneProductId="bf16cc61-265a-4c8a-9ead-f4f77e6a0a97" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>Unigram Experimental</DisplayName>
Expand Down
17 changes: 8 additions & 9 deletions Telegram/Views/Calls/VoipPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1032,15 +1032,14 @@ private void Discard_Click(object sender, RoutedEventArgs e)

private async void Mute_Click(object sender, RoutedEventArgs e)
{
_call.ClientService.Send(new CreateGroupCall(_call.Id));
//if (Mute.IsChecked == false)
//{
// _call.AudioState = VoipAudioState.Muted;
//}
//else if (await MediaDevicePermissions.CheckAccessAsync(XamlRoot, MediaDeviceAccess.Audio, PopupTheme))
//{
// _call.AudioState = VoipAudioState.Active;
//}
if (Mute.IsChecked == false)
{
_call.AudioState = VoipAudioState.Muted;
}
else if (await MediaDevicePermissions.CheckAccessAsync(XamlRoot, MediaDeviceAccess.Audio, PopupTheme))
{
_call.AudioState = VoipAudioState.Active;
}
}

private async void Camera_Click(object sender, RoutedEventArgs e)
Expand Down

0 comments on commit e7c17cf

Please sign in to comment.