Sale Djenic
ec7710490d
feat(@desktop/keycard): accounts and wallet services updated
...
New procs added:
- accounts service `createAccountFromMnemonic`
- accounts service `convertToKeycardAccount`
- accounts service `verifyPassword`
- wallet service `fetchBalanceForAddress`
2022-09-06 15:06:13 +02:00
Michal Iskierko
d6a061a517
feat(@desktop/chat): Add setting image in group chat
...
Image and cropping information are sent to status-go.
Issue #6466
2022-09-01 12:25:53 +02:00
Pascal Precht
fa5b862d2c
feat(CreateCommunityPopup): introduce file selector and category panels
2022-08-26 10:59:41 +02:00
Khushboo Mehta
0515152bd7
feat(@desktop/wallet): Add Token Detail View
...
fixes #6491
2022-08-23 10:52:26 +02:00
Michal Iskierko
346af7c245
feat(@desktop/chat): Add requests sections to members tab of the community management
...
Add tabs: "Pending requests", "Rejected"
Add getting declined requests from status-go
Issue #6279
2022-08-22 13:54:36 +02:00
Lukáš Tinkl
395d5548b4
feat(CreateCommunityPopup): Add Community Banner to Create Community Modal
...
as status-go already supports parsing the banner JSON string, just pass
it along the NIM backend
Closes #6726
2022-08-18 10:15:04 +02:00
Patryk Osmaczko
61a55db156
feat(settings/profile): integrate social links and bio endpoints
...
closes : #6796
2022-08-17 13:18:32 +02:00
MishkaRogachev
e67d649c46
feat(desktop): New invite to community popup with message
2022-08-12 11:54:51 +04:00
Michal Iskierko
8b09eec506
feat(@desktop/chat): Handle group chat colors changes
...
Use new status-go function to update group chat details.
Changes in RenameGroupPopup to handle choosing colors and images.
Changes in EditCroppedImagePanel to handle background component.
Issue #5982
2022-08-08 11:10:54 +02:00
Sale Djenic
db44bc25d3
feat(@desktop/keycard): initial keycard implementation
...
Keycard implementation affected onboarding/login flows.
- new user - first run - new keys into keycard
- new user - first run - import seed phrase into keycard
- old user - first run - login importing from keycard
- login the app using keycard
Fixes : #5972
2022-08-04 09:50:04 +02:00
Michal Iskierko
92c1e9ce18
feat(@desktop/chat): Add sections to members tab of the community management
...
Add tabs: "All members" and "Banned"
Add unban functionality
Issue #5979
2022-08-03 09:48:09 +02:00
Anthony Laibe
6b9b5f20a8
fix(@community): Fix community join bubble
...
fixes #6133
When restarting the app, the community is not in the list
and data needs to be requested
2022-07-24 12:31:53 -04:00
Sale Djenic
f9244e2c9f
fix(@desktop/onboarding): Onboarding/Login flow improvements
...
- startup, login and onboarding modules merged into the single one
- `State` class introduced which is the base class for all states, every state
determines what is the next state in each of 3 possible actions, and what
is the previous state, if it has previous state
- `StateWrapper` class is introduced as a convenient way to expose
`State`'s props and deal with them on the qml side
- startup module maintains states as a linked list and there are few convenient
methods to move through the list `onBackActionClicked`, `onNextPrimaryActionClicked`
`onNextSecondaryActionClicked`, `onNextTertiaryActionClicked`
- redundant code removed
Fixes : #6473
2022-07-22 08:13:27 +02:00
Anthony Laibe
cd5042e389
feat(@wallet): multi transaction
2022-07-15 12:48:23 +02:00
Khushboo Mehta
35a5ab57f0
feat(@desktop/wallet): Implement the advanced/custom view with simple same network transfers
...
fixes #6268
2022-07-14 16:28:38 +02:00
Anthony Laibe
ff12c85f07
fix(@wallet): move estimation time to status-go
2022-07-12 14:44:06 +02:00
Pascal Precht
51b661386a
refactor: always request access to join community
...
We no longer send community invites to users, instead we just share the
community and let users request access.
That request will either be automatically or manually accepted by the owner/admin.
Depends on https://github.com/status-im/status-go/pull/2682
Closes #5115
2022-07-08 13:18:37 +02:00
Richard Ramos
75a3ff858c
feat: check for updates (using status-go)
2022-07-07 09:54:55 -04:00
Anthony Laibe
97a553ff8c
chores(@general): bump status-go
2022-07-07 11:47:22 +02:00
Boris Melnik
bb2c9e02c2
feat(communities): Add muting category methods
...
Closes : #5975
2022-07-06 19:48:44 +03:00
Jonathan Rainville
1e7c648300
feat: contact verification request and trust status
...
feat: contact verification
fix: add remove identity verified btn
fix: add toast message
feat: received verification request model
feat: finish identity verification flow
Fixes #4784
2022-07-06 10:43:33 -04:00
Anthony Laibe
ce7340b9a5
feat(@wallet): multi network history
2022-07-04 09:58:39 +02:00
Boris Melnik
6adb809ba0
fix(backend): Add some text to image message
...
Closes : #6094
2022-06-29 17:08:59 +03:00
MishkaRogachev
e30ba7e760
feat(@community): Add tags to communities
...
Close #5680
2022-06-24 19:44:35 +03:00
Sale Djenic
60ed62231e
fix(@desktop/wallet): estimated time for transaction is always Unknown
...
Fixes #5938
2022-06-22 16:02:25 -04:00
Boris Melnik
58eff9adf2
fix(communities): Fix broken `Request to join required` property
...
Closes : #6073
2022-06-21 13:55:57 -04:00
Pascal Precht
a634df9246
feat(chat): handle sync clear history messages
...
When histories are cleared on a paired devices, that clearance should be
synced and reflected in other paired devices as well.
This commit ensures desktop calls the correct API to clear histories,
which will then cause an implicit sync.
Partially addresses #5201
2022-06-20 12:47:29 +02:00
Pascal Precht
858caeca73
fix: handle bookmarks syncing signals properly
...
Bookmarks were only synced when devices were synced, but not when
bookmarks were added/removed/updated.
To account for this, there's are new messenger APIs in status-go
proposed here: https://github.com/status-im/status-go/pull/2709
Based on those APIs, desktop can now add/remove/update bookmarks and the
changes are automatically synced to other devices in real-time.
This commit also ensures that changes from other devices with regards to
bookmarks are handled and updated on the current device.
Partially addresses #5201
2022-06-20 12:01:23 +02:00
Khushboo Mehta
8d3fad8342
feat(@desktop/wallet): Multichain QR Code
...
Implements the new Recieve Modal with multichain functionality
closes #5735 , #6057
2022-06-17 01:27:35 +05:30
mishkarogachev
7a14cf5640
fix(@desktop/profile): Contact requests should support a message
...
Close #5846
2022-06-15 11:56:05 -04:00
Patryk Osmaczko
cdd06b05eb
feat(@desktop/group-chat): remove explicit join for groups
...
closes : #5717
2022-06-14 15:21:56 -04:00
Anthony Laibe
00ed4f9c44
feat(@wallet): multi transaction simple view
2022-06-09 15:22:24 +02:00
Patryk Osmaczko
6cda41e183
feat(@community): add backend for intro message
...
issue: #5746
2022-06-04 12:00:11 +02:00
Sale Djenic
583f947eb6
chore(@desktop/general): unused `signals.nim` removed from backend
2022-06-03 11:58:08 +02:00
Noelia
ed39690071
feat(CommunitiesPortal): Communities Portal first UI approach
...
Closes #4936
2022-06-02 08:24:02 -04:00
Stefan
9f633f0fcc
feat(Communities/Settings): Communities banner editing
...
Use the generic EditCroppedImagePanel for banner cropping
- Depends on status-go IdentityImage banner extension
fixes #5118
2022-05-31 12:26:33 +03:00
Sale Djenic
aeba272ae4
fix(@desktop/notifications): move notifications settings to `status-go`
...
Fixes #5649
2022-05-26 12:07:19 +02:00
Richard Ramos
92d047173f
fix: broadcast update when changing status
...
Fixes #5798
2022-05-25 14:10:30 -04:00
Anthony Laibe
db3722cd4f
fix(@general): user status go service to migrate account
2022-05-24 13:27:06 +02:00
Anthony Laibe
451e650b09
fix(@general): keystore management
2022-05-24 13:27:06 +02:00
Pascal Precht
f14717da18
feat: handling `mailserver.not.working` signal
...
This makes Status Desktop aware of the `mailserver.not.working` signal.
When emitted by status-go, desktop will show a popup that informs the
user about the connection failure.
Furthermore, users can then decide to either retry (same as just closing
the popup as retrying already happens by default), or pick another
pinned mailserver, for which they'll get redirected to the messaging
settings panel.
Closes #5166
2022-05-20 13:03:47 +02:00
Pascal Precht
8c496e0505
feat(CommunitySettings): add checkbox to allow members to pin messages
...
This adds a checkbox to configure whether or not community members are
allowed to pin any message of a community channel, based on the newly
introduced `CommunityAdminSettings` that are introduced in https://github.com/status-im/status-go/pull/2668
Closes #5662
2022-05-19 14:53:40 +02:00
Khushboo Mehta
86cfbec8f9
feat(@desktop/wallet): Add support for custom derivations path
...
Make getDerivedAddresses call async
Show pending and error states when gettting the derived addresses
fixes #5700 , #5699
2022-05-18 14:16:57 +02:00
Khushboo Mehta
0ee0c8ddd4
feat(@desktop/wallet): Add has activity to the derived addresses in wallet
...
fix #5655
2022-05-18 13:42:00 +02:00
Anthony Laibe
6830a02248
fix(@chat): image don t overlap placeholder
...
* fix overlap
* remove placeholder text
2022-05-17 12:25:01 -04:00
Richard Ramos
b3cda3e755
fix: download images
2022-05-12 15:07:29 -04:00
Jonathan Rainville
0358b6bf80
feat(community): make on request comm a check box and remove ensOnly
...
Fixes #5660
2022-05-12 13:31:48 -04: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
Sale Djenic
3cdc1358ba
fix(@desktop/contacts): multiple contact related issues fixed
...
Fixes #5354 #5225 #5198
2022-04-13 16:40:34 -04: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
3f71e1fe87
feat(@wallet): move visible token to status go
2022-04-13 10:12:58 +02:00
Pascal Precht
8d4aa7dd56
feat: introduce communities settings and history archive support UI
...
control
2022-04-12 11:25:46 +02:00
Pascal Precht
1d934c7b26
feat: introduce advanced option to enable/disable community archive
...
protocol
2022-04-12 11:25:18 +02:00
Pascal Precht
10f6d9e89b
feat: reload community chats when history messages have been downloaded
...
This introduces the new signal types related to the community archive
protocol and makes Status Desktop listen to the download event which is
emitted by status-go every time history archives were downloaded.
If the downloaded archive covers data within the recent 7 days, it
causes Status Desktop to reload the corresponding chats.
2022-04-11 15:54:08 +02:00
Patryk Osmaczko
f2898b6bf7
chore(@desktop): add utility to get color id for pubkey
2022-04-08 14:04:21 -04:00
Richard Ramos
f749f84886
Allow the usage of compressed chat keys when sending contact requests
...
Fixes #5359
2022-04-07 10:23:08 -04:00
Anthony Laibe
b84b56c3c0
refactor(@general): move all token related to status-go
2022-04-04 13:07:36 -04:00
Patryk Osmaczko
53c38624ef
chore: add utility to compress pubkey
2022-04-04 12:55:31 -04:00
Patryk Osmaczko
ce36ee90ca
chore(@desktop): rename ambiguous fields `identicon`->`icon`
2022-04-04 17:50:48 +02:00
Patryk Osmaczko
25c6a5f5ca
chore(@desktop): remove identicon related code
2022-04-04 17:50:48 +02:00
Jonathan Rainville
666c865112
feat(chat): implement new getChats API for the backend
...
Fixes #4878 but new issues will be created to split the implementation
2022-04-01 15:53:49 -04:00
Jonathan Rainville
e1b9332ab3
refactor(user-list): implement getMembers to populate user list
...
Fixes #5122
2022-03-31 14:01:47 -04:00
Anthony Laibe
b4606d0363
fix(@desktop): network serialization
2022-03-30 15:12:48 +01:00
Anthony Laibe
08131e1d2d
feat(@wallet): move suggested fees to status-go
2022-03-30 09:41:10 +01:00
Richard Ramos
ff12bec631
feat: switch fleet
2022-03-29 22:02:00 -04:00
Anthony Laibe
33216d5bb5
chores: move to backend part1
2022-03-28 12:11:34 -04:00
Anthony Laibe
6ebd8cb1cc
chores(@backend): Add macros for api
2022-03-28 12:11:34 -04:00
Anthony Laibe
acb38a4c4c
fix(@wallet): cache price to avoid multiple call
...
fixes #5144
2022-03-25 14:30:57 +00:00
Richard Ramos
d7fb0af91d
refactor: remove active mailserver disconnection
2022-03-24 16:46:46 -04:00
Richard Ramos
c6b76f063d
refactor: remove history request
2022-03-24 16:46:46 -04:00
Noelia
8f996992b2
feat(onboarding / privacy): Integrate password validation (zxcvbn lib) in new password screens
...
Use new `PrivacyStore` method getPasswordStrengthScore and link it to the new password strength bar value.
Used backend/general to call to `status-go` method and services/general to define the common `GetPasswordStrengthScore` service.
Added onboarding chain to get password strength score information from `OnboardingStore` to `status-go` call.
Closes #5096
2022-03-24 18:17:04 +01:00
Anthony Laibe
4b91888433
feat(@wallet): move fetch prices
...
also make only one call rather than one call per couple token/currency
2022-03-23 08:54:37 +00:00
Sale Djenic
1bf5882f25
refactor(@desktop/general): remove interfaces for services
...
Fixes #5093
2022-03-23 09:00:57 +01:00
Patryk Osmaczko
9e0b8c5e90
chore: make (emoji/color)Hash direct status_go call
2022-03-18 21:12:39 +01:00
Noelia
317ac06e43
feat(privacy): Added password strength calls
...
Added all necessary methods to call to a new `status-go` endpoint that allows to get the password strength quality info.
Closes #4980
2022-03-18 13:43:01 +01:00
Patryk Osmaczko
e130953634
feat(@desktop): use emoji hash and identicon ring
...
Closes : #4782
2022-03-16 18:34:57 +01:00
Richard Ramos
b07910e27f
feat: display name
2022-03-14 15:17:04 -04:00
Anthony Laibe
0908b13ad5
feat(@settings): new dapp permissions view
2022-03-14 13:48:57 +01:00
Khushboo Mehta
6e0471c943
bash: py: command not found
...
feat(@desktop/wallet): Add emoji to Wallet accounts.
Support added to:
1. Wallet list
2. Adding a new account
3. Editing an account
fixes #4926
2022-03-13 08:54:28 -04:00
Jonathan Rainville
aef8d0c4ab
feat(community): enable choosing and changing community channel color
...
Fixes #4953
2022-03-11 16:01:22 -05:00
Alexandra Betouni
8cab96fd24
feat(desktop/chat): Updated create new chat/group flow
...
As per new designs
Closes #4781
2022-03-11 14:31:51 -05:00
Richard Ramos
3c7779305b
feat: move stickers business logic to status-go
2022-03-09 12:16:42 -04:00
Jonathan Rainville
be9d2f94e2
feat: enable emojis as channel icons
...
Fixes #4809
2022-03-08 15:15:25 -05:00
Khushboo Mehta
44a8b6df0a
fix(@desktop/wallet): add/re-add buy crypto feature
...
fixes #4925
2022-03-02 18:45:22 +01:00
Anthony Laibe
bfda545646
refactor: add back eip1559
2022-03-01 15:10:23 -05:00
Richard Ramos
8c95e65ebf
fix: code review
2022-02-21 17:30:50 -04:00
Richard Ramos
ae09dfb04b
feat: use http server for images and identicons
2022-02-21 17:30:50 -04:00
Sale Djenic
4f65286ead
refactor(@desktop/browser): move provider logic to `status-go`
...
Fixes #4693
2022-02-21 15:22:22 +01:00
Anthony Laibe
92bc1fdab1
feat(@wallet): toggle network
2022-02-18 15:25:55 +01:00
Anthony Laibe
1d83b64fae
feat(@wallet): Enable multi network for wallet account
2022-02-15 11:01:45 +01:00
Jonathan Rainville
16e7d16c8c
feat(communities): re-implement community link unfurling
...
Fixes #4788
2022-02-14 17:03:41 -05:00
Richard Ramos
bee583d448
fix: prefix
2022-02-14 14:26:02 -05:00
Anthony Laibe
7268ec3773
feat: prepare token service for multichain
2022-02-14 14:37:42 +01:00
Jonathan Rainville
b7bfd334f3
feat(ens): [re-add] new backend
...
Fixes #4694
also add back pending transaction
2022-02-10 09:24:38 -05:00
Patryk Osmaczko
ba7a6d5d34
style: remove trailing whitespaces
2022-02-09 11:16:23 +01:00
Richard Ramos
16328823a9
refactor: add reorderCommunityCategories proc to backend
2022-02-08 14:26:07 -04:00
Sale Djenic
7ff994a46a
chore(@desktop/general): check for updates updated
...
- unused `updates.nim` removed from `backend`
- `ens.nim` updated accordingly to what we have there before
- the way how we're checking for updates is updated
2022-02-07 18:59:24 +01:00
Sale Djenic
cd8bd4147c
feat(@desktop/wallet): move create accounts to `status-go`
...
Fixes #4670
2022-02-07 18:51:39 +01:00
Sale Djenic
e3b349fe51
feat(@desktop/general): move token balance retrieval to status go
...
Fixes #4677
2022-02-07 16:23:26 +01:00
Anthony Laibe
cc77573652
chores(@general): remove backend warnings
2022-02-04 19:31:26 +01:00