Merge remote-tracking branch 'origin/develop' into element_3812
153
CHANGES.rst
@@ -22,6 +22,159 @@ Changes to be released in next version
|
||||
Others
|
||||
*
|
||||
|
||||
Changes in 1.2.0 (2021-02-11)
|
||||
=================================================
|
||||
|
||||
✨ Features
|
||||
*
|
||||
|
||||
🙌 Improvements
|
||||
* Cross-signing: Setup cross-signing without authentication parameters when a grace period is enabled after login (#4006).
|
||||
* VoIP: Implement DTMF on call screen (#3929).
|
||||
* VoIP: Implement call transfer screen (#3962).
|
||||
* VoIP: Implement call tiles on timeline (#3955).
|
||||
|
||||
🐛 Bugfix
|
||||
*
|
||||
|
||||
⚠️ API Changes
|
||||
*
|
||||
|
||||
🗣 Translations
|
||||
*
|
||||
|
||||
🧱 Build
|
||||
*
|
||||
|
||||
Others
|
||||
*
|
||||
|
||||
Improvements:
|
||||
* Upgrade MatrixKit version ([v0.14.0](https://github.com/matrix-org/matrix-ios-kit/releases/tag/v0.14.0)).
|
||||
|
||||
Changes in 1.1.7 (2021-02-03)
|
||||
=================================================
|
||||
|
||||
✨ Features
|
||||
*
|
||||
|
||||
🙌 Improvements
|
||||
* Social login: Handle new identity provider brand field in order to customize buttons (#3980).
|
||||
* Widgets: Support $matrix_room_id and $matrix_widget_id parameters (#3987).
|
||||
* matrix.to: Support room preview when the permalink has parameters (like "via=").
|
||||
* Avoid megolm share requests if the device is not verified (#3969)
|
||||
* Handle User-Interactive Authentication fallback (#3995).
|
||||
|
||||
🐛 Bugfix
|
||||
* Push: Fix PushKit crashes due to undecryptable call invites (#3986).
|
||||
* matrix.to: Cannot open links with query parameters (#3990).
|
||||
* matrix.to: Cannot open/preview a new room given by alias (#3991).
|
||||
* matrix.to: The app does not open a permalink from matrix.to (#3993).
|
||||
* Logs: Add a size limitation so that we can upload them in bug reports (#3903).
|
||||
|
||||
⚠️ API Changes
|
||||
*
|
||||
|
||||
🗣 Translations
|
||||
*
|
||||
|
||||
🧱 Build
|
||||
*
|
||||
|
||||
Others
|
||||
*
|
||||
|
||||
Improvements:
|
||||
* Upgrade MatrixKit version ([v0.13.9](https://github.com/matrix-org/matrix-ios-kit/releases/tag/v0.13.9)).
|
||||
|
||||
Changes in 1.1.6 (2021-01-27)
|
||||
=================================================
|
||||
|
||||
✨ Features
|
||||
*
|
||||
|
||||
🙌 Improvements
|
||||
*
|
||||
|
||||
🐛 Bugfix
|
||||
* Navigation: Unable to open a room from a room list (#3863).
|
||||
* AuthVC: Fix social login layout issue.
|
||||
|
||||
⚠️ API Changes
|
||||
*
|
||||
|
||||
🗣 Translations
|
||||
*
|
||||
|
||||
🧱 Build
|
||||
*
|
||||
|
||||
Others
|
||||
*
|
||||
|
||||
Improvements:
|
||||
* Upgrade MatrixKit version ([v0.13.8](https://github.com/matrix-org/matrix-ios-kit/releases/tag/v0.13.8)).
|
||||
|
||||
Changes in 1.1.5 (2021-01-18)
|
||||
=================================================
|
||||
|
||||
✨ Features
|
||||
*
|
||||
|
||||
🙌 Improvements
|
||||
*
|
||||
|
||||
🐛 Bugfix
|
||||
*
|
||||
|
||||
⚠️ API Changes
|
||||
*
|
||||
|
||||
🗣 Translations
|
||||
*
|
||||
|
||||
🧱 Build
|
||||
*
|
||||
|
||||
Others
|
||||
*
|
||||
|
||||
Improvements:
|
||||
* Upgrade MatrixKit version ([v0.13.7](https://github.com/matrix-org/matrix-ios-kit/releases/tag/v0.13.7)).
|
||||
|
||||
Changes in 1.1.4 (2021-01-15)
|
||||
=================================================
|
||||
|
||||
✨ Features
|
||||
* Change Pin inside the app (#3881)
|
||||
* AuthVC: Add social login (#3846).
|
||||
* Invite friends: Add the ability to invite friends outside of Element in a few places (#3840).
|
||||
|
||||
🙌 Improvements
|
||||
* Bug report: Add "Continue in background" button (#3816).
|
||||
* Show user id in the room invite preview screen (#3839)
|
||||
* AuthVC: SSO authentication now use redirect URL instead of fallback page (#3846).
|
||||
|
||||
🐛 Bugfix
|
||||
* Crash report cannot be submitted (on small phones) (#3819)
|
||||
* Prevent navigation controller from pushing same view controller (#3924)
|
||||
* AuthVC: Fix recaptcha view cropping (#3940).
|
||||
|
||||
⚠️ API Changes
|
||||
*
|
||||
|
||||
🗣 Translations
|
||||
*
|
||||
|
||||
🧱 Build
|
||||
*
|
||||
|
||||
Others
|
||||
*
|
||||
|
||||
Improvements:
|
||||
* Upgrade MatrixKit version ([v0.13.6](https://github.com/matrix-org/matrix-ios-kit/releases/tag/v0.13.6)).
|
||||
|
||||
Changes in 1.1.3 (2020-12-18)
|
||||
=================================================
|
||||
|
||||
|
||||
@@ -52,6 +52,17 @@ final class BuildSettings: NSObject {
|
||||
return keychainAccessGroup
|
||||
}
|
||||
|
||||
static var applicationURLScheme: String? {
|
||||
guard let urlTypes = Bundle.app.object(forInfoDictionaryKey: "CFBundleURLTypes") as? [AnyObject],
|
||||
let urlTypeDictionary = urlTypes.first as? [String: AnyObject],
|
||||
let urlSchemes = urlTypeDictionary["CFBundleURLSchemes"] as? [AnyObject],
|
||||
let externalURLScheme = urlSchemes.first as? String else {
|
||||
return nil
|
||||
}
|
||||
|
||||
return externalURLScheme
|
||||
}
|
||||
|
||||
static var pushKitAppIdProd: String {
|
||||
return baseBundleIdentifier + ".ios.voip.prod"
|
||||
}
|
||||
@@ -123,7 +134,7 @@ final class BuildSettings: NSObject {
|
||||
|
||||
// MARK: - VoIP
|
||||
static var allowVoIPUsage: Bool {
|
||||
#if canImport(JitsiMeet)
|
||||
#if canImport(JitsiMeetSDK)
|
||||
return true
|
||||
#else
|
||||
return false
|
||||
|
||||
2
Podfile
@@ -11,7 +11,7 @@ use_frameworks!
|
||||
# - `{ {kit spec hash} => {sdk spec hash}` to depend on specific pod options (:git => …, :podspec => …) for each 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
|
||||
$matrixKitVersion = '= 0.13.4'
|
||||
$matrixKitVersion = '= 0.14.0'
|
||||
# $matrixKitVersion = :local
|
||||
# $matrixKitVersion = {'develop' => 'develop'}
|
||||
|
||||
|
||||
38
Podfile.lock
@@ -47,7 +47,7 @@ PODS:
|
||||
- GBDeviceInfo/Core (6.4.0)
|
||||
- GZIP (1.3.0)
|
||||
- HPGrowingTextView (1.1)
|
||||
- JitsiMeetSDK (2.11.0)
|
||||
- JitsiMeetSDK (3.1.0)
|
||||
- KeychainAccess (4.2.1)
|
||||
- KituraContracts (1.2.1):
|
||||
- LoggerAPI (~> 1.7)
|
||||
@@ -60,36 +60,36 @@ PODS:
|
||||
- MatomoTracker (7.2.2):
|
||||
- MatomoTracker/Core (= 7.2.2)
|
||||
- MatomoTracker/Core (7.2.2)
|
||||
- MatrixKit (0.13.4):
|
||||
- MatrixKit (0.14.0):
|
||||
- Down (~> 0.9.3)
|
||||
- DTCoreText (~> 1.6.23)
|
||||
- HPGrowingTextView (~> 1.1)
|
||||
- libPhoneNumber-iOS (~> 0.9.13)
|
||||
- MatrixKit/Core (= 0.13.4)
|
||||
- MatrixSDK (= 0.17.6)
|
||||
- MatrixKit/AppExtension (0.13.4):
|
||||
- MatrixKit/Core (= 0.14.0)
|
||||
- MatrixSDK (= 0.18.0)
|
||||
- MatrixKit/AppExtension (0.14.0):
|
||||
- Down (~> 0.9.3)
|
||||
- DTCoreText (~> 1.6.23)
|
||||
- DTCoreText/Extension
|
||||
- HPGrowingTextView (~> 1.1)
|
||||
- libPhoneNumber-iOS (~> 0.9.13)
|
||||
- MatrixSDK (= 0.17.6)
|
||||
- MatrixKit/Core (0.13.4):
|
||||
- MatrixSDK (= 0.18.0)
|
||||
- MatrixKit/Core (0.14.0):
|
||||
- Down (~> 0.9.3)
|
||||
- DTCoreText (~> 1.6.23)
|
||||
- HPGrowingTextView (~> 1.1)
|
||||
- libPhoneNumber-iOS (~> 0.9.13)
|
||||
- MatrixSDK (= 0.17.6)
|
||||
- MatrixSDK (0.17.6):
|
||||
- MatrixSDK/Core (= 0.17.6)
|
||||
- MatrixSDK/Core (0.17.6):
|
||||
- MatrixSDK (= 0.18.0)
|
||||
- MatrixSDK (0.18.0):
|
||||
- MatrixSDK/Core (= 0.18.0)
|
||||
- MatrixSDK/Core (0.18.0):
|
||||
- AFNetworking (~> 4.0.0)
|
||||
- GZIP (~> 1.3.0)
|
||||
- libbase58 (~> 0.1.4)
|
||||
- OLMKit (~> 3.1.0)
|
||||
- Realm (= 10.1.4)
|
||||
- MatrixSDK/JingleCallStack (0.17.6):
|
||||
- JitsiMeetSDK (= 2.11.0)
|
||||
- MatrixSDK/JingleCallStack (0.18.0):
|
||||
- JitsiMeetSDK (= 3.1.0)
|
||||
- MatrixSDK/Core
|
||||
- OLMKit (3.1.0):
|
||||
- OLMKit/olmc (= 3.1.0)
|
||||
@@ -127,8 +127,8 @@ DEPENDENCIES:
|
||||
- KeychainAccess (~> 4.2.1)
|
||||
- KTCenterFlowLayout (~> 1.3.1)
|
||||
- MatomoTracker (~> 7.2.2)
|
||||
- MatrixKit (= 0.13.4)
|
||||
- MatrixKit/AppExtension (= 0.13.4)
|
||||
- MatrixKit (= 0.14.0)
|
||||
- MatrixKit/AppExtension (= 0.14.0)
|
||||
- MatrixSDK
|
||||
- MatrixSDK/JingleCallStack
|
||||
- OLMKit
|
||||
@@ -190,7 +190,7 @@ SPEC CHECKSUMS:
|
||||
GBDeviceInfo: f29249891446a392e64b9c9bbef9554aad2a6beb
|
||||
GZIP: 416858efbe66b41b206895ac6dfd5493200d95b3
|
||||
HPGrowingTextView: 88a716d97fb853bcb08a4a08e4727da17efc9b19
|
||||
JitsiMeetSDK: ddc915b751b0166aa4fdfee938bd60cc87aff9f3
|
||||
JitsiMeetSDK: 330e694130d6e67126e5a031b9ab1807f446ab3b
|
||||
KeychainAccess: 9b07f665298d13c3a85881bd3171f6f49b8151c1
|
||||
KituraContracts: e845e60dc8627ad0a76fa55ef20a45451d8f830b
|
||||
KTCenterFlowLayout: 6e02b50ab2bd865025ae82fe266ed13b6d9eaf97
|
||||
@@ -199,8 +199,8 @@ SPEC CHECKSUMS:
|
||||
LoggerAPI: ad9c4a6f1e32f518fdb43a1347ac14d765ab5e3d
|
||||
Logging: beeb016c9c80cf77042d62e83495816847ef108b
|
||||
MatomoTracker: a59ec4da0f580be57bdc6baa708a71a86532a832
|
||||
MatrixKit: 8dec5df9b3bb6621b8411ec37f93a0e3abe01db8
|
||||
MatrixSDK: 43d329b4070301f714808f02872ec1747c2f9b7d
|
||||
MatrixKit: df1015cef07d0d01b975cbf74ebd6a144e845d04
|
||||
MatrixSDK: e71064106a64aca924e9b7e76b7f5c50d36cd30f
|
||||
OLMKit: 4ee0159d63feeb86d836fdcfefe418e163511639
|
||||
ReadMoreTextView: 19147adf93abce6d7271e14031a00303fe28720d
|
||||
Realm: 80f4fb2971ccb9adc27a47d0955ae8e533a7030b
|
||||
@@ -212,6 +212,6 @@ SPEC CHECKSUMS:
|
||||
zxcvbn-ios: fef98b7c80f1512ff0eec47ac1fa399fc00f7e3c
|
||||
ZXingObjC: fdbb269f25dd2032da343e06f10224d62f537bdb
|
||||
|
||||
PODFILE CHECKSUM: 198d9f0614bcf132a6aa31bdf8c1beb0360fdea7
|
||||
PODFILE CHECKSUM: 911a1ef6f99d67013adcf34808bfb57a57d24886
|
||||
|
||||
COCOAPODS: 1.10.0
|
||||
|
||||
6
Riot/Assets/Images.xcassets/Authentication/Contents.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "social_login_button_apple.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_apple@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_apple@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 555 B |
|
After Width: | Height: | Size: 983 B |
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "social_login_button_facebook.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_facebook@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_facebook@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "social_login_button_github.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_github@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_github@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 399 B |
|
After Width: | Height: | Size: 698 B |
|
After Width: | Height: | Size: 1015 B |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "social_login_button_gitlab.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_gitlab@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_gitlab@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 628 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "social_login_button_google.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_google@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_google@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
|
After Width: | Height: | Size: 7.8 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "social_login_button_twitter.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_twitter@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "social_login_button_twitter@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 368 B |
|
After Width: | Height: | Size: 686 B |
|
After Width: | Height: | Size: 1.0 KiB |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "call_audio_mute_on_icon.png",
|
||||
"filename" : "Microphone.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "call_audio_mute_on_icon@2x.png",
|
||||
"filename" : "Microphone@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "call_audio_mute_on_icon@3x.png",
|
||||
"filename" : "Microphone@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
@@ -21,6 +21,6 @@
|
||||
"version" : 1
|
||||
},
|
||||
"properties" : {
|
||||
"template-rendering-intent" : "template"
|
||||
"template-rendering-intent" : "original"
|
||||
}
|
||||
}
|
||||
|
||||
BIN
Riot/Assets/Images.xcassets/Call/call_audio_mute_off_icon.imageset/Microphone.png
vendored
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
Riot/Assets/Images.xcassets/Call/call_audio_mute_off_icon.imageset/Microphone@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
Riot/Assets/Images.xcassets/Call/call_audio_mute_off_icon.imageset/Microphone@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 423 B |
|
Before Width: | Height: | Size: 719 B |
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1,17 +1,17 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "call_audio_mute_off_icon.png",
|
||||
"filename" : "Microphone Off.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "call_audio_mute_off_icon@2x.png",
|
||||
"filename" : "Microphone Off@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "call_audio_mute_off_icon@3x.png",
|
||||
"filename" : "Microphone Off@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
@@ -21,6 +21,6 @@
|
||||
"version" : 1
|
||||
},
|
||||
"properties" : {
|
||||
"template-rendering-intent" : "template"
|
||||
"template-rendering-intent" : "original"
|
||||
}
|
||||
}
|
||||
|
||||
BIN
Riot/Assets/Images.xcassets/Call/call_audio_mute_on_icon.imageset/Microphone Off.png
vendored
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
Riot/Assets/Images.xcassets/Call/call_audio_mute_on_icon.imageset/Microphone Off@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
Riot/Assets/Images.xcassets/Call/call_audio_mute_on_icon.imageset/Microphone Off@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
|
Before Width: | Height: | Size: 455 B |
|
Before Width: | Height: | Size: 863 B |
|
Before Width: | Height: | Size: 1.2 KiB |
23
Riot/Assets/Images.xcassets/Call/call_dialpad_backspace_icon.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "Vector.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "Vector@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "Vector@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
Riot/Assets/Images.xcassets/Call/call_dialpad_backspace_icon.imageset/Vector.png
vendored
Normal file
|
After Width: | Height: | Size: 392 B |
BIN
Riot/Assets/Images.xcassets/Call/call_dialpad_backspace_icon.imageset/Vector@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 769 B |
BIN
Riot/Assets/Images.xcassets/Call/call_dialpad_backspace_icon.imageset/Vector@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
23
Riot/Assets/Images.xcassets/Call/call_dialpad_call_icon.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "Union.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "Union@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "Union@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
Riot/Assets/Images.xcassets/Call/call_dialpad_call_icon.imageset/Union.png
vendored
Normal file
|
After Width: | Height: | Size: 423 B |
BIN
Riot/Assets/Images.xcassets/Call/call_dialpad_call_icon.imageset/Union@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 668 B |
BIN
Riot/Assets/Images.xcassets/Call/call_dialpad_call_icon.imageset/Union@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 967 B |
@@ -1,17 +1,17 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "call_hangup_big.png",
|
||||
"filename" : "End Call.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "call_hangup_big@2x.png",
|
||||
"filename" : "End Call@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "call_hangup_big@3x.png",
|
||||
"filename" : "End Call@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
@@ -21,6 +21,6 @@
|
||||
"version" : 1
|
||||
},
|
||||
"properties" : {
|
||||
"template-rendering-intent" : "template"
|
||||
"template-rendering-intent" : "original"
|
||||
}
|
||||
}
|
||||
|
||||
BIN
Riot/Assets/Images.xcassets/Call/call_hangup_large.imageset/End Call.png
vendored
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
Riot/Assets/Images.xcassets/Call/call_hangup_large.imageset/End Call@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
Riot/Assets/Images.xcassets/Call/call_hangup_large.imageset/End Call@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 598 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
26
Riot/Assets/Images.xcassets/Call/call_more_icon.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "iOS (24).png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "iOS (24)@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "iOS (24)@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"properties" : {
|
||||
"template-rendering-intent" : "original"
|
||||
}
|
||||
}
|
||||
BIN
Riot/Assets/Images.xcassets/Call/call_more_icon.imageset/iOS (24).png
vendored
Normal file
|
After Width: | Height: | Size: 217 B |
BIN
Riot/Assets/Images.xcassets/Call/call_more_icon.imageset/iOS (24)@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 337 B |
BIN
Riot/Assets/Images.xcassets/Call/call_more_icon.imageset/iOS (24)@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 301 B |
26
Riot/Assets/Images.xcassets/Call/call_paused_icon.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "Paused.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "Paused@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "Paused@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"properties" : {
|
||||
"template-rendering-intent" : "original"
|
||||
}
|
||||
}
|
||||
BIN
Riot/Assets/Images.xcassets/Call/call_paused_icon.imageset/Paused.png
vendored
Normal file
|
After Width: | Height: | Size: 640 B |
BIN
Riot/Assets/Images.xcassets/Call/call_paused_icon.imageset/Paused@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Riot/Assets/Images.xcassets/Call/call_paused_icon.imageset/Paused@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
23
Riot/Assets/Images.xcassets/Call/call_paused_white_icon.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "Vector.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "Vector@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "Vector@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
Riot/Assets/Images.xcassets/Call/call_paused_white_icon.imageset/Vector.png
vendored
Normal file
|
After Width: | Height: | Size: 323 B |
BIN
Riot/Assets/Images.xcassets/Call/call_paused_white_icon.imageset/Vector@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 552 B |
BIN
Riot/Assets/Images.xcassets/Call/call_paused_white_icon.imageset/Vector@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 877 B |
26
Riot/Assets/Images.xcassets/Call/call_pip_icon.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "picture_in_picture_alt-24px 1.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "picture_in_picture_alt-24px 1@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "picture_in_picture_alt-24px 1@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"properties" : {
|
||||
"template-rendering-intent" : "original"
|
||||
}
|
||||
}
|
||||
BIN
Riot/Assets/Images.xcassets/Call/call_pip_icon.imageset/picture_in_picture_alt-24px 1.png
vendored
Normal file
|
After Width: | Height: | Size: 228 B |
BIN
Riot/Assets/Images.xcassets/Call/call_pip_icon.imageset/picture_in_picture_alt-24px 1@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 307 B |
BIN
Riot/Assets/Images.xcassets/Call/call_pip_icon.imageset/picture_in_picture_alt-24px 1@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 478 B |
BIN
Riot/Assets/Images.xcassets/Call/call_video_icon.imageset/24.png
vendored
Normal file
|
After Width: | Height: | Size: 333 B |
BIN
Riot/Assets/Images.xcassets/Call/call_video_icon.imageset/24@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 498 B |
BIN
Riot/Assets/Images.xcassets/Call/call_video_icon.imageset/24@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 633 B |
23
Riot/Assets/Images.xcassets/Call/call_video_icon.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "24.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "24@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "24@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
@@ -1,17 +1,17 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "call_video_mute_on_icon.png",
|
||||
"filename" : "Video.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "call_video_mute_on_icon@2x.png",
|
||||
"filename" : "Video@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "call_video_mute_on_icon@3x.png",
|
||||
"filename" : "Video@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
@@ -21,6 +21,6 @@
|
||||
"version" : 1
|
||||
},
|
||||
"properties" : {
|
||||
"template-rendering-intent" : "template"
|
||||
"template-rendering-intent" : "original"
|
||||
}
|
||||
}
|
||||
|
||||
BIN
Riot/Assets/Images.xcassets/Call/call_video_mute_off_icon.imageset/Video.png
vendored
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
Riot/Assets/Images.xcassets/Call/call_video_mute_off_icon.imageset/Video@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
Riot/Assets/Images.xcassets/Call/call_video_mute_off_icon.imageset/Video@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 291 B |
|
Before Width: | Height: | Size: 478 B |
|
Before Width: | Height: | Size: 725 B |
@@ -1,17 +1,17 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "call_video_mute_off_icon.png",
|
||||
"filename" : "Video Off.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "call_video_mute_off_icon@2x.png",
|
||||
"filename" : "Video Off@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "call_video_mute_off_icon@3x.png",
|
||||
"filename" : "Video Off@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
@@ -21,6 +21,6 @@
|
||||
"version" : 1
|
||||
},
|
||||
"properties" : {
|
||||
"template-rendering-intent" : "template"
|
||||
"template-rendering-intent" : "original"
|
||||
}
|
||||
}
|
||||
|
||||
BIN
Riot/Assets/Images.xcassets/Call/call_video_mute_on_icon.imageset/Video Off.png
vendored
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
Riot/Assets/Images.xcassets/Call/call_video_mute_on_icon.imageset/Video Off@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
Riot/Assets/Images.xcassets/Call/call_video_mute_on_icon.imageset/Video Off@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 337 B |
|
Before Width: | Height: | Size: 606 B |
|
Before Width: | Height: | Size: 899 B |
@@ -19,5 +19,8 @@
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"properties" : {
|
||||
"template-rendering-intent" : "template"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
23
Riot/Assets/Images.xcassets/Common/share_action_button.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "share_action_button.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "share_action_button@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "share_action_button@3x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
Riot/Assets/Images.xcassets/Common/share_action_button.imageset/share_action_button.png
vendored
Normal file
|
After Width: | Height: | Size: 286 B |
BIN
Riot/Assets/Images.xcassets/Common/share_action_button.imageset/share_action_button@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 436 B |
BIN
Riot/Assets/Images.xcassets/Common/share_action_button.imageset/share_action_button@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 670 B |