From 8b50a9ed23784f05eb77ec560a7fab43a1812460 Mon Sep 17 00:00:00 2001 From: Ilya Laktyushin Date: Sat, 21 Sep 2024 16:39:01 +0400 Subject: [PATCH 1/4] Bump version --- versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions.json b/versions.json index 010b3179b1..bc1c16abd1 100644 --- a/versions.json +++ b/versions.json @@ -1,5 +1,5 @@ { - "app": "11.1.1", + "app": "11.1.2", "xcode": "16.0", "bazel": "7.3.1", "macos": "15.0" From 4880be00f2c374eed442d989da4f15fc279cd938 Mon Sep 17 00:00:00 2001 From: Isaac <> Date: Sun, 22 Sep 2024 01:52:23 +0800 Subject: [PATCH 2/4] Trigger build --- Random.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Random.txt b/Random.txt index 397d9dd933..3578a816e4 100644 --- a/Random.txt +++ b/Random.txt @@ -1 +1 @@ -3a64b94cc76109006741756f85403c85 +3a64b94cc76109006741756f85403c86 From 93aab4587532c29b86b300f329cab35eb7a42991 Mon Sep 17 00:00:00 2001 From: Isaac <> Date: Mon, 23 Sep 2024 22:56:22 +0800 Subject: [PATCH 3/4] Disable new calls for the release --- submodules/TelegramCallsUI/Sources/VoiceChatController.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/submodules/TelegramCallsUI/Sources/VoiceChatController.swift b/submodules/TelegramCallsUI/Sources/VoiceChatController.swift index db52366c58..4e0facc053 100644 --- a/submodules/TelegramCallsUI/Sources/VoiceChatController.swift +++ b/submodules/TelegramCallsUI/Sources/VoiceChatController.swift @@ -7098,14 +7098,15 @@ final class VoiceChatContextReferenceContentSource: ContextReferenceContentSourc } public func shouldUseV2VideoChatImpl(context: AccountContext) -> Bool { - var useV2 = true + /*var useV2 = true if context.sharedContext.immediateExperimentalUISettings.disableCallV2 { useV2 = false } if let data = context.currentAppConfiguration.with({ $0 }).data, let _ = data["ios_killswitch_disable_videochatui_v2"] { useV2 = false } - return useV2 + return useV2*/ + return false } public func makeVoiceChatControllerInitialData(sharedContext: SharedAccountContext, accountContext: AccountContext, call: PresentationGroupCall) -> Signal { From aecd3655c4ec3d5e2b438e183d073485055d18c7 Mon Sep 17 00:00:00 2001 From: Isaac <> Date: Tue, 24 Sep 2024 12:34:21 +0800 Subject: [PATCH 4/4] Roll back --- submodules/TelegramCallsUI/Sources/VoiceChatController.swift | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/submodules/TelegramCallsUI/Sources/VoiceChatController.swift b/submodules/TelegramCallsUI/Sources/VoiceChatController.swift index 4e0facc053..db52366c58 100644 --- a/submodules/TelegramCallsUI/Sources/VoiceChatController.swift +++ b/submodules/TelegramCallsUI/Sources/VoiceChatController.swift @@ -7098,15 +7098,14 @@ final class VoiceChatContextReferenceContentSource: ContextReferenceContentSourc } public func shouldUseV2VideoChatImpl(context: AccountContext) -> Bool { - /*var useV2 = true + var useV2 = true if context.sharedContext.immediateExperimentalUISettings.disableCallV2 { useV2 = false } if let data = context.currentAppConfiguration.with({ $0 }).data, let _ = data["ios_killswitch_disable_videochatui_v2"] { useV2 = false } - return useV2*/ - return false + return useV2 } public func makeVoiceChatControllerInitialData(sharedContext: SharedAccountContext, accountContext: AccountContext, call: PresentationGroupCall) -> Signal {