James Salter
5219b6be80
Analytics opt in for posthog ( #6936 )
...
* Add a new flag pseudonymousAnalyticsOptIn replacing analyticsOptIn, stored at account level, so people only need to opt in once.
* Show a toast in login to users that have analyticsOptIn set but not yet pseudonymousAnalyticsOptIn prompting them confirm the new method is okay. Update the copy of the existing opt-in toast. Don't notify users that previously opted out.
* Update the copy in settings
* Add a new learn more dialog
* Support a new config flag analyticsOwner which is used in these toasts when explaining which entity the data is sent to ("Help improve %(analyticsOwner)"). If unset, display brand. This allows deployments whose brand differs from the receiver of the analytics to explain the situation to their users (e.g. AcmeCorp badges their app, but explains the data is sent to Element, not them)
* The new opt-in and flags are only used when posthog is configured; prior to that there are no changes to UX or tracking behaviour.
2021-12-06 09:39:33 +11:00
Dariusz Niemczyk
961fec9081
Refactor matrix-linkify module ( #7279 )
...
Refactor the module to make it easier for upgrade and proper separation of code contexts
2021-12-03 14:00:56 +00:00
Michael Telatynski
3b9e39ffca
When accepting DM from People metaspace don't switch to Home ( #7272 )
2021-12-03 11:17:51 +00:00
Michael Telatynski
37bf85489d
Don't inhibit current room notifications if user has Modal open ( #7274 )
2021-12-03 11:02:47 +00:00
Andy Balaam
494af883f3
Hide votes in a poll until you voted ( #7269 )
2021-12-03 10:26:28 +00:00
Germain
f2fee53a0e
Allow stickers to be sent in a Thread ( #7267 )
2021-12-03 08:22:13 +00:00
Andy Balaam
141950d9e6
Ensure my votes from a different device show up ( #7233 )
...
Co-authored-by: Travis Ralston <travpc@gmail.com>
2021-12-02 17:12:18 +00:00
Michael Telatynski
0a99be3d65
Render mini user menu for when space panel is disabled ( #7258 )
2021-12-02 15:44:01 +00:00
Šimon Brandner
d3c556bef7
Remove the Screen sharing is here!
dialog ( #7266 )
2021-12-02 15:36:36 +00:00
Michael Telatynski
f40291d408
Make composer buttons react to settings without having to change room ( #7264 )
2021-12-02 14:09:57 +00:00
Michael Telatynski
b5a488b01b
Fix CallPreview room is null
( #7265 )
2021-12-02 14:07:27 +00:00
Michael Telatynski
aa7cae08aa
Add utility method mxLoginWithAccessToken to login with existing access token ( #7261 )
2021-12-02 13:46:44 +00:00
Michael Telatynski
b69ad0cd0b
Decorate view keyboard shortcuts link as a link ( #7260 )
2021-12-02 13:43:10 +00:00
Michael Telatynski
5169bca570
Improve ease of focusing on Room list Search ( #7255 )
2021-12-02 13:43:02 +00:00
Michael Telatynski
675901f629
Fixes more instances of double-translation ( #7259 )
2021-12-02 13:42:47 +00:00
Dariusz Niemczyk
fda0c2cf79
Fix markdown formatting for bold ( #7257 )
...
* Fix markdown formatting for bold
Fix https://github.com/vector-im/element-web/issues/4674
* I hate you too eslint
2021-12-02 10:56:23 +00:00
Šimon Brandner
ab750aefce
Fix video calls ( #7256 )
...
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
2021-12-02 10:46:48 +00:00
Michael Telatynski
68604e3505
Tweak roving tab index focus behaviour ( #7254 )
2021-12-02 10:24:55 +00:00
Renan Cleyson
0afe141266
Fix textual message stripping new line ( #7239 )
2021-12-02 09:25:12 +00:00
Michael Telatynski
5e77822bcc
Fix broken i18n in Forgot & Change password ( #7252 )
2021-12-01 17:33:55 +00:00
Will Hunt
11aa362eda
Fix setBotPower to not use .content
( #7179 )
...
* Fix setBotPower to not use `.content`
* Simplify currentPl
2021-12-01 17:23:26 +00:00
Germain
3d4ece02e8
Send read receipts for events in thread's timeline ( #7229 )
2021-12-01 15:45:31 +00:00
Michael Telatynski
279caecde7
Autofocus device panel entry when renaming device ( #7249 )
2021-12-01 14:17:52 +00:00
Michael Telatynski
2046991848
Disallow sending empty feedbacks ( #7240 )
2021-12-01 10:59:46 +00:00
Michael Telatynski
a4714829f7
Hide clear cache and reload button if crash is before client init ( #7242 )
2021-12-01 10:54:14 +00:00
Michael Telatynski
5ba2d16ee1
Don't show edit button for hidden edit events ( #7226 )
2021-12-01 10:52:15 +00:00
Michael Telatynski
82c125c170
Update Space Panel scrollable region ( #7245 )
2021-12-01 10:51:54 +00:00
Michael Telatynski
4a6d46b76a
Replace breadcrumbs with recently viewed menu ( #7073 )
2021-12-01 10:50:06 +00:00
Michael Telatynski
757d473971
Fix automatic space switching wrongly going via Home for room aliases ( #7247 )
2021-12-01 10:38:32 +00:00
Šimon Brandner
cbb34d8ac7
Make CallHandler
more EventEmitter
y ( #6704 )
...
* sharedInstance() -> instance
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Use CallState event instead of dispatching
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Simplifie some code
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Use a method to start a call instead of the dispatcher
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Use a method instead of place_conference_call
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Make terminateCallApp() and hangupCallApp() public
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Use hangupAllCalls() instead of the dispatcher
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Make dialNumber(), startTransferToMatrixID() and startTransferToPhoneNumber() public instead of using the dispatcher
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Use answerCall() instead of using the dispatcher
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Use hangupOrReject() instead of the dispatcher
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Update docs
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Improve TS
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Dispatch call_state, see https://github.com/vector-im/element-web/pull/18823#issuecomment-917377277
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Add missing import
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
2021-11-30 18:09:13 +00:00
Dariusz Niemczyk
e3187ed15c
Fix links being parsed as markdown links improperly ( #7200 )
...
* Fix links being parsed as markdown links improperly
Fixes #4674
* Fix a typo
* Fix overriding too much stuff
* Fix parsing
* Remove useless console.log
* Remove unnecessary emph function
* Properly fix tests
* Add some better docs
* Add missing license header
2021-11-30 18:09:05 +00:00
Michael Telatynski
8fe582b094
Tweaks to informational architecture 1.1 ( #7052 )
...
* Move user avatar to Space panel
* Add room list header for 'Home' or 'Space Name' to room list
Add existing Space context menus to room list header
* Re-add pending room join spinner
* Iterate RoomListHeader plus context menu
* Iterate space context menu
* Iterate room list + interactions
* Move DND to new iA model
* Replace composer custom status management with usermenu one
* Cull Quick Actions
* Iterate minimized room list state
* delint
* Merge the RoomListNumResults into the RoomListHeader
* Make the search shortcut prompt semi-bold
* Iterate RoomListHeader based on design review
* Iterate UserMenu based on feedback
* Add name to expanded spacepanel usermenu button
* i18n
* Make room sub list aux button components more generic
* Change left panel explore button to only refer to room directory
* Iterate RoomListHeader
* Fix custom user status input field width in Chrome
* Bring back Notification settings button
* delint
* i18n
* post-merge fix
* iterate pr
* Remove unused state
* update copy
* Apply suggestions from PR review
* delint
* Update invite iconography
* Iterate Space context menu to match Figma
* Fix chevron alignment
* Fix edge case for RoomListHeader on metaspaces
* Wire up general rageshake-driven feedback mechanism
* Add IA1.1 info toast
* add missing alt attribute
* delint
* delint
* tweak ia toast priority
* e2e test account for new toast
* autofocus feedback field and remove old subheading
* tweak copy
* Iterate space panel colours to match Figma
* Iterate PR
* delint
* Fix feedback submission with object setting values
* iterate based on review
* Tweak colours and update splash image
* Tweaks based on review
* Remove room list prompt, made redundant by the big fat `+`
* Fix edge cases around User Menu positioning and dnd
* Add missing import, bad merge?
* Update aria label in e2e test
* Fix room list space rooms context menu explore button behaviour
* Tweak copy
* Revert order of options in the UserMenu
* Tweak copy
* i18n
2021-11-30 18:08:46 +00:00
Element Translate Bot
033c696087
Translations update from Weblate ( #7237 )
...
* Translated using Weblate (Czech)
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3255 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3274 of 3274 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Czech)
Currently translated at 99.8% (3269 of 3274 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 99.7% (3268 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3278 of 3278 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Estonian)
Currently translated at 99.7% (3269 of 3278 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3278 of 3278 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Albanian)
Currently translated at 99.6% (3267 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3278 of 3278 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Dutch)
Currently translated at 98.3% (3222 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (German)
Currently translated at 99.0% (3247 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (German)
Currently translated at 99.0% (3247 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (German)
Currently translated at 99.0% (3247 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (Spanish)
Currently translated at 99.6% (3265 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Dutch)
Currently translated at 98.3% (3223 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Indonesian)
Currently translated at 52.1% (1710 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Indonesian)
Currently translated at 52.1% (1710 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Spanish)
Currently translated at 99.5% (3268 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Albanian)
Currently translated at 99.6% (3273 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Turkish)
Currently translated at 67.9% (2230 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Translated using Weblate (Turkish)
Currently translated at 67.9% (2230 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Translated using Weblate (Turkish)
Currently translated at 67.9% (2231 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Translated using Weblate (Albanian)
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Added translation using Weblate (Frisian)
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Ukrainian)
Currently translated at 70.4% (2314 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/uk/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3285 of 3285 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3285 of 3285 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Albanian)
Currently translated at 100.0% (3285 of 3285 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Hungarian)
Currently translated at 99.3% (3263 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Albanian)
Currently translated at 100.0% (3286 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3286 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3286 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3286 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3286 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3286 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Indonesian)
Currently translated at 53.0% (1743 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Indonesian)
Currently translated at 55.5% (1824 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Indonesian)
Currently translated at 55.5% (1827 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Indonesian)
Currently translated at 55.6% (1828 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Indonesian)
Currently translated at 55.9% (1839 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3286 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3286 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3286 of 3286 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Spanish)
Currently translated at 99.4% (3272 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Albanian)
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Indonesian)
Currently translated at 65.0% (2140 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (German)
Currently translated at 98.5% (3242 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (Indonesian)
Currently translated at 70.1% (2306 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Galician)
Currently translated at 99.3% (3267 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Galician)
Currently translated at 99.9% (3288 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (German)
Currently translated at 98.7% (3249 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (German)
Currently translated at 98.7% (3249 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (German)
Currently translated at 98.8% (3251 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (German)
Currently translated at 98.8% (3251 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (German)
Currently translated at 99.3% (3268 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (German)
Currently translated at 99.3% (3268 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (French)
Currently translated at 99.8% (3285 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/fr/
* Translated using Weblate (Indonesian)
Currently translated at 78.0% (2567 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3289 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Ukrainian)
Currently translated at 70.7% (2326 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/uk/
* Translated using Weblate (Indonesian)
Currently translated at 81.0% (2665 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (French)
Currently translated at 99.9% (3286 of 3289 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/fr/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3292 of 3292 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3292 of 3292 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Albanian)
Currently translated at 100.0% (3292 of 3292 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3294 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3294 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3294 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Indonesian)
Currently translated at 98.0% (3230 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3294 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Spanish)
Currently translated at 99.4% (3275 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Indonesian)
Currently translated at 100.0% (3294 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3294 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3294 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Polish)
Currently translated at 62.3% (2053 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/pl/
* Translated using Weblate (Polish)
Currently translated at 62.3% (2053 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/pl/
* Translated using Weblate (Ukrainian)
Currently translated at 71.4% (2355 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/uk/
* Translated using Weblate (Dutch)
Currently translated at 99.8% (3289 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Galician)
Currently translated at 99.9% (3293 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
* Translated using Weblate (Dutch)
Currently translated at 99.9% (3292 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3294 of 3294 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3304 of 3304 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3304 of 3304 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3304 of 3304 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3304 of 3304 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Indonesian)
Currently translated at 100.0% (3304 of 3304 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Galician)
Currently translated at 99.9% (3303 of 3304 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3304 of 3304 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Albanian)
Currently translated at 100.0% (3304 of 3304 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3306 of 3306 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Swedish)
Currently translated at 98.4% (3254 of 3306 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3306 of 3306 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Indonesian)
Currently translated at 100.0% (3306 of 3306 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Galician)
Currently translated at 99.9% (3305 of 3306 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3306 of 3306 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3306 of 3306 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3306 of 3306 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3306 of 3306 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3307 of 3307 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Indonesian)
Currently translated at 100.0% (3307 of 3307 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3307 of 3307 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3307 of 3307 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3307 of 3307 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Spanish)
Currently translated at 99.2% (3283 of 3308 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3308 of 3308 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3308 of 3308 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Indonesian)
Currently translated at 100.0% (3308 of 3308 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3308 of 3308 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Galician)
Currently translated at 99.9% (3307 of 3308 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3308 of 3308 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
Co-authored-by: waclaw66 <waclaw66@seznam.cz>
Co-authored-by: Besnik Bleta <besnik@programeshqip.org>
Co-authored-by: Weblate <translate@riot.im>
Co-authored-by: sr093906 <spice2wolf@gmail.com>
Co-authored-by: Szimszon <github@oregpreshaz.eu>
Co-authored-by: random <dictionary@tutamail.com>
Co-authored-by: Priit Jõerüüt <riot@joeruut.com>
Co-authored-by: Jeff Huang <s8321414@gmail.com>
Co-authored-by: jelv <post@jelv.nl>
Co-authored-by: Michael Weimann <mail@michael-weimann.eu>
Co-authored-by: Christian Paul <info@jaller.de>
Co-authored-by: Kim Brose <kim.brose@rwth-aachen.de>
Co-authored-by: iaiz <git@iapellaniz.com>
Co-authored-by: Linerly <linerly@protonmail.com>
Co-authored-by: Desc4rtes <cheryyblossom.ai@gmail.com>
Co-authored-by: Sehrail <semihyavas2590@tutanota.com>
Co-authored-by: Fjoerfoks <fryskefirefox@gmail.com>
Co-authored-by: Ihor Hordiichuk <igor_ck@outlook.com>
Co-authored-by: Balázs Meskó <meskobalazs@gmail.com>
Co-authored-by: Bog Rol <bogrol@tutanota.com>
Co-authored-by: XoseM <correoxm@disroot.org>
Co-authored-by: libexus <libexus@gmail.com>
Co-authored-by: Glandos <bugs-github@antipoul.fr>
Co-authored-by: Adrian Środoń <adrian.srodon@gmail.com>
Co-authored-by: m1chj <8hm0nutuhsa9@opayq.com>
Co-authored-by: LinAGKar <linus.kardell@gmail.com>
2021-11-30 17:46:55 +00:00
Michael Telatynski
5ff810b687
Fix room list treeview filtering not ignoring modifier keys ( #7231 )
2021-11-30 16:04:27 +00:00
Renan Cleyson
5c895bf3f6
Fix newline on edit messages with quotes ( #7227 )
2021-11-30 10:25:08 +00:00
Timo
8905c5d2bb
Add unread indicator to the timelineCard header icon ( #7156 )
...
Co-authored-by: J. Ryan Stinnett <jryans@gmail.com>
Co-authored-by: Travis Ralston <travisr@matrix.org>
2021-11-30 11:06:20 +01:00
Michael Telatynski
766d1ee3e8
Guard against null refs in findSiblingElement ( #7228 )
2021-11-30 09:26:38 +00:00
Michael Telatynski
1d2965a111
Tweak bottom of space panel buttons in expanded state ( #7213 )
2021-11-29 20:10:34 +00:00
Timo
82ae39435c
Only show core navigation elements (call/chat/notification/info) when a widget is maximised ( #7114 )
...
Co-authored-by: J. Ryan Stinnett <jryans@gmail.com>
2021-11-29 19:01:47 +01:00
Michael Telatynski
fe24c8ad2a
Improve ThreadPanel ctx menu accessibility ( #7217 )
2021-11-29 17:42:53 +00:00
Michael Telatynski
9727a82a12
Allow filtering room list during treeview navigation ( #7219 )
2021-11-29 17:18:35 +00:00
Michael Telatynski
768e270f3f
Improve room list message previews ( #7224 )
2021-11-29 17:18:04 +00:00
Michael Telatynski
87e8e3d6ef
Fix EmojiPicker lazy loaded rendering bug ( #7225 )
2021-11-29 17:12:56 +00:00
Germain
065b65a764
Hide scrollbar if content height is smaller than scroll node height ( #7220 )
2021-11-29 17:03:53 +00:00
Germain
9d52c23e06
Add option to disable grouping in TimelinePanel ( #7221 )
2021-11-29 17:01:23 +00:00
Michael Telatynski
3f75c6afb0
Prevent duplicate avatars in Event List Summaries ( #7222 )
2021-11-29 16:51:34 +00:00
Timo
4cbed99de3
Add right panel chat timeline ( #7112 )
...
Co-authored-by: J. Ryan Stinnett <jryans@gmail.com>
2021-11-29 17:06:15 +01:00
Timo
8860916225
Fix size of portrait images with the SIZE_NORMAL setting. ( #7188 )
2021-11-29 15:01:54 +01:00
Michael Telatynski
6d3865bdd5
Respect the home page as a context for the Home space ( #7216 )
2021-11-29 11:26:10 +00:00
Michael Telatynski
3ffe752730
Fix RoomUpgradeWarningBar exploding ( #7214 )
2021-11-29 11:06:19 +00:00
Michael Telatynski
dbd148489d
Hide server options hint when disable_custom_urls is true ( #7215 )
2021-11-29 11:06:11 +00:00
Germain
3a2aa9d96c
Polish threads misalignments and UI diversion ( #7209 )
2021-11-29 10:58:34 +00:00
Michael Weimann
f5d32345f4
Improve right panel resize handle usability ( #7204 )
2021-11-29 10:56:09 +00:00
Renan Cleyson
d939e45d00
Fix multiline paragraph rendering as single line ( #7210 )
2021-11-29 10:47:35 +00:00
Michael Telatynski
35d4ec6e80
Fix Manage Restricted Join Rule Dialog for Spaces ( #7208 )
2021-11-29 09:23:25 +00:00
Michael Telatynski
9fefeefc8c
Spaces quick settings ( #7196 )
2021-11-26 15:41:04 +00:00
Andy Balaam
1c6703356d
Highlight my vote even if it was made on another device ( #7202 )
2021-11-26 09:24:34 +00:00
Timo
37828ab084
Maximised widgets always force a call to be shown in PIP mode ( #7163 )
2021-11-25 22:14:19 +01:00
Renan Cleyson
ae0dba4e87
Add view_room
to Action
enum ( #7203 )
...
* Add ViewRoom action to Action enum
Signed-off-by: Renan <renancleyson.f@gmail.com>
* Change view_room occurrences to Action.ViewRoom
Signed-off-by: Renan <renancleyson.f@gmail.com>
* Add missing Action import
2021-11-25 21:49:43 +01:00
Andy Balaam
965539da2d
Show an error dialog if poll creation or voting fails ( #7201 )
...
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
2021-11-25 17:00:13 +00:00
Michael Telatynski
c8765821b5
Group Labs flags ( #7190 )
2021-11-25 16:21:10 +00:00
Germain
e4c00d1123
Open thread view when linking thread root ( #7195 )
2021-11-25 15:40:38 +00:00
Michael Telatynski
508d4d70b6
Fix wrongly showing unpin in pinned messages tile with no perms ( #7197 )
2021-11-25 15:38:11 +00:00
Timo
a0e8c29d85
Make image size constrained by height when using the ImageSize.Large option ( #7171 )
2021-11-24 15:32:47 +01:00
Andy Balaam
d7f3d2791a
Basic tests for PollCreateDialog ( #7193 )
...
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
2021-11-24 13:48:07 +00:00
Germain
392c4ad8d9
Make local echo work for threads ( #7157 )
2021-11-24 08:40:15 +00:00
Andy Balaam
aec09dcad2
Show a spinner while waiting for a poll to be created ( #7189 )
2021-11-23 14:19:48 +00:00
Andy Balaam
359962af6c
Prevent text overlapping on poll options ( #7187 )
2021-11-23 11:16:31 +00:00
Andy Balaam
d705fdd6e4
Display and send votes in polls ( #7158 )
...
Co-authored-by: Travis Ralston <travpc@gmail.com>
2021-11-23 10:27:44 +00:00
Timo
a156ba8be9
Fix video call container size inconsistencies ( #7170 )
2021-11-23 11:13:51 +01:00
Michael Telatynski
cdbe25bd36
Show room context details in forward dialog ( #7162 )
2021-11-23 09:35:01 +00:00
Germain
14b5ed01d3
Change thread panel filtering ( #7169 )
2021-11-23 08:50:14 +00:00
Germain
df032b04e0
Disable typing notifications for threads ( #7180 )
2021-11-23 08:25:58 +00:00
Germain
87201c8bfb
Chat effects fixes for threads ( #7183 )
2021-11-23 08:17:30 +00:00
AndrewFerr
a8a34ea756
Remove leading slash from /addwidget Jitsi confs ( #7175 )
...
* Remove leading slash from /addwidget Jitsi confs
Fixes https://github.com/vector-im/element-web/issues/19839
Signed-off-by: Andrew Ferrazzutti <fair@miscworks.net>
* Make requested changes
Signed-off-by: Andrew Ferrazzutti <fair@miscworks.net>
2021-11-22 18:34:55 -07:00
Germain
925136d016
Disallow KeyVerificationRequest as thread root ( #7182 )
2021-11-22 17:17:05 +00:00
Germain
7658187186
Fix composer focus after pasting ( #7181 )
2021-11-22 17:09:16 +00:00
Matthew Hodgson
b6b7511fd9
Restore 'large' thumbnails to be 800x600 ( #7172 )
...
In order to restore the original behaviour for those who want it, redefine "large" thumbnails to be fit within 800x600px.
This means that timeline screenshots end up typically not being downscaled (which is important given screenshots are our easiest way of copying chunks of history between rooms currently :/). It also means that photos end up nice and big, which was a deliberate aesthetic choice for the app in the past, which some users will want to retain.
2021-11-21 14:16:12 +00:00
Michael Telatynski
7f6f984438
Iterate type definitions ( #7168 )
2021-11-19 17:35:11 +00:00
Michael Telatynski
ddbfebbaa0
Fix automatic composer focus, regressed by threads work ( #7167 )
2021-11-19 17:15:15 +00:00
Andy Balaam
39e47e0375
Limit the length of poll questions and answers to 340 characters ( #7166 )
2021-11-19 14:01:30 +00:00
Andy Balaam
a2c662272e
When we only show one compose button, show upload ( #7165 )
2021-11-19 14:01:07 +00:00
Michael Telatynski
fe4d834c72
Disable op/deop commands where user has no permissions ( #7161 )
2021-11-19 10:49:34 +00:00
Michael Telatynski
52e391a92a
Show space members when not invited even if summary didn't fail ( #7153 )
2021-11-19 10:17:05 +00:00
Michael Telatynski
c2ab593816
Prevent custom power levels from breaking roles & permissions tab ( #7160 )
2021-11-19 10:08:57 +00:00
Michael Telatynski
c457da4c6b
Room Context Menu should respond to tag changes ( #7154 )
2021-11-19 10:07:55 +00:00
Germain
e4d645e360
Hide MFileBody download link for threaded messages ( #7127 )
...
Co-authored-by: Travis Ralston <travisr@matrix.org>
2021-11-19 09:07:12 +00:00
Travis Ralston
28d7a51bb9
Fix improper splice when determining vias for tombstones ( #7159 )
...
`splice` takes one element from the array whereas `slice` takes all after a given point. We want `slice` so we can pick up ipv6 addresses and port numbers.
2021-11-18 13:50:37 -07:00
Germain
256c468c15
Chat Effects & Commands in thread context ( #7138 )
2021-11-18 12:47:11 +00:00
James Salter
e549438e2a
Add logging for a bunch of silently swallowed errors ( #7148 )
2021-11-18 09:01:45 +11:00
James Salter
8b6778e1d3
Pass advanced_disable_decide to stop posthog contacting its decide endpoint ( #7149 )
2021-11-18 09:01:32 +11:00
Travis Ralston
3c06e7f7a0
Add option to change the size of images/videos in the timeline ( #7017 )
...
Co-authored-by: Šimon Brandner <simon.bra.ag@gmail.com>
Co-authored-by: J. Ryan Stinnett <jryans@gmail.com>
Co-authored-by: Timo K <toger5@hotmail.de>
2021-11-17 15:19:30 +00:00
Šimon Brandner
816136de97
Make double-clicking the PiP take you to the call room ( #7142 )
2021-11-17 12:49:43 +00:00
Šimon Brandner
8f13f3882f
Cleanup E2ePadlock
code ( #7144 )
2021-11-17 09:36:10 +00:00
Michael Weimann
f27eb04133
Adjust recovery key button sizes depending on text width ( #7134 )
2021-11-17 09:34:59 +00:00
Renan Cleyson
ac15661c3e
Fix bulk invite button getting a negative count ( #7122 )
...
* Fix bulk invite button getting a negative counter
Signed-off-by: Renan <renancleyson.f@gmail.com>
* Change invites to be count on membership events
Signed-off-by: Renan <renancleyson.f@gmail.com>
* Remove unnecessary bind
* Change invitedRooms state to a set of ids
Signed-off-by: Renan <renancleyson.f@gmail.com>
2021-11-16 21:03:08 +00:00
Timo
645f900a36
Fix maximised / pinned widget state being loaded correctly ( #7146 )
2021-11-16 16:09:19 +00:00
Michael Telatynski
edfebdcdfb
Don't reload the page when user hits enter when entering ban reason ( #7145 )
2021-11-16 14:45:59 +00:00
Timo
734ce97135
Fix timeline text when sharing room layout ( #7140 )
2021-11-16 15:44:19 +01:00
Timo
556cfc7ed8
Add maximise widget functionality ( #7098 )
...
Co-authored-by: J. Ryan Stinnett <jryans@gmail.com>
2021-11-16 15:43:18 +01:00
Josias
2f4f3f2a8c
Add rainfall effect ( #7086 )
...
Just got approval from product. Thanks for the little bit of extra joy :-)
2021-11-16 12:54:40 +00:00
Travis Ralston
8742870b12
Fix js-sdk import ( #7143 )
2021-11-16 11:44:33 +00:00
Element Translate Bot
903455044e
Translations update from Weblate ( #7139 )
...
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (German)
Currently translated at 98.5% (3190 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (Dutch)
Currently translated at 99.4% (3219 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Swedish)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
* Translated using Weblate (Spanish)
Currently translated at 99.9% (3235 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Indonesian)
Currently translated at 27.8% (900 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Galician)
Currently translated at 99.9% (3235 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3228 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Russian)
Currently translated at 97.8% (3168 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/ru/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3238 of 3238 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3230 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Swedish)
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Galician)
Currently translated at 99.9% (3238 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3240 of 3240 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3240 of 3240 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Italian)
Currently translated at 99.9% (3239 of 3240 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Finnish)
Currently translated at 90.0% (2916 of 3240 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/fi/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Hungarian)
Currently translated at 98.8% (3209 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Ukrainian)
Currently translated at 70.7% (2298 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/uk/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Dutch)
Currently translated at 99.0% (3216 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3239 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (French)
Currently translated at 99.9% (3244 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/fr/
* Translated using Weblate (Spanish)
Currently translated at 99.4% (3228 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3256 of 3256 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3256 of 3256 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3256 of 3256 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3248 of 3256 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3256 of 3256 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Hungarian)
Currently translated at 99.2% (3233 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Swedish)
Currently translated at 98.4% (3208 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3258 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3258 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3258 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3258 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3258 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Serbian)
Currently translated at 47.2% (1540 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sr/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3250 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Vietnamese)
Currently translated at 96.1% (3131 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/vi/
* Translated using Weblate (Turkish)
Currently translated at 67.3% (2195 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Translated using Weblate (Turkish)
Currently translated at 67.3% (2195 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Translated using Weblate (Turkish)
Currently translated at 67.3% (2195 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3258 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (German)
Currently translated at 98.8% (3221 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (Indonesian)
Currently translated at 37.0% (1207 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Swedish)
Currently translated at 100.0% (3258 of 3258 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3259 of 3259 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Swedish)
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3252 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (German)
Currently translated at 99.4% (3243 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (German)
Currently translated at 99.4% (3243 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (Spanish)
Currently translated at 99.6% (3250 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Dutch)
Currently translated at 98.6% (3215 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Swedish)
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Indonesian)
Currently translated at 40.5% (1321 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3252 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (French)
Currently translated at 99.9% (3257 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/fr/
* Translated using Weblate (Portuguese (Brazil))
Currently translated at 90.0% (2935 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/pt_BR/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3260 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Turkish)
Currently translated at 67.6% (2205 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Translated using Weblate (Turkish)
Currently translated at 67.6% (2205 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Translated using Weblate (Turkish)
Currently translated at 67.6% (2205 of 3260 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3255 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3262 of 3262 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3274 of 3274 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Czech)
Currently translated at 99.8% (3269 of 3274 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 99.7% (3268 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3278 of 3278 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Estonian)
Currently translated at 99.7% (3269 of 3278 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3278 of 3278 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Albanian)
Currently translated at 99.6% (3267 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3278 of 3278 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Dutch)
Currently translated at 98.3% (3222 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (German)
Currently translated at 99.0% (3247 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (German)
Currently translated at 99.0% (3247 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (German)
Currently translated at 99.0% (3247 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (Spanish)
Currently translated at 99.6% (3265 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Dutch)
Currently translated at 98.3% (3223 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Indonesian)
Currently translated at 52.1% (1710 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3277 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Indonesian)
Currently translated at 52.1% (1710 of 3277 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Improve VoIP UI/UX (#7048 )
* Remove speaking indicator
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Remove mic icon for primary feed
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Remove caching as it doesn't seem to be neccessary
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Add call view buttons colors
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Refactor button code
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Update call view button icons
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* i18n
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Add dialpad icon
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Fix button sizing in PiP
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Fix secondary voice video feed color
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Translated using Weblate (Spanish)
Currently translated at 99.5% (3268 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Albanian)
Currently translated at 99.6% (3273 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Turkish)
Currently translated at 67.9% (2230 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Translated using Weblate (Turkish)
Currently translated at 67.9% (2230 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Add root folder to zip file created by export chat feature (#7097 )
Signed-off-by: Aaron Raimist <aaron@raim.ist>
* Translated using Weblate (Turkish)
Currently translated at 67.9% (2231 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/tr/
* Translated using Weblate (Albanian)
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Added translation using Weblate (Frisian)
* Color cleanup number 10 (#7132 )
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Ukrainian)
Currently translated at 70.4% (2314 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/uk/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3283 of 3283 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
Co-authored-by: Weblate <translate@riot.im>
Co-authored-by: Szimszon <github@oregpreshaz.eu>
Co-authored-by: sr093906 <spice2wolf@gmail.com>
Co-authored-by: waclaw66 <waclaw66@seznam.cz>
Co-authored-by: libexus <libexus@gmail.com>
Co-authored-by: jelv <post@jelv.nl>
Co-authored-by: LinAGKar <linus.kardell@gmail.com>
Co-authored-by: iaiz <git@iapellaniz.com>
Co-authored-by: Jeff Huang <s8321414@gmail.com>
Co-authored-by: Linerly <linerly@protonmail.com>
Co-authored-by: Priit Jõerüüt <riot@joeruut.com>
Co-authored-by: XoseM <correoxm@disroot.org>
Co-authored-by: Besnik Bleta <besnik@programeshqip.org>
Co-authored-by: Nikita Epifanov <NikGreens@protonmail.com>
Co-authored-by: random <dictionary@tutamail.com>
Co-authored-by: Tuomas Hietala <tuomas.hietala@iki.fi>
Co-authored-by: Yi-Jyun Pan <pan93412@gmail.com>
Co-authored-by: Ihor Hordiichuk <igor_ck@outlook.com>
Co-authored-by: Glandos <bugs-github@antipoul.fr>
Co-authored-by: Josias <me@josias.dev>
Co-authored-by: Dinh Quang Tuyen <tuyen.dinh@aarenet.com>
Co-authored-by: Desc4rtes <cheryyblossom.ai@gmail.com>
Co-authored-by: vejetaryenvampir <vejetaryenvampir@airmail.cc>
Co-authored-by: Sehrail <semihyavas2590@tutanota.com>
Co-authored-by: Chasethechicken <neuringe1234@gmail.com>
Co-authored-by: David Mehren <dmehren1@gmail.com>
Co-authored-by: Daimar Stein <steindaimar@gmail.com>
Co-authored-by: Michael Weimann <mail@michael-weimann.eu>
Co-authored-by: Christian Paul <info@jaller.de>
Co-authored-by: Kim Brose <kim.brose@rwth-aachen.de>
Co-authored-by: Šimon Brandner <simon.bra.ag@gmail.com>
Co-authored-by: Aaron R <aaron@raim.ist>
Co-authored-by: Fjoerfoks <fryskefirefox@gmail.com>
2021-11-16 11:36:06 +00:00
Aaron R
6d79b95876
Add root folder to zip file created by export chat feature ( #7097 )
...
Signed-off-by: Aaron Raimist <aaron@raim.ist>
2021-11-15 14:37:16 -07:00
Šimon Brandner
bafeb38472
Improve VoIP UI/UX ( #7048 )
...
* Remove speaking indicator
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Remove mic icon for primary feed
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Remove caching as it doesn't seem to be neccessary
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Add call view buttons colors
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Refactor button code
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Update call view button icons
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* i18n
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Add dialpad icon
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Fix button sizing in PiP
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Fix secondary voice video feed color
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
2021-11-15 17:24:11 +00:00
Timo
431098b56b
Fixes element not remembering widget hidden state per room ( #7136 )
2021-11-15 12:49:34 +01:00
Michael Telatynski
27c3153947
Unified room context menus ( #7072 )
2021-11-15 11:39:25 +00:00
Šimon Brandner
75c02a641b
Fix look of emoji verification ( #7133 )
2021-11-15 09:09:19 +00:00
Šimon Brandner
365950e366
Fix appearance settings crash ( #7131 )
2021-11-12 17:38:04 +00:00
Michael Telatynski
a057ec18ca
Don't keep spinning if joining space child failed ( #7129 )
2021-11-12 15:45:14 +00:00
Germain
894ae6ab88
Fix message load in Thread list ( #7124 )
2021-11-12 12:44:03 +00:00
Germain
77c79467c6
Attach composer IRelation to slash commands content ( #7125 )
2021-11-12 12:43:52 +00:00
Germain
1e50636520
Fix thread panel filtering ( #7126 )
2021-11-12 12:43:41 +00:00
Paulo Pinto
646f87b2db
In forgot password screen, show validation errors inline in the form, instead of in modals ( #7113 )
2021-11-12 11:39:39 +00:00
Michael Telatynski
a16e6dab4d
Guard around SpaceStore onAccountData handler prevEvent ( #7123 )
2021-11-12 10:39:52 +00:00
David Baker
cd1f660d04
Fix missing spaces in threads copy ( #7119 )
...
* Fix missing spaces in threads copy
Fixes: https://github.com/vector-im/element-web/issues/19702
Type: defect
* i18n
2021-11-11 16:42:32 +00:00
Michael Telatynski
155157dba1
Expose power level control for m.space.child ( #7120 )
2021-11-11 16:32:30 +00:00
Germain
e2b59335cf
Implement empty design list ( #7115 )
2021-11-11 13:56:44 +00:00
Michael Telatynski
5ad3261cb2
Implement more meta-spaces ( #7077 )
2021-11-11 13:07:41 +00:00
Germain
dadac386fe
Display threads relation as replies when labs is disabled ( #7109 )
2021-11-11 12:28:56 +00:00
Germain
1de9630e44
Fixes following threads design implementation review ( #7100 )
2021-11-11 11:00:18 +00:00
Paulo Pinto
b8edebecc9
Add PassphraseConfirmField component for registration and password recovery screens ( #7044 )
2021-11-10 18:07:31 +00:00
J. Ryan Stinnett
5226edba4b
Use en_GB spelling of maximise / minimise in labels ( #7111 )
2021-11-10 16:35:43 +00:00
Andy Balaam
431b69ee49
Display started polls in timeline (without votes) (behind labs setting) ( #7088 )
...
* Display started polls in timeline (without votes)
* Update i18n info
* Keep original background colour of poll options, even on hover
* Show full avatar above a poll message
2021-11-10 15:44:57 +00:00
Šimon Brandner
6cae176857
Update powerlevel/role when the user changes in the user info panel ( #7099 )
2021-11-09 09:25:47 +00:00
Šimon Brandner
f9c7417aa1
Fix quote button ( #7096 )
2021-11-08 15:39:39 +00:00
Šimon Brandner
10caa4f9a4
Correctly export ThreadListContextMenu
( #7095 )
2021-11-08 15:39:11 +00:00
Šimon Brandner
8c9e75b16e
Fix avatar disappearing when setting a topic ( #7092 )
...
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
2021-11-08 11:58:26 +00:00
Šimon Brandner
f08c0b3592
Remove sdk.getComponent()
where possible ( #7091 )
2021-11-08 10:27:52 +00:00
Šimon Brandner
6d3ba0eb95
Forget member-list query when switching out of the room ( #7093 )
...
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
2021-11-08 09:57:14 +00:00
Michael Telatynski
2c05883986
Update app slogan to match latest marketing ( #7089 )
2021-11-05 14:34:54 +00:00
Germain
aacea8d87b
Fix MemberAvatar rendering and thread info color ( #7085 )
2021-11-04 17:10:22 +00:00
Timo
a76fa5d624
add feature flag for maximised widgets ( #7084 )
2021-11-04 16:30:07 +01:00
Andy Balaam
9c8e1d32e2
Rename mx_RadioButton to mx_StyledRadioButton to match class name ( #7083 )
2021-11-04 12:57:38 +00:00
Timo
558a6204f1
Fix possible infinite loop on widget start ( #7071 )
...
* fix 15494 infinit loop on widget start error
* change message to error from log
and fix block style
2021-11-04 11:36:20 +01:00
Germain
c18c66f4ed
Resolve thread from room Map rather than incorrect ref ( #7080 )
2021-11-04 10:27:43 +00:00
Michael Telatynski
e26abbba72
Do pre-submit availability check on username during registration ( #6978 )
2021-11-04 10:25:26 +00:00
Faye Duxovni
e31b126daa
Use device IDs for nameless devices in device list ( #7081 )
2021-11-04 06:24:48 -04:00
Germain
bd2f4b6c93
Fix thread switching sometimes stuck ( #7079 )
2021-11-03 18:17:05 +00:00
Germain
38750202ee
Design thread list tiles according to mockups ( #7078 )
2021-11-03 18:05:01 +00:00
Germain
2a20d9a7df
Display relative time in thread panel event tile ( #7068 )
...
* Null-guard for missing root event in thread panel
* Add formatRelativeTime date utility
* Display relative time format in thread panel event tiles
2021-11-03 10:16:50 +00:00
Germain
801eb068d6
Make attachments uploadable to a thread ( #7064 )
2021-11-03 08:43:24 +00:00
Germain
4b66d4a891
Unbreak IRC layout when thread summary is displayed ( #7066 )
2021-11-03 08:26:41 +00:00
Brad Murray
74376f989e
Don't re-sort rooms on no-op RoomUpdateCause.PossibleTagChange ( #7053 )
...
* Don't re-sort rooms on no-op RoomUpdateCause.PossibleTagChange
* Update src/stores/room-list/algorithms/Algorithm.ts
Co-authored-by: Travis Ralston <travpc@gmail.com>
Co-authored-by: Travis Ralston <travpc@gmail.com>
Co-authored-by: Travis Ralston <travisr@matrix.org>
2021-11-02 20:44:54 +00:00
Germain
0bae79d3c3
Improve Thread View UI ( #7063 )
2021-11-02 13:18:51 +00:00
Element Translate Bot
351c426d2a
Translations update from Weblate ( #7069 )
...
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3224 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3226 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3233 of 3233 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3233 of 3233 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Swedish)
Currently translated at 99.4% (3216 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3226 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (French)
Currently translated at 99.9% (3231 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/fr/
* Translated using Weblate (Spanish)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Swedish)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
* Translated using Weblate (Galician)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
* Translated using Weblate (Indonesian)
Currently translated at 22.1% (715 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (German)
Currently translated at 96.5% (3124 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (Dutch)
Currently translated at 99.4% (3215 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Ukrainian)
Currently translated at 71.4% (2312 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/uk/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3235 of 3235 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3235 of 3235 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (German)
Currently translated at 98.5% (3190 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/de/
* Translated using Weblate (Dutch)
Currently translated at 99.4% (3219 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Swedish)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
* Translated using Weblate (Spanish)
Currently translated at 99.9% (3235 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Indonesian)
Currently translated at 27.8% (900 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/id/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3234 of 3234 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Galician)
Currently translated at 99.9% (3235 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3228 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Russian)
Currently translated at 97.8% (3168 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/ru/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3236 of 3236 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3238 of 3238 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3230 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Swedish)
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Galician)
Currently translated at 99.9% (3238 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
* Translated using Weblate (Dutch)
Currently translated at 100.0% (3239 of 3239 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Hungarian)
Currently translated at 100.0% (3240 of 3240 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3240 of 3240 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Italian)
Currently translated at 99.9% (3239 of 3240 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (Finnish)
Currently translated at 90.0% (2916 of 3240 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/fi/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Hungarian)
Currently translated at 98.8% (3209 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
* Translated using Weblate (Ukrainian)
Currently translated at 70.7% (2298 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/uk/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Dutch)
Currently translated at 99.0% (3216 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nl/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3239 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
* Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Italian)
Currently translated at 100.0% (3247 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
* Translated using Weblate (French)
Currently translated at 99.9% (3244 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/fr/
* Translated using Weblate (Spanish)
Currently translated at 99.4% (3228 of 3247 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
* Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3256 of 3256 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
* Translated using Weblate (Czech)
Currently translated at 100.0% (3256 of 3256 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
* Translated using Weblate (Estonian)
Currently translated at 100.0% (3256 of 3256 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
* Translated using Weblate (Albanian)
Currently translated at 99.7% (3248 of 3256 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
Co-authored-by: Besnik Bleta <besnik@programeshqip.org>
Co-authored-by: Priit Jõerüüt <riot@joeruut.com>
Co-authored-by: Weblate <translate@riot.im>
Co-authored-by: sr093906 <spice2wolf@gmail.com>
Co-authored-by: Jeff Huang <s8321414@gmail.com>
Co-authored-by: Szimszon <github@oregpreshaz.eu>
Co-authored-by: waclaw66 <waclaw66@seznam.cz>
Co-authored-by: LinAGKar <linus.kardell@gmail.com>
Co-authored-by: Glandos <bugs-github@antipoul.fr>
Co-authored-by: iaiz <git@iapellaniz.com>
Co-authored-by: random <dictionary@tutamail.com>
Co-authored-by: XoseM <correoxm@disroot.org>
Co-authored-by: Linerly <linerly@protonmail.com>
Co-authored-by: JokerGermany <sp4m.an.joker+git@gmail.com>
Co-authored-by: jelv <post@jelv.nl>
Co-authored-by: Ihor Hordiichuk <igor_ck@outlook.com>
Co-authored-by: libexus <libexus@gmail.com>
Co-authored-by: Nikita Epifanov <NikGreens@protonmail.com>
Co-authored-by: Tuomas Hietala <tuomas.hietala@iki.fi>
Co-authored-by: Yi-Jyun Pan <pan93412@gmail.com>
2021-11-02 12:05:31 +00:00
Germain
8f8d1f6094
Null-guard for missing root event in thread panel ( #7067 )
2021-11-02 11:57:03 +00:00
Timo
773b147a03
Add a condition to only activate the resizer which belongs to the clicked handle ( #7055 )
2021-11-02 11:48:50 +00:00
Germain
4cbef216e7
Restore composer focus after event edit ( #7065 )
2021-11-02 09:59:30 +00:00
Šimon Brandner
57fae01991
Improve the look of tooltips ( #7049 )
2021-11-02 09:41:33 +00:00
Travis Ralston
73731cc478
Polls: Creation form & start event ( #7001 )
...
* PSFD-423: Permission check for polls dialog
* PSFD-423: Implement compound scrollable dialog and skeleton create poll
* PSFD-325: Ask the question
* PSFD-328: Ask for options
* PSFD-423: Ensure form submission semantics work for dialogs
* PSFD-328: Option semantics
* Can delete all option to end up with zero
* Minimum 2 to submit the form
* PSFD-316: Send poll start event
* Appease the linter
* PSFD-328: Reduce padding between options to account for field size
* Iterate per design
* Fix submission
2021-11-01 23:44:42 -06:00
Šimon Brandner
5202c0a237
Show a gray shield when encrypted by deleted session ( #6119 )
2021-11-01 17:28:23 +00:00
Nolan Darilek
022588fe06
Silence some widgets for better screen reader presentation. ( #7057 )
2021-11-01 09:01:18 +00:00
Faye Duxovni
d61a83a7b9
Remove all directional quotation marks in the codebase ( #7059 )
2021-10-29 21:59:21 -04:00
Faye Duxovni
71244f3b3c
Add more checkbox styles ( #7058 )
...
Add a "kind" param for StyledCheckbox, allowing designers to choose different styles of checkbox as needed. In addition to the preexisting default kind (now called Solid), there's an Outline kind with a green checkmark and a transparent fill. This is used in the device trust view, since the default checkbox style looks too much like the green "verified" shield and it's awkward to have those next to each other.
2021-10-29 21:57:32 -04:00
Faye Duxovni
d88b8efd19
Improve device list in Security & Privacy settings ( #7004 )
...
Overhaul the device list in the "Security and Privacy" settings tab to include device trust status, provide buttons for verifying unverified devices, and improve overall usability and style. This should now be the primary interface for checking and changing the trust status of your own devices, rather than looking at your own user profile in the right panel.
2021-10-29 18:11:39 -04:00
Nolan Darilek
ea54ea89d4
Make message separator more accessible. ( #7056 )
2021-10-29 15:20:10 +00:00
Nolan Darilek
98edc467e0
Give each room directory entry the listitem
role to correspond with the containing list
. ( #7035 )
2021-10-29 13:30:05 +01:00
James Salter
3defb863b3
Automatic error reporting ( #7046 )
...
* Enable sentry global handlers if automaticErrorReporting is on
* Pass the exception through on session restore error
Passing the exception object itself through to the BugReportDialog means a stack trace can be correctly recorded in Sentry
2021-10-29 08:34:25 +00:00
Aaron Raimist
d9e94737f2
Fix merge conflict
...
Signed-off-by: Aaron Raimist <aaron@raim.ist>
2021-10-28 19:49:41 -05:00
Aaron Raimist
bc1dd6fedf
Merge branch 'develop' into sort-imports
2021-10-28 19:44:21 -05:00
Aaron Raimist
2112089146
Move comments back to correct location
...
Signed-off-by: Aaron Raimist <aaron@raim.ist>
2021-10-28 19:41:45 -05:00
Travis Ralston
3f3e4ff674
Don't apply message bubble visual style to media messages ( #7040 )
...
* PSFD-457: Don't apply message bubble visual style to media messages
* Match corner rounding for images
2021-10-28 08:32:30 -06:00
Timo
5736fea5f3
Implement RequiresClient capability for widgets ( #7005 )
2021-10-28 13:17:04 +01:00
Andy Balaam
68b64564c0
Respect the system high contrast setting when using system theme ( #7043 )
...
* Respect the system high contrast setting when using system theme
* Restore correct behaviour of getEffectiveTheme
2021-10-28 13:01:50 +01:00
Michael Telatynski
82807434b8
Remove redundant duplicate mimetype field which doesn't conform to spec ( #7045 )
2021-10-28 09:40:38 +01:00
Aaron Raimist
d867ee1a50
Fix merge error
...
Signed-off-by: Aaron Raimist <aaron@raim.ist>
2021-10-27 22:03:02 -05:00
Aaron Raimist
f738ad51bd
Autofix
...
Signed-off-by: Aaron Raimist <aaron@raim.ist>
2021-10-27 21:53:12 -05:00
Aaron Raimist
f3867ad0a9
Merge branch 'develop' into sort-imports
2021-10-27 21:50:56 -05:00
Michael Telatynski
27e16362b6
Make join button on space hierarchy action in the background ( #7041 )
2021-10-27 15:24:31 +01:00
Andy Balaam
abbc39cdec
Add a high contrast theme (a variant of the light theme) ( #7036 )
...
* Enable choosing a high contrast variant of the Light theme
* Updates to high contrast theme to match design and show focus
* Adjust the outline-offset to match designs
* Don't draw an outline around the active tab
* Prevent cropping of outlines on buttons
* Use the correct colour for links
* Change light grey text to be darker in high contrast theme
* Use a darker text colour in admin panel
* Adjust background colours of back button and font slider
2021-10-27 14:31:54 +01:00
James Salter
8170697bbf
Add a global mxSendSentryReport so we can debug sentry from the console ( #7042 )
2021-10-27 13:05:58 +00:00
Paulo Pinto
6a3fb5cbb4
Add EmailField component for login, registration and password recovery screens ( #7006 )
...
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
2021-10-27 09:52:34 +01:00
Timo
82c2102ccb
Respect the roomState right container request for the Jitsi widget ( #7033 )
2021-10-26 17:36:42 +01:00
Michael Telatynski
a4e20c7b41
Improve timeline message for restricted join rule changes ( #6984 )
2021-10-26 15:28:22 +01:00
Michael Telatynski
04c06b6aa8
Improve RovingTabIndex & Room List filtering performance ( #6987 )
2021-10-26 12:16:50 +01:00
Michael Telatynski
39e61c4fa3
Fix cannot read length of undefined for room upgrades ( #7037 )
2021-10-26 10:21:27 +01:00
Michael Telatynski
0fa9638681
Remove outdated Spaces restricted rooms warning ( #6927 )
2021-10-26 10:01:14 +01:00
Rafael Gonçalves
a1029df901
Add history entry before completing emoji ( #7007 )
...
Signed-off-by: Rafael Goncalves <rafaelgoncalves@riseup.net>
2021-10-25 14:21:59 -06:00
Michael Telatynski
92df0a35a9
null-guard space store getParents relation lookup ( #7029 )
2021-10-25 13:55:08 +00:00
Michael Telatynski
be0fa6da7b
Fix removing a room from a Space and interaction with m.space.parent
( #6944 )
2021-10-25 14:06:00 +01:00
Šimon Brandner
c3ad8b4eed
Cleanup re-dispatching around timelines and composers ( #7023 )
...
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
2021-10-25 11:43:54 +00:00
Michael Telatynski
87dc2e8141
Fix ModalManager reRender racing with itself ( #7027 )
2021-10-25 12:37:59 +01:00
Šimon Brandner
64c3f0a9b1
Fix fullscreening a call while connecting ( #7019 )
2021-10-25 11:40:44 +01:00
Michael Telatynski
e3d1615169
Make /msg <message> param optional for more flexibility ( #7028 )
2021-10-25 11:40:33 +01:00
Michael Telatynski
ead2a5152f
Add decoration to space hierarchy for tiles which have already been j… ( #6969 )
2021-10-25 11:40:06 +01:00
Šimon Brandner
ceb4c7e368
Add insert link button to the format bar ( #5879 )
2021-10-25 10:56:55 +01:00
Šimon Brandner
75c7daa2c9
Handle no selected screen when screen-sharing ( #7018 )
2021-10-25 10:44:37 +01:00
Šimon Brandner
c5bd1fb32d
Convert /src/async-components/views/dialogs/security
to TS ( #6923 )
...
* Convert RecoveryMethodRemovedDialog to TS
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Convert NewRecoveryMethodDialog to TS
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Convert ImportE2eKeysDialog to TS
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Convert ExportE2eKeysDialog to TS
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Convert CreateSecretStorageDialog to TS
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Convert CreateKeyBackupDialog to TS
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
* Fix types
This is somewhat hacky though I don't know of a better way to do this
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
2021-10-22 21:32:16 -06:00
Aaron Raimist
b90a712919
lint
...
Signed-off-by: Aaron Raimist <aaron@raim.ist>
2021-10-22 18:11:59 -05:00
Aaron Raimist
027b3660bb
Manual fixes
...
Signed-off-by: Aaron Raimist <aaron@raim.ist>
2021-10-22 17:49:12 -05:00
Aaron Raimist
bdc56be863
Auto fix
...
Signed-off-by: Aaron Raimist <aaron@raim.ist>
2021-10-22 17:23:37 -05:00
Travis Ralston
39e98b9d7f
Always render disabled settings as disabled ( #7014 )
...
This is to prevent user confusion about whether or not a setting exists, or even what its value is. By rendering it with `disabled=true` the user is at least aware that the setting is set to a specific value, though we could (and should) do better in the future to communicate *why* a setting is disabled.
2021-10-22 11:30:14 -06:00
James Salter
a1a19c7433
disable debug in Sentry ( #7011 )
2021-10-22 15:51:19 +00:00
Rafael Gonçalves
12ad01db51
Show passphrase input label ( #6992 )
2021-10-22 15:50:11 +01:00
James Salter
a4e3c4090c
Use VERSION as sentry release (set by packaging scripts) ( #7008 )
...
This will be undefined for dev builds.
2021-10-22 15:06:01 +01:00
Germain
e20ac7bf1e
Implement deep-linking for threads (matrix.to) ( #7003 )
2021-10-22 09:30:36 +01:00
Travis Ralston
bc32f05fcb
Add config types and utility function for SSO redirect config ( #6976 )
...
* Add config types and utility function for SSO redirect config
* Appease the linter
2021-10-21 08:35:00 -06:00
Andy Balaam
c73127c35c
Remove unused code left from extracting ThemeChoicePanel ( #7002 )
2021-10-21 09:59:34 +01:00
Germain
35b5109c2a
Fix threads broken layout ( #6997 )
2021-10-20 18:14:24 +01:00
James Salter
115c6e8357
Sentry uses RELEASE from webpack to correspond with sourcemap uploader ( #6996 )
...
use RELEASE from webpack to correspond with sourcemap uploader
2021-10-20 16:20:50 +00:00
David Baker
7c50cfeab8
Fix direction override characters breaking member event text direction ( #6999 )
...
Strip RLO & LRO chars from display names when rendering text for
member events.
See https://github.com/matrix-org/matrix-js-sdk/pull/1992 - also
necessary here because we use the display name in the event content
rather than from the member object sanitised by the js-sdk.
2021-10-20 16:14:11 +00:00
Robin Townsend
2ee732b84d
Update style of composer format bar to match message action bar ( #6351 )
...
Signed-off-by: Robin Townsend <robin@robin.town>
2021-10-20 09:19:54 -06:00
Andy Balaam
4b903b9fbd
Break ThemeChoicePanel into a separate component ( #6998 )
...
* Break ThemeChoicePanel into a separate component
* Tests for ThemeChoicePanel
* i18n fixes
* Fix copyright for ThemeChoicePanel
2021-10-20 14:58:27 +00:00
Travis Ralston
d188d32423
Add a developer mode flag and use it for accessing space timelines ( #6994 )
...
Fixes https://github.com/vector-im/element-web/issues/19416
2021-10-20 06:55:22 -06:00
Andy Balaam
96bd052ecf
Improve visibility of font size chooser ( #6988 )
...
* Improve visibility of font size chooser
* Move slider dot sizes into variables
* Use a standard font size instead of percentage in Slider
* Use shorthand for padding in FontScalingPanel
* Change Slider text pos to px to be consistent when font changes
* Cleaner dot size for Slider selection
2021-10-20 13:41:27 +01:00
Rafael Gonçalves
1fa4c40db9
Remove redundant text in verification dialogs ( #6993 )
...
* Remove redundant text
Signed-off-by: Rafael Goncalves <rafaelgoncalves@riseup.net>
* Run yarn i18n
Signed-off-by: Rafael Goncalves <rafaelgoncalves@riseup.net>
2021-10-19 22:36:08 -06:00
CicadaCinema
23295718e3
Position toggle switch more clearly ( #6914 )
...
* Position toggle switch more clearly
* attempt to revert changes, align switch to title instead
* remove unused import, add missing property
Co-authored-by: ColonisationCaptain <52425971+ColonisationCaptain@users.noreply.github.com>
2021-10-19 15:28:11 -06:00
David Baker
01c4d3eede
Fix conflicting CSS on syntax highlighted blocks ( #6991 )
...
Fixes https://github.com/vector-im/element-web/issues/19445
2021-10-19 18:43:29 +01:00
Michael Telatynski
427afc83aa
Fix couple of Spaces regressions ( #6989 )
2021-10-19 10:10:34 -06:00
Michael Telatynski
a9c27e22b5
Handle and i18n M_THREEPID_IN_USE during registration ( #6986 )
2021-10-19 15:31:07 +00:00
Paulo Pinto
9c786717b8
Validate email address in forgot password dialog ( #6983 )
2021-10-19 16:22:27 +01:00
Michael Telatynski
9becc392dd
For space invite previews, use room summary API to get the right member count ( #6982 )
2021-10-19 16:17:09 +01:00
Michael Telatynski
974f45930c
Simplify Space Panel notification badge layout ( #6977 )
2021-10-19 16:11:53 +01:00
Germain
694ec946e2
Allow quote-reply in thread view element-web ( #6959 )
2021-10-19 16:05:34 +01:00
Andy Balaam
d39002338d
Merge pull request #6985 from andybalaam/break-out-font-scaling-panel
...
Break out font size settings to a separate component
2021-10-19 15:51:09 +01:00
Andy Balaam
d70a706c15
i18n updates
2021-10-19 15:25:33 +01:00
Andy Balaam
79edceca89
Remove unused fields
2021-10-19 15:23:45 +01:00
Andy Balaam
4ad32b16ea
Break out font size settings to a separate component
2021-10-19 14:50:09 +01:00
Travis Ralston
c0c5641181
Merge pull request #6975 from matrix-org/travis/runtime-errors
...
Fix runtime react errors for various parts of the app
2021-10-19 07:35:15 -06:00
Michael Telatynski
d743e3d1d6
Merge pull request #6980 from matrix-org/t3chguy/fix/19162
2021-10-19 11:14:16 +01:00
Weblate
71438121f1
Merge branch 'origin/develop' into Weblate.
2021-10-19 09:20:52 +00:00
waclaw66
0f64dbfac0
Translated using Weblate (Czech)
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
2021-10-19 09:20:51 +00:00
sr093906
91a8cf93eb
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
2021-10-19 09:20:50 +00:00
LinAGKar
e9a0c058b2
Translated using Weblate (Swedish)
...
Currently translated at 98.9% (3197 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
2021-10-19 09:20:48 +00:00
Szimszon
6ba1fa0eb4
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
2021-10-19 09:20:40 +00:00
Michael Telatynski
e8b998c19c
Use prettier hsName during 3pid registration where possible
2021-10-19 09:43:34 +01:00
Germain Souquet
df407ef3a8
Fix EventTileSummary layout for message bubbles
2021-10-19 09:31:28 +01:00
Germain Souquet
9319f07291
Revert "Fix threads with bubbles rendering ( #6971 )"
...
This reverts commit a2bc090607
.
2021-10-19 09:16:40 +01:00
Weblate
95717d8f01
Merge branch 'origin/develop' into Weblate.
2021-10-19 07:16:23 +00:00
Michael Telatynski
37949efb61
Merge pull request #6967 from matrix-org/t3chguy/fix/18768
2021-10-19 08:16:19 +01:00
Weblate
b88417c2e4
Merge branch 'origin/develop' into Weblate.
2021-10-19 07:16:15 +00:00
Michael Telatynski
780f088c5d
Merge pull request #6966 from matrix-org/t3chguy/rs/6600
2021-10-19 08:16:11 +01:00
Weblate
acfb7bc151
Merge branch 'origin/develop' into Weblate.
2021-10-19 07:16:07 +00:00
XoseM
4a71ee3384
Translated using Weblate (Galician)
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
2021-10-19 07:16:07 +00:00
Jeff Huang
6bf015cb3b
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
2021-10-19 07:16:05 +00:00
sr093906
cbb0eaf61d
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
2021-10-19 07:16:02 +00:00
Michael Telatynski
6ea32279a3
Merge pull request #6972 from matrix-org/t3chguy/fix/19359
2021-10-19 08:15:54 +01:00
Travis Ralston
7babdd9c9d
Ternary
2021-10-18 15:40:06 -06:00
Weblate
fa3114ef15
Merge branch 'origin/develop' into Weblate.
2021-10-18 19:50:10 +00:00
Dariusz Niemczyk
f8b6f13105
Fix timeline scrolling when sending threads ( #6974 )
...
Fix https://github.com/vector-im/element-web/issues/19412
2021-10-18 20:50:06 +01:00
Travis Ralston
dad1d3f131
Fix runtime react errors for various parts of the app
...
These are just the ones that were causing console flooding on reload in development.
* Elements in a list need a `key`
* `super()` needs to be supplied with the same props as the parent
* `<div>` (AccessibleButton) cannot be a descendant of `<p>` - this was a problem in the NewRoomIntro "Add topic" button
* `label` is a non-boolean property and cannot receive "false"
2021-10-18 13:47:42 -06:00
Weblate
d052506795
Merge branch 'origin/develop' into Weblate.
2021-10-18 18:52:45 +00:00
Priit Jõerüüt
c1bb02e7e6
Translated using Weblate (Estonian)
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
2021-10-18 18:52:45 +00:00
Szimszon
0966883ed2
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
2021-10-18 18:52:43 +00:00
David Baker
98ba3fd6e6
Merge pull request #6973 from matrix-org/dbkr/upgrade_highlightjs
...
Upgrade highlight.js
2021-10-18 19:52:34 +01:00
David Baker
c2fb745188
Appease type checker
2021-10-18 19:44:05 +01:00
David Baker
e9f5fa7858
Update usage here too
2021-10-18 19:39:43 +01:00
David Baker
2b7ea16c2d
Upgrade highlight.js
...
Major version bump for highlight.js. Update usage of deprecated function & some cleanups.
2021-10-18 19:32:20 +01:00
Weblate
b75ce7a70f
Merge branch 'origin/develop' into Weblate.
2021-10-18 16:12:45 +00:00
David Baker
df5f4409ad
Merge pull request #6965 from SimonBrandner/feature/end-of-line-emoji
...
Convert emoticon to emoji at the end of a line on send even if the cursor isn't there
2021-10-18 17:12:41 +01:00
Weblate
0d8810d86f
Merge branch 'origin/develop' into Weblate.
2021-10-18 16:11:36 +00:00
Germain
77e6e1c0ab
Merge pull request #6960 from matrix-org/gsouquet/rename-replythread
2021-10-18 17:11:31 +01:00
waclaw66
cbc31e36b4
Translated using Weblate (Czech)
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
2021-10-18 16:09:54 +00:00
random
649141ca2e
Translated using Weblate (Italian)
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
2021-10-18 16:09:52 +00:00
Viacheslav Raskulin
c7d248302f
Translated using Weblate (Russian)
...
Currently translated at 97.9% (3165 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/ru/
2021-10-18 16:09:49 +00:00
Michael Telatynski
eeec9b16c0
Fix edge case behaviour of the space join spinner for guests
2021-10-18 16:31:39 +01:00
Weblate
c88dcecda5
Merge branch 'origin/develop' into Weblate.
2021-10-18 14:41:14 +00:00
random
5983e164b3
Translated using Weblate (Italian)
...
Currently translated at 99.6% (3221 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/it/
2021-10-18 14:41:14 +00:00
Dariusz Niemczyk
a2bc090607
Fix threads with bubbles rendering ( #6971 )
...
Fixes https://github.com/vector-im/element-web/issues/18958
2021-10-18 15:41:05 +01:00
Weblate
8c89ecc0e5
Merge branch 'origin/develop' into Weblate.
2021-10-18 14:28:15 +00:00
waclaw66
ab8c8d99d8
Translated using Weblate (Czech)
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
2021-10-18 14:28:15 +00:00
Ekaterina Gerasimova
695e110794
Improve capitalisation in string
...
Remove random mid-sentence capitalisation in Security Phrase dialog. The
dialog will change at some point but for now lets make it more human
readable.
Fixes #19429
2021-10-18 15:28:07 +01:00
Weblate
13ec305557
Merge branch 'origin/develop' into Weblate.
2021-10-18 12:26:25 +00:00
sr093906
479ebca607
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (3232 of 3232 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hans/
2021-10-18 12:26:25 +00:00
Andy Balaam
4f3d761984
Merge pull request #6968 from andybalaam/cryptographypanel-table
...
Convert CryptographyPanel to a table
2021-10-18 13:26:16 +01:00
Weblate
473eca8315
Merge branch 'origin/develop' into Weblate.
2021-10-18 12:09:09 +00:00
Dariusz Niemczyk
1d6c9fa8da
Add threads ViewInRoom context button ( #18955 ) ( #6947 )
2021-10-18 12:09:01 +00:00
Weblate
be83751bcd
Merge branch 'origin/develop' into Weblate.
2021-10-18 12:08:28 +00:00
Dariusz Niemczyk
2c66403b3c
Replace console.info with logger.info
...
Related https://github.com/vector-im/element-web/issues/18425
2021-10-18 14:08:23 +02:00
Dariusz Niemczyk
5290afcc4c
Replace console.warn with logger.warn
...
Related https://github.com/vector-im/element-web/issues/18425
2021-10-18 14:08:23 +02:00
Dariusz Niemczyk
5e73a212f4
Replace console.error with logger.error
...
Related https://github.com/vector-im/element-web/issues/18425
2021-10-18 14:08:23 +02:00
Dariusz Niemczyk
9c594a8a96
Replace console.logs to logger.log
...
Related https://github.com/vector-im/element-web/issues/18425
2021-10-18 14:08:23 +02:00
Dariusz Niemczyk
12632318ef
Add missing parenthesis for await calls
2021-10-18 14:08:23 +02:00
Andy Balaam
13d6456200
Convert CryptographyPanel to a table
2021-10-18 09:36:16 +01:00
Weblate
821ec3161f
Merge branch 'origin/develop' into Weblate.
2021-10-18 08:34:59 +00:00
Andy Balaam
f05e35bd94
Merge pull request #6958 from andybalaam/separate-cryptography-setting-component
...
Break 'Cryptography' settings into a separate component
2021-10-18 09:34:55 +01:00
Michael Telatynski
6a23aee725
Swap order of private space creation and tweak copy
2021-10-18 09:30:57 +01:00
Michael Telatynski
c0d9c69f16
Fix leave space cancel button exploding
2021-10-18 09:22:44 +01:00
Andy Balaam
78890ab3aa
Run i18n generation
2021-10-18 09:20:58 +01:00
Weblate
f9f5286692
Merge branch 'origin/develop' into Weblate.
2021-10-18 08:17:45 +00:00
Michael Telatynski
4d63e1239b
Merge pull request #6962 from CicadaCinema/patch-3
2021-10-18 09:17:40 +01:00
Weblate
7e480cfc52
Merge branch 'origin/develop' into Weblate.
2021-10-18 07:44:16 +00:00
Priit Jõerüüt
d8e4e066d8
Translated using Weblate (Estonian)
...
Currently translated at 100.0% (3231 of 3231 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/et/
2021-10-18 07:44:16 +00:00
Besnik Bleta
b8a9afcbee
Translated using Weblate (Albanian)
...
Currently translated at 99.7% (3223 of 3231 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sq/
2021-10-18 07:44:13 +00:00
XoseM
efbf686526
Translated using Weblate (Galician)
...
Currently translated at 100.0% (3231 of 3231 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/gl/
2021-10-18 07:44:08 +00:00
waclaw66
2f8642928f
Translated using Weblate (Czech)
...
Currently translated at 100.0% (3231 of 3231 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/cs/
2021-10-18 07:44:01 +00:00
Imre Kristoffer Eilertsen
f9ae5d0adb
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 55.6% (1798 of 3231 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/nb_NO/
2021-10-18 07:43:59 +00:00
Jeff Huang
9fc43b3037
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (3231 of 3231 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/zh_Hant/
2021-10-18 07:43:47 +00:00
LinAGKar
91ecde9a20
Translated using Weblate (Swedish)
...
Currently translated at 97.9% (3165 of 3231 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
2021-10-18 07:43:45 +00:00
joshua
84baafd4bf
Translated using Weblate (Swedish)
...
Currently translated at 97.9% (3165 of 3231 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/sv/
2021-10-18 07:43:43 +00:00
Nikita Epifanov
a8df632305
Translated using Weblate (Russian)
...
Currently translated at 97.8% (3163 of 3231 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/ru/
2021-10-18 07:43:41 +00:00
Szimszon
6076d65181
Translated using Weblate (Hungarian)
...
Currently translated at 100.0% (3231 of 3231 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/hu/
2021-10-18 07:43:35 +00:00
iaiz
600c4adaf4
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (3231 of 3231 strings)
Translation: Element Web/matrix-react-sdk
Translate-URL: https://translate.element.io/projects/element-web/matrix-react-sdk/es/
2021-10-18 07:43:30 +00:00
Šimon Brandner
1935620e43
Convert emoticon to emoji at the end of a line on send even if the cursor isn't there
...
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
2021-10-17 09:40:42 +02:00
CicadaCinema
a9c9e5b778
appease the linter
2021-10-16 14:58:10 +01:00
CicadaCinema
7b893366f2
Add spacing to Room settings - Notifications subsection
2021-10-16 14:52:29 +01:00
Rafael Goncalves
2fb802eb9e
Move error message closer to password field
...
Signed-off-by: Rafael Goncalves <rafaelgoncalves@riseup.net>
2021-10-15 16:01:35 -03:00
Germain Souquet
5a7c0d87b6
Rename ReplyThread to ReplyChain to avoid confusion with m.thread
2021-10-15 17:42:44 +01:00
Andy Balaam
0941b38b5d
Name CryptographyPanel CSS classes consistent with style
2021-10-15 16:09:36 +01:00