Commit Graph

4022 Commits

Author SHA1 Message Date
Boris Melnik 06f7f1668d fix(ContactsView): Fix layout height
Closes: #5686
2022-05-12 12:23:53 -04:00
Pascal Precht d70a23cb9a fix(CommunityService): ensure communitySettings aren't mistakenly
overwritten

When communities are edited, status-go sends a signal with the community
description, to ensure the network is updated to the latest changes.

However, that community description doesn't include `communitySettings`.
When we then compose the `CommunityDto` object from that signal, it will have
a default certain settings to `false` which might actually be `true`.

The result is that data in memory is incorrect.

To ensure we don't run into this issue, we check whether the attached
settings have an id, if they don't, we know the settings do not
originate from the signal data, meaning we can use the settings we
already have.
2022-05-12 12:20:23 -04:00
Pascal Precht c55c93ed59 fix(LoginView): add button to add existing user
Also ensure both buttons, add existing and add new user are navigating
to the correct screens as per latest design discussions.
2022-05-12 12:19:14 -04:00
Stefan edbaccd6bf feature(profile): use an image cropper to set the profile picture 2022-05-12 15:05:10 +03:00
Stefan a54a999f4c fix(StatusImageCrop): output an error if trying to set cropRect without image 2022-05-12 15:05:10 +03:00
Stefan 31fbc47053 feat(shared/EditCroppedImagePanel): Generic modal to support image cropping
To be used by

- User image
- Community logo
- Community banner

Updates: #5118
2022-05-12 15:05:10 +03:00
Anthony Laibe 12cb76699c fix(@chat): move cursor to the end when edit message
fixes #5546
2022-05-12 13:36:15 +02:00
Anthony Laibe a0bebeb78b fix(@communities): Better error message when failing to import
community

fixes #5382
2022-05-12 13:29:15 +02:00
Anthony Laibe 35d52fe63b fix(@general): bump status go 2022-05-12 13:22:37 +02:00
Boris Melnik 8f4e50d6a7 fix(SendModal): Send 0.0 amount if amount input is empty
Closes: #5474
2022-05-12 11:14:29 +03:00
Anthony Laibe 50fef581a5 fix(@wallet): apply order to token list 2022-05-12 09:52:01 +02:00
Noelia 0f912a66b8 fix(Messaging/Contacts): The titles of folders in Settings-Messaging are shown very close to the search field
Added more top margin in tab component.

Fixes #5288
2022-05-11 20:10:30 +02:00
Noelia 26e901d986 fix(Onboarding/Password): Add/correct hard keys behaviour in Password related onboarding screens
Following changes are done in `ConfirmPasswordView`, `CreatePasswordView` and `ChangePasswordModal`:

- Pressing enter in forms should submit the form if view is ready to submit.
- Pressing tab in inputs should jump to next one.

Fixes #5626
2022-05-11 19:40:22 +02:00
Noelia 0886a305a4 fix(Onboarding/ConfirmationPassword): Remove validation error and enable button only when pw is the expected
Removed code related to validation.

Modified enable button condition (just only when password is exactly the same than the previous introduced one).

Fixes #5611
2022-05-11 18:53:07 +02:00
Michal Iskierko 146ff7a48b fix(@desktop/onboarding): Clearing error message when password confirmation is empty
Fix #5319
2022-05-11 17:58:49 +02:00
Michal Iskierko 0bb594d05f fix(@desktop/onboarding): Improve password validation and showing don't match error
Fix #5319
2022-05-11 17:58:49 +02:00
Boris Melnik 991e04ef95 fix(Browser): Add new send modal
Closes: #5475
2022-05-11 14:34:27 +03:00
Anthony Laibe 630c2359d2 fix(@chat): unfurl twitter
fixes #5603
2022-05-10 16:20:48 -04:00
Jonathan Rainville 9586ff9dc5 fix: fix emoji icon picker and create channel inputs
Fixes #5673
2022-05-10 16:10:38 -04:00
Michal Iskierko 2d72525645 fix(@desktop/chat): Use different check icon in chat activity center
Fix #5468
2022-05-10 15:15:08 -04:00
Noelia cbe9ca17a3 feat(Password): Change minimum password length to 10
As agreed with security team and from spec https://github.com/status-im/feature-specs/pull/38, password length has been updated from 6 to 10.
2022-05-10 15:13:37 -04:00
Anthony Laibe a78fc0ded6 fix(@chat): channel/category name max length
fixes #5634
2022-05-10 14:52:30 -04:00
Khushboo Mehta 044fe38bda fix(@desktop/settings): System appearance illustration is wrong.
fixes #5671
2022-05-10 14:49:49 -04:00
Sale Djenic 2904018173 fix(@desktop/settings): content on the right side for all subsections need to have the same geometry
Structure of the all subsection of the settings section has the same
high level structure

