Commit Graph

3998 Commits

Author SHA1 Message Date
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
Anthony Laibe 538cd6ae06 feat(@wallet): prevent to duplicate token
fixes #5567
2022-04-21 11:51:37 +02:00
Boris Melnik 1ac4ea4158 fix(CommunityPopup): Fix copy to clipboard
Closes: #5577
2022-04-21 11:19:08 +03:00
Anthony Laibe efd6412266 fix(@wallet): Token not displayed after upgrade
fixes #5563
2022-04-18 16:53:05 +02:00
Boris Melnik cf221eb06e fix(Chat): Add emoji popup to edit message input
Closes: #5527
2022-04-18 13:59:46 +03:00
Boris Melnik 3b43c44989 fix(Settings): Fix wallet scroll sizes
Closes: #5513
2022-04-18 13:59:30 +03:00
Boris Melnik 33d2e5a961 fix(ImportCommunity): Fix menu width
Closes: #5380
2022-04-18 13:59:15 +03:00
Jakub Sokołowski ce1436ac15 ci: remove caching of dependencies
Upgrade of Jenkins to `2.343` has introduced a security fix that breaks
caching plugin when it's configured to store cache on Master host:
https://issues.jenkins.io/browse/JENKINS-67173

Sine the [Caching plugin](https://plugins.jenkins.io/jobcacher/) hasn't
been upgraded in 5 years the only good temporary workaround is just drop
caching of dependencies like Nim compiler entirely.

In the future we can try some other caching methods.

Related: https://github.com/status-im/nimbus-eth2/pull/3594

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2022-04-15 12:45:27 +02:00
Sale Djenic d94abcb31e fix(@desktop/onboarding): the profile image doesn't look good on the onboarding page
Fixes #5241
2022-04-14 12:10:53 +02:00
Richard Ramos c90aa97e8b bump: status-go 2022-04-13 18:48:10 -04:00
Sale Djenic 3cdc1358ba fix(@desktop/contacts): multiple contact related issues fixed
Fixes #5354 #5225 #5198
2022-04-13 16:40:34 -04:00
Jonathan Rainville 31728940c4 fix(act-center): fix changing section when clicking go to settings
Fixes #5426
2022-04-13 14:51:56 -04:00
Anthony Laibe 6145b4b620 fix(@wallet): loading collectibles 2022-04-13 14:51:38 -04:00
Richard Ramos 717ca08d31 fix: don't save the node config twice when switching fleets 2022-04-13 14:51:07 -04:00
Pascal Precht afecbc1796 fix(main/controller): ensure mailserversService is initialized
Fixes #5353
2022-04-13 17:16:46 +02:00
Anthony Laibe 4b54751b4f fix(@wallet): hide password from add watch only 2022-04-13 16:23:49 +02:00
Anthony Laibe 5ba3e541d7 fix(@wallet): Update add account modal close policy
fixes #5446
2022-04-13 16:10:19 +02:00
Khushboo Mehta 29db292472 fix(@desktop/wallet): Can't add an address to saved addresses
fixes #5534
2022-04-13 13:54:36 +02:00
Khushboo Mehta feaa91d062 feat(@desktop/wallet): Add derivation path to wallet account generation
fixes #5074
2022-04-13 11:17:53 +02:00
Anthony Laibe a379c34ceb fix(@wallet): link to tx hash 2022-04-13 11:17:53 +02:00
Pascal Precht 348516d5a5 chore: add safeguards when checking for community data in response
Also remove unnecessary signals
2022-04-13 10:22:55 +02:00
Anthony Laibe 3f71e1fe87 feat(@wallet): move visible token to status go 2022-04-13 10:12:58 +02:00
Noelia 45f147fa95 fix(Chat/ActivityCenter): Activity center context menu keeps moving position
Fixes #5469.
2022-04-12 18:23:24 -04:00
Michal Iskierko 4b6c113b85 fix(desktop/profile): Exposing cropping parameters to InsertDetailsView
Fix #5238
2022-04-12 18:22:56 -04:00
Michal Iskierko f067d59612 fix(desktop/profile): Ensure that the file is selected in FileDialog
Fix #5238
2022-04-12 18:22:56 -04:00