3079 Commits

Author SHA1 Message Date
yqrashawn
68d2d6bdfb
feat: delete message for new design (#2922) v0.115.3 2022-11-17 18:11:58 +08:00
Patryk Osmaczko
2b6c0da1c7 chore: fix vscode test run 2022-11-17 10:40:26 +01:00
Roman Volosovskyi
9227c631c3
Fix overwriting of content type to unknown on message editing v0.115.2 2022-11-17 07:11:12 +01:00
Andrea Maria Piana
2572321063 Add notification for trustworthy/untrustworthy v0.115.1 2022-11-16 16:17:13 +00:00
Andrea Maria Piana
98f7324ae1 Add reply message 2022-11-16 16:17:13 +00:00
Richard Ramos
2341dedfba fix: exit relay loop on quit v0.115.0 2022-11-15 11:00:36 -04:00
Richard Ramos
6b11bc8b24 fix: populate WakuNodes section with Relay 2022-11-15 11:00:36 -04:00
Richard Ramos
d996fb60d4 feat: use identify protocol 2022-11-15 11:00:36 -04:00
Andrea Maria Piana
c85df62d3c Sync community encryption keys v0.114.4 2022-11-15 10:11:01 +00:00
Anthony Laibe
7ea9a3f230 fix: router fees for EIP1559 2022-11-14 13:32:29 +01:00
Roman Volosovskyi
7662cd613a
Allow to pass activity center status as a parameter v0.114.3 2022-11-14 10:17:43 +01:00
Patryk Osmaczko
e48083e31d fix: make blocking contact local only
fixes: status-im/status-desktop#7127
2022-11-11 15:44:22 +01:00
Patryk Osmaczko
b5887c9c60 chore: extend TestRetrieveBlockedContact
Extended test with unblock scenario.
2022-11-11 15:44:22 +01:00
Richard Ramos
4f5a25befa fix: limit store queries to 10 content topics 2022-11-09 21:38:05 +03:00
Sale Djenic
77b7ce5a09 fix: corresponding keystore files are deleted when account is migrated to a keycard 2022-11-09 18:07:16 +03:00
Sale Djenic
fdf4c05968 chore: unused code removed 2022-11-09 18:07:16 +03:00
Richard Ramos
91aac3cec0 chore: upgrade go-waku 2022-11-09 17:39:17 +03:00
Richard Ramos
bdbb9e2748 chore: info log the message id and envelope hash 2022-11-09 17:39:17 +03:00
Richard Ramos
a9a87f39e5 chore: upgrade deps 2022-11-09 17:39:17 +03:00
Richard Ramos
6300751e36 chore: upgrade go-waku and log about messages sent/received 2022-11-09 17:39:17 +03:00
Richard Ramos
0f7c9f52d8 feat: mark automatic status updates as ephemeral 2022-11-09 15:49:26 +03:00
Samuel Hawksby-Robinson
f33c1cec38 Added payload locking to prevent multiple requests for the pairing data
Signed-off-by: Samuel Hawksby-Robinson <samuel@samyoul.com>
2022-11-08 13:50:52 +00:00
Michal Iskierko
2a9ac92db9 Expose 33-bytes compression functions
Issue #8001
2022-11-08 13:35:37 +01:00
Stefan
601484af3e feat: Retrieve balance history for native token
Add functionality to sample and retrieve balance history and cache
it in memory for the current transfer controller.

The end of the balance history is snapped at twice per day to
avoid having to query the blockchain again for each fetching within
12 hours interval

The functionality will be extended with DB caching, API call batching,
"smarter" cache hitting and syncing between devices

Updates: #7662
2022-11-07 22:39:21 +01:00
Pascal Precht
d216840db8 feat(communities): add community images to import progress signal
This is needed so clients can render the selected community image
while the import is running.
2022-11-07 17:16:00 +01:00
Richard Ramos
4bf5fcfe61 fix: pass status-go logger to go-waku 2022-11-07 18:03:58 +03:00
Richard Ramos
cd34538937 fix: set waku version to mailservers and set min peers for relay to 1 2022-11-07 18:03:52 +03:00
Pascal Precht
c528660aa3 fix(communities): improve error message about duplicated chat names
We don't allow multiple channels with the same name in communities.
Discord allows for multiple channels with the same name (living in
different categories), so this is an error case in our import tool.

This commit improves the user facing error message of this scenario.
2022-11-04 13:24:20 +01:00
Pascal Precht
8ad9fb7713 fix(discord): always emit import error if it's of type error
We've been limiting the amount of errors being emitted to clients
to reduce payload pressure and also due to the fact that we won't be
rendering more than 3 error items in the UI.

We want to let actual errors through (as opposed to warnings), even if
the limit was reached.
2022-11-04 10:06:04 +01:00
Ibrahem Khalil
bfab85f73b
Fix private group members details not being sent on preview (#2936) v0.114.2 2022-11-03 11:57:51 +03:00
Pascal Precht
caa20e616e feat(communities): handle markdown in imported discord messages 2022-10-28 20:03:39 +02:00
Sale Djenic
006d0ba847 feat: AccountInfo extended with privateKey property 2022-10-28 19:50:55 +02:00
Sale Djenic
c1c7d2dbf6 fix: create acc from mnemonic endpoint extended
`CreateAccountFromMnemonic` function renamed to `createAccountFromMnemonicAndDeriveAccountsForPaths`
and extended in a way that it is able to derive accounts from passed mnemonic for the given paths, if paths is empty
only an account from the given mnemonic will be generated. This endpoint doesn't store anything anywhere.
2022-10-28 19:50:55 +02:00
Andrea Maria Piana
9565342101
Bump version to 0.114.1 v0.114.1 2022-10-28 15:47:59 +01:00
Andrea Maria Piana
2162b76546 Reintroduce api endpoint 2022-10-28 15:46:58 +01:00
Sale Djenic
c2b17acc07 feat: 5 functions added, the same as we had, but without pass verification (need for a keycard users)
The following three new functions introduced, for which password should be verified
on the client side (in case of a keycard user we don't have keystores to check pass):
- `AddAccountWithMnemonicPasswordVerified`
- `AddAccountWithMnemonicAndPathPasswordVerified`
- `AddAccountWithPrivateKeyPasswordVerified`
- `GenerateAccountPasswordVerified`
- `GenerateAccountWithDerivedPathPasswordVerified`

update
2022-10-28 13:27:55 +02:00
Sale Djenic
b0b23076a0 feat: GetDerivedAddressDetails added to accounts api 2022-10-28 13:27:55 +02:00
Sale Djenic
b18ae7b617 fix(keycard): subaccounts updated wiht keyuid, colorhash and colorid 2022-10-28 13:27:55 +02:00
Boris Melnik
63d46481fd
feat(communities): Cancel request to join community (#2915) 2022-10-28 11:41:20 +03:00
Anthony Laibe
32ffb30bf0 feat: stt market data handler 2022-10-28 10:21:27 +02:00
Anthony Laibe
6918dd5ab8 feat: add ethscan for all gorli chain 2022-10-28 10:01:05 +02:00
Pascal Precht
0bdb596d3b feat: introduce discord import tool 2022-10-28 09:52:26 +02:00
Richard Ramos
bb4237f616 fix: wakuv2 mailserver cycle ticker 2022-10-27 09:52:41 -04:00
Andrea Maria Piana
de61ed1213 Handle identity verifications v0.113.0 2022-10-26 17:19:44 +01:00
Andrea Maria Piana
a89f4b2d71 Add read/unread messenger functions for activity center 2022-10-26 17:19:44 +01:00
Anthony Laibe
993c236c04 fix: run make vendor 2022-10-26 12:35:50 +02:00
Samuel Hawksby-Robinson
95eba8c123 Fixed PairingPayloadMarshaller logger issue 2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
71170e7099 Added comprehensive logging 2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
a56e389bd1 Change of strategy, using a for loop wait 2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
9a7f38fcdf Added portManager debug logging 2022-10-26 10:26:59 +01:00