From 9541fc1033490c13a52fabc4eebd50474d0b855d Mon Sep 17 00:00:00 2001 From: Sylvia van Os Date: Sun, 25 Jun 2017 22:13:00 +0200 Subject: [PATCH 01/14] Mirror local video feed --- .../vector/css/matrix-react-sdk/views/voip/_VideoView.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss b/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss index 8f23ef6ba9..eb4353835b 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/voip/_VideoView.scss @@ -42,4 +42,5 @@ limitations under the License. .mx_VideoView_localVideoFeed video { width: auto; height: 100%; -} \ No newline at end of file + transform: scale(-1, 1); +} From 84d1f838f01480987981786c6cfca4a568058489 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 23 Oct 2017 11:39:21 +0100 Subject: [PATCH 02/14] make filtering case-insensitive Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/components/views/dialogs/DevtoolsDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/views/dialogs/DevtoolsDialog.js b/src/components/views/dialogs/DevtoolsDialog.js index 9c5948b4a0..9300a1855c 100644 --- a/src/components/views/dialogs/DevtoolsDialog.js +++ b/src/components/views/dialogs/DevtoolsDialog.js @@ -237,7 +237,7 @@ class RoomStateExplorer extends React.Component { if (this.state.eventType === null) { Object.keys(this.roomStateEvents).forEach((evType) => { // Skip this entry if does not contain search query - if (this.state.query && !evType.includes(this.state.query)) return; + if (this.state.query && !evType.toLowerCase().includes(this.state.query.toLocaleLowerCase())) return; const stateGroup = this.roomStateEvents[evType]; const stateKeys = Object.keys(stateGroup); @@ -258,7 +258,7 @@ class RoomStateExplorer extends React.Component { const stateGroup = this.roomStateEvents[evType]; Object.keys(stateGroup).forEach((stateKey) => { // Skip this entry if does not contain search query - if (this.state.query && !stateKey.includes(this.state.query)) return; + if (this.state.query && !stateKey.toLowerCase().includes(this.state.query.toLocaleLowerCase())) return; const ev = stateGroup[stateKey]; rows.push( - {!this.state.message && } + { !this.state.message && } ; } @@ -83,7 +83,7 @@ class SendCustomEvent extends React.Component { } _additionalFields() { - return
; + return
; } _onChange(e) { @@ -94,15 +94,15 @@ class SendCustomEvent extends React.Component { if (this.state.message) { return
- {this.state.message} + { this.state.message }
- {this._buttons()} + { this._buttons() }
; } return
- {this._additionalFields()} + { this._additionalFields() }
@@ -117,7 +117,7 @@ class SendCustomEvent extends React.Component {