more comment updates

This commit is contained in:
David Langley 2022-10-13 11:46:00 +01:00
parent 6fa409c32d
commit 858744b643
4 changed files with 9 additions and 21 deletions

View file

@ -16,9 +16,9 @@ use_frameworks!
# - `{ :specHash => {sdk spec hash}` to depend on specific pod options (:git => …, :podspec => …) for MatrixSDK repo. Used by Fastfile during CI
#
# Warning: our internal tooling depends on the name of this variable name, so be sure not to change it
# $matrixSDKVersion = '= 0.24.0'
$matrixSDKVersion = '= 0.24.0'
# $matrixSDKVersion = :local
$matrixSDKVersion = { :branch => 'develop'}
# $matrixSDKVersion = { :branch => 'develop'}
# $matrixSDKVersion = { :specHash => { git: 'https://git.io/fork123', branch: 'fix' } }
########################################

View file

@ -121,8 +121,8 @@ DEPENDENCIES:
- KeychainAccess (~> 4.2.2)
- KTCenterFlowLayout (~> 1.3.1)
- libPhoneNumber-iOS (~> 0.9.13)
- MatrixSDK (from `https://github.com/matrix-org/matrix-ios-sdk.git`, branch `develop`)
- MatrixSDK/JingleCallStack (from `https://github.com/matrix-org/matrix-ios-sdk.git`, branch `develop`)
- MatrixSDK (= 0.24.0)
- MatrixSDK/JingleCallStack (= 0.24.0)
- OLMKit
- PostHog (~> 1.4.4)
- ReadMoreTextView (~> 3.0.1)
@ -163,6 +163,7 @@ SPEC REPOS:
- libPhoneNumber-iOS
- LoggerAPI
- Logging
- MatrixSDK
- MatrixSDKCrypto
- OLMKit
- PostHog
@ -186,17 +187,11 @@ EXTERNAL SOURCES:
AnalyticsEvents:
:branch: release/swift
:git: https://github.com/matrix-org/matrix-analytics-events.git
MatrixSDK:
:branch: develop
:git: https://github.com/matrix-org/matrix-ios-sdk.git
CHECKOUT OPTIONS:
AnalyticsEvents:
:commit: 53ad46ba1ea1ee8f21139dda3c351890846a202f
:git: https://github.com/matrix-org/matrix-analytics-events.git
MatrixSDK:
:commit: 66aefba83a80dbc6ee2ed799b7e6a539ec315eca
:git: https://github.com/matrix-org/matrix-ios-sdk.git
SPEC CHECKSUMS:
AFNetworking: 7864c38297c79aaca1500c33288e429c3451fdce
@ -242,6 +237,6 @@ SPEC CHECKSUMS:
zxcvbn-ios: fef98b7c80f1512ff0eec47ac1fa399fc00f7e3c
ZXingObjC: fdbb269f25dd2032da343e06f10224d62f537bdb
PODFILE CHECKSUM: 56887a1da36d198cd845aa7bffe244cf837bc866
PODFILE CHECKSUM: c6ddab0a8561cf3d4f870aab1073b2a320c2c8dd
COCOAPODS: 1.11.3

View file

@ -1154,15 +1154,9 @@ static CGSize kThreadListBarButtonItemImageSize;
+ (Class) mainToolbarClass
{
if (@available(iOS 15.0, *)) {
if (RiotSettings.shared.enableWysiwygComposer)
{
return WysiwygInputToolbarView.class;
}
else
{
return RoomInputToolbarView.class;
}
if (RiotSettings.shared.enableWysiwygComposer)
{
return WysiwygInputToolbarView.class;
}
else
{

View file

@ -47,7 +47,6 @@ struct ComposerCreateActionList: View {
}
.padding(.horizontal, 16)
.padding(.vertical, 12)
}
}
.padding(.top, 16)