Fixes #5650
2022-05-10 20:47:29 +02:00
Khushboo Mehta 2046eb0e4b chore: Bump StatusQ version 2022-05-10 19:02:50 +02:00
Noelia e4feaa39ac fix(Onboarding/PasswordScreens): UI small fixes (texts, sizes, positions)
- Updated finalise button text with the British spelling.

- Password warning texts in onboard flow updated to correct size.

- Updated StatusQ that fixes button change size after loading.

- Updated position of the message error in the Confirmation Screen.

Fixes #5607, #5339, #5606 and #5610

NOTE: Updated status-desktop compilation error after StatusQ commit 1a5990f24bd3f2aba87ab62880e39113c63ba015
2022-05-10 16:43:15 +02:00
Anthony Laibe 5dd0ad36be feat(@communities): create general channel when creating community 2022-05-10 15:43:32 +02:00
Noelia 4790f7b4c5 chore(ui-test): Added data folder
Added specific data folder for login test (PoC).
2022-05-10 15:16:33 +02:00
Pascal Precht c772a31114 fix(ChatContentView): make replying to messages work again
There was a bug that no handler was attached to the `onShowReply()`
signal, which is necessary to hydrate the chat input with reply data.

Fixes #5497
2022-05-10 10:54:46 +02:00
Pascal Precht 1b7be6060d ui: revamp login view to match latest designs
This includes changing the account selector from being a modal to
a drop down menu, which also includes an option to generate a new
account.

In addition, it adds the status logo plus a dedicated headline.

Closes: #5623 #5624
2022-05-10 10:53:25 +02:00
Boris Melnik fcd728ed94 fix(InviteFriends): Fix width for names
Closes: #5528
2022-05-09 17:04:46 -04:00
Iuri Matias ab66de2606 Update ui/app/AppLayouts/Chat/views/ChatView.qml
Co-authored-by: Jonathan Rainville <rainville.jonathan@gmail.com>
2022-05-09 17:01:21 -04:00
Alexandra Betouni 5954256616 fix(Chat): renamed members section to "Members" instead of "Last seen"
Closes #5645
2022-05-09 17:01:21 -04:00
mishkarogachev 79642f1c6f fix(Chat): Remove extra button to clear text in gif search
Closes: #5432
2022-05-09 16:56:07 -04:00
mishkarogachev 3cf43c864f feat(@desktop/onboarding): Update Biometrics screen text and image, hide back button
Closes #5602
2022-05-09 16:53:15 -04:00
Jonathan Rainville 26efddfef2 fix(onboarding): re-add warning when trying to re-import same key
Possible a fix for #5529
2022-05-09 09:39:33 -04:00
Anthony Laibe d4ef0ff5e8 fix(@wallet): fix generate account from 0.3 2022-05-09 10:14:50 +02:00
Pascal Precht 7d099327ae feat(ChatView): add tooltips to chat action buttons
Closes #5136
2022-05-09 08:58:24 +02:00
Sale Djenic dfefeae026 fix(@desktop/onboarding): it's impossible to delete a profile image on the onboarding page
Fixes #5240
2022-05-07 12:58:32 +02:00
Anthony Laibe e9e8ced591 fix(@community): fix edit community save 2022-05-06 09:41:46 +02:00
Anthony Laibe 1f2521586b fix(@chat): press esc leave create chat view
fixes #5605
2022-05-05 15:46:27 +02:00
Anthony Laibe fb8a3f9100 fix(@onboarding): missing seed phrase headline 2022-05-05 11:13:51 +02:00
Pascal Precht b72f53e62c fix(StatusEmojiPopup): remove unnecessary spacing
Fixes #5433
2022-05-04 17:45:11 +02:00
Noelia 59631cad8f feat(Language & Currency): Currency settings screen
Added currency picker into `LanguageView.qml`.

Added `category` and `imageSource` property to existing `CurrenciesStore.qml`. Renamed `code` to `shortName`.

Added `currenciesModel` property to `WalletStore.qml`.

Added wallet store into `LanguageView.qml` in order to link to the currencies model.

Added some tokens in the currencies store.

Made wallet and any currency related UI code that uses current currency use the new Display Currency value.

Removed no longer used wallet/settings related files.

Closes #5385
2022-05-04 16:16:59 +02:00
Anthony Laibe 952f398042 fix(@onboarding): asset for import seed phrase 2022-05-03 18:07:12 +02:00
Anthony Laibe 2ca3bad935 fix(@onboarding): align button with design 2022-05-03 09:50:01 +02:00
Noelia 78f6df4d06 feat(uiTest): Data changes to fit new display name req. 2022-04-25 08:21:51 -04:00
Anthony Laibe 6d1e0f8cc3 fix(@wallet): Hide ens settings section if no wallet 2022-04-25 13:09:00 +02:00
Anthony Laibe 5e05a7613c fix(@settings): fix Gas selector for snt
fixes #5572
2022-04-21 14:05:31 +02:00
Anthony Laibe bda2114209 feat(@chat): disable tx in chat when no wallet
fixes #5461
2022-04-21 11:51:52 +02:00