mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-09-01 23:25:15 +00:00
@@ -37,6 +37,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
namespace tgcalls {
|
namespace tgcalls {
|
||||||
class InstanceImpl;
|
class InstanceImpl;
|
||||||
class InstanceV2Impl;
|
class InstanceV2Impl;
|
||||||
|
class InstanceV2_4_0_0Impl;
|
||||||
class InstanceImplLegacy;
|
class InstanceImplLegacy;
|
||||||
void SetLegacyGlobalServerConfig(const std::string &serverConfig);
|
void SetLegacyGlobalServerConfig(const std::string &serverConfig);
|
||||||
} // namespace tgcalls
|
} // namespace tgcalls
|
||||||
@@ -52,6 +53,7 @@ const auto kDefaultVersion = "2.4.4"_q;
|
|||||||
|
|
||||||
const auto Register = tgcalls::Register<tgcalls::InstanceImpl>();
|
const auto Register = tgcalls::Register<tgcalls::InstanceImpl>();
|
||||||
const auto RegisterV2 = tgcalls::Register<tgcalls::InstanceV2Impl>();
|
const auto RegisterV2 = tgcalls::Register<tgcalls::InstanceV2Impl>();
|
||||||
|
const auto RegisterV240 = tgcalls::Register<tgcalls::InstanceV2_4_0_0Impl>();
|
||||||
const auto RegisterLegacy = tgcalls::Register<tgcalls::InstanceImplLegacy>();
|
const auto RegisterLegacy = tgcalls::Register<tgcalls::InstanceImplLegacy>();
|
||||||
|
|
||||||
void AppendEndpoint(
|
void AppendEndpoint(
|
||||||
|
@@ -4440,7 +4440,7 @@ void HistoryWidget::updateSendButtonType() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool HistoryWidget::updateCmdStartShown() {
|
bool HistoryWidget::updateCmdStartShown() {
|
||||||
const auto bot = (_peer && _peer->asUser()->isBot())
|
const auto bot = (_peer && _peer->isUser() && _peer->asUser()->isBot())
|
||||||
? _peer->asUser()
|
? _peer->asUser()
|
||||||
: nullptr;
|
: nullptr;
|
||||||
bool cmdStartShown = false;
|
bool cmdStartShown = false;
|
||||||
|
2
Telegram/ThirdParty/tgcalls
vendored
2
Telegram/ThirdParty/tgcalls
vendored
Submodule Telegram/ThirdParty/tgcalls updated: 6e6f09259d...365f19aa57
@@ -55,6 +55,10 @@ PRIVATE
|
|||||||
VideoCaptureInterfaceImpl.h
|
VideoCaptureInterfaceImpl.h
|
||||||
VideoCapturerInterface.h
|
VideoCapturerInterface.h
|
||||||
|
|
||||||
|
v2/ContentNegotiation.cpp
|
||||||
|
v2/ContentNegotiation.h
|
||||||
|
v2/InstanceV2ReferenceImpl.cpp
|
||||||
|
v2/InstanceV2ReferenceImpl.h
|
||||||
v2/InstanceV2Impl.cpp
|
v2/InstanceV2Impl.cpp
|
||||||
v2/InstanceV2Impl.h
|
v2/InstanceV2Impl.h
|
||||||
v2/NativeNetworkingImpl.cpp
|
v2/NativeNetworkingImpl.cpp
|
||||||
@@ -63,6 +67,10 @@ PRIVATE
|
|||||||
v2/Signaling.h
|
v2/Signaling.h
|
||||||
v2/SignalingEncryption.cpp
|
v2/SignalingEncryption.cpp
|
||||||
v2/SignalingEncryption.h
|
v2/SignalingEncryption.h
|
||||||
|
v2_4_0_0/InstanceV2_4_0_0Impl.cpp
|
||||||
|
v2_4_0_0/InstanceV2_4_0_0Impl.h
|
||||||
|
v2_4_0_0/Signaling_4_0_0.cpp
|
||||||
|
v2_4_0_0/Signaling_4_0_0.h
|
||||||
|
|
||||||
# Desktop capturer
|
# Desktop capturer
|
||||||
desktop_capturer/DesktopCaptureSource.h
|
desktop_capturer/DesktopCaptureSource.h
|
||||||
|
Reference in New Issue
Block a user