1016 Commits

Author SHA1 Message Date
Khushboo Mehta
3118931ab8 fest(@desktop/wallet): Update Desktop UI to correctly call the router and send
fixes #13797
2024-03-06 12:31:16 +01:00
Mikhail Rogachev
0455832f92
feat: Add scanCommunitiesMembersForName endpoint (#13789)
Close #13434
2024-03-01 22:12:19 +03:00
Mikhail Rogachev
f934615752
feat: Add api for getting full pending CR object (#13749) 2024-02-29 12:49:37 +03:00
Igor Sirotin
291e65816e
chore: bump status-go (#13770) 2024-02-28 19:25:51 +00:00
Igor Sirotin
82e197da88
chore: bump status-go (#13765) 2024-02-28 15:38:12 +00:00
Anton Iakimov
00f1b10b0e
Revert "ci: cleanup more build artifacts"
This reverts commit df4e115c6e22192a4f0ead106ad72f4b3d36db4e.
2024-02-28 15:53:08 +01:00
Anton Iakimov
df4e115c6e
ci: cleanup more build artifacts
Should be cleaning artifacts for more than 1+1 build for each branch.
2024-02-28 15:44:58 +01:00
Igor Sirotin
a6513e4c9f
bump status-go (#13753) 2024-02-27 19:44:49 +00:00
Michal Iskierko
06cb3224c8 chore(@desktop) Upgrade status-go
Issue #11588
2024-02-27 19:33:27 +01:00
Mykhailo Prakhov
996199b910
feat(desktop@communities): change kicked/banned member behavior (#13706)
feat: change kicked/banned member behavior
2024-02-27 12:55:56 +01:00
Lukáš Tinkl
630da7caaa fix: 150% and 200% zoom levels prevent the user from logging in
- TLDR: we were scaling twice, resulting in ginourmous pixel values

The long story:
- since Qt treats the various scale factors in a multiplicative way (see
https://www.qt.io/blog/2016/01/26/high-dpi-support-in-qt-5-6 for
explanation) and there's no way to get the screen's baseline scale
factor programatically, we also have to export `QT_SCREEN_SCALE_FACTORS`
to something that's not equal to `0` or `1` to force the monitor scale
factor to `100%` and then compensate for it when exporting our own scale
value using `QT_SCALE_FACTOR`
- make the UI slider values go in `25%` steps, allowing for more fine
grained control; with `100%` we fallback to the Qt's native handling of
highdpi
- raised the maximum to `300%` since on highres displays, one wouldn't
be able to go over the implicit maximum of `200%` (due to the internal
scaling being 2x)
- scale our main window's minimum width/height so that we don't overflow
the monitor's available space
- modernize the `ConfirmAppRestartModal` to use `StatusDialog`
- use the new `Utils.restartApplication()` when changing the UI language
as well
- remove some dead code

In the (very) long term, we should take a different approach of scaling
our app independently of Qt, just taking the monitor
`Screen.devicePixelRatio` into account, similar to what other apps like
Telegram do

Fixes #13484
2024-02-27 10:39:05 +01:00
Dario Gabriel Lipicar
d22ac0dfed fix(@desktop/wallet): properly handle tokenID 0 when filtering activity by collectibles
Fixes #13660
2024-02-26 07:55:05 -03:00
Anthony Laibe
aed61b68b1 feat(@wallet): sepolia default 2024-02-23 11:52:40 +01:00
Igor Sirotin
28d8145136
fix: use fleetFromString function to prevent panic for unknown values (#13699) 2024-02-23 10:14:42 +00:00
Michal Iskierko
4031778c7c fix(@desktop/permissions): Use correct chains when creating permissions: testnet or mainnet
Fix #18896
2024-02-22 10:53:44 -05:00
Mykhailo Prakhov
12569d795f
feat(@desktop/community): allow owner delete all messages during the ban and ban/unban AC notifications (#13653) 2024-02-22 12:01:01 +01:00
Sale Djenic
a3923461e8 fix(savedaddresses): saved addresses should be displayed in mixed cases format
Fixes #13665
2024-02-22 10:05:26 +01:00
Richard Ramos
9366820d1f chore: bump status-go to fix high cpu usage in peer-exchange 2024-02-21 13:21:46 -05:00
Roman Volosovskyi
7736cd8950
[#13615] Fix transfer history loading after interruption on restored account (#13629) 2024-02-20 11:12:12 +01:00
Roman Volosovskyi
dd166eb60c
[13546] Fix detection of incoming erc721 transfers (#13626) 2024-02-19 16:52:09 +01:00
Dario Gabriel Lipicar
277175dbf3 chore: bump status-go 2024-02-15 14:09:04 -03:00
Jacek Sieka
1315911587 maintenance bumps
Maintenance bumps of several dependencies - broadly address security
issues, 1.6+ compatibility, bugfixes etc to catch up with Nimbus'
development

The extra try/catch is due to increased exception safety requirements in
`chronicles`, where `fmt` allows dynamic format strings and therefore
may raise `ValueError` in theory.
2024-02-15 11:28:34 -05:00
Roman Volosovskyi
cd11a2ac81
[#13552] fix Community assets not shown in account (#13576) 2024-02-15 14:55:20 +01:00
Sale Djenic
3e3452c8db fix(savedaddresses): saved addresses are not in sync between devices
Closes: #9567
2024-02-14 12:19:34 +01:00
Stefan
1e75319664 test(wallet) sql integration tests for activity incremental update
Refactor tests to follow changes in session based activity API

Updates #12120
2024-02-13 19:47:39 +01:00
Jonathan Rainville
d41affabb9 fix(discord_import): fix community not cleaned up when it fails
Fixes #12724

The actual issue wasn't reproducible, even if I removed the guards against duplicate names.
But I did find that the community wasn't cleaned up correctly, so I fixed it in this PR. It should limit the confusion and possible issues that could arise.
2024-02-12 16:43:16 -05:00
Roman Volosovskyi
7caa23a042
[#13485] Fetch initial balances when history is not ready or doesn't exist (second attempt) (#13510) 2024-02-12 14:24:02 +01:00
Roman Volosovskyi
c29f6de697 [#13485] Fetch initial balances when history is not ready or doesn't exist 2024-02-12 11:27:28 +01:00
Alexandra Betouni
480985ca4e
[Settings]: Added change password view (#13284)
* [Settings]: Added change password view

Closes #10037

Adding configuration options to PasswordView

* feat(ChangePassword): Integrate ConfirmChangePasswordModal

1. Integrate with backend
2. Clean unused components

* feat: Add support to restart application

1. Adding restart app support in DOtherSide
2. Integrating nimqml
3. Expose in qml in Utils

* chore: Move changeDatabasePassword call to threadpool

* chore(squish): Fix failing tests due to settings index changes

---------

Co-authored-by: Alex Jbanca <alexjb@status.im>
2024-02-09 13:31:37 +02:00
Godfrain Jacques
ae16bd8b67
fix(settings): It's not possible to switch the log level (#13309)
* chore: bump status-go

Closes #13139

* fix(settings): It's not possible to switch the log level

Previously it was not possible to change the state of the Debug toggle.
This is because the code forced the setting the default value, ignoring
the database setup, hence always setting the DEBUG as LogLevel.

Closes #13139
2024-02-05 09:11:27 -08:00
Anthony Laibe
1634109971 feat(@wallet): token list global updated at
fixes #13269
2024-02-02 12:01:17 +01:00
Stefan
40396dcf6f test(wallet) add dev integration tests for incremental activity updates
Test used to investigate the deadlock caused by sending message while
in a message handler.
2024-02-01 21:21:13 +01:00
Igor Sirotin
498a81e6b7
chore: bump status-go (#13363) 2024-01-30 21:17:03 +00:00
Igor Sirotin
a0d16ac2fa
chore: bump status-go (#13359) 2024-01-30 15:12:01 +00:00
Michal Iskierko
caeb6a0132 chore(@desktop): Upgrade status-go
Issue #13098
2024-01-30 13:06:17 +01:00
Anthony Laibe
eee8ec8e32 feat(@wallet): sepolia optimism 2024-01-30 11:36:23 +01:00
Sale Djenic
bbaafa8954 feat(savedaddresses): display various cards if an address user is trying to save is known
Closes: #13280
2024-01-29 14:56:24 +01:00
Godfrain Jacques
ab61784816
(fix/desktop) removing custom picture is not reflected on contact's side (#13197)
* chore: bump status-go

* (fix/desktop) removing custom picture is not reflected on contact's side

This PR fixes [9947](#9947) and contains :

- Commit to fix the changing of custom picture and having the change
  reflected on contact's side
- Commit to fix the deleting of picture and having the change reflected
  on contact's side
2024-01-26 07:54:30 -08:00
Mikhail Rogachev
2abfe0fa0c
feat(ProfileShowcase): Implement profile showcase collectibles (#13103)
* feat(ProfileShowcase): Show token balences in the profile showcase

* feat: support new tokens & collectible identification

* feat: add collectibles to profile showcase preferences

* feat: dispaly collectibles for a contact

* fix: review fixes & tokens code moved to separated PR
2024-01-25 21:43:36 +04:00
Igor Sirotin
9e4db718b4
bump status-go (#13298) 2024-01-25 15:04:55 +00:00
Sale Djenic
e68d46da99 chore: bump the latest status-go changes 2024-01-22 14:35:11 +01:00
Dario Gabriel Lipicar
b186a133ab feat(@desktop/wallet): implement token management settings for collectibles
Fixes #13233
2024-01-18 13:10:07 -03:00
Dario Gabriel Lipicar
c82a4ba602 feat(@desktop/wallet): add collectibles filter option collectibleIDs
Closes #13215
2024-01-18 12:28:23 -03:00
Sale Djenic
61677b72ac fix(keycard): pairings.json file creation fixed for windows 2024-01-18 12:34:32 +01:00
Dario Gabriel Lipicar
00d78b6710 feat(@desktop/Wallet): adapt to updated collectible backend data types
Fixes #12942
2024-01-15 13:52:21 -03:00
Stefan
7f6636dc94 chore(config) rename pokt.network urls to grove.city as required
Closes #13189
2024-01-12 21:23:59 +01:00
Sale Djenic
1e972950e6 chore(savedaddresses): favourite property removed 2024-01-12 14:23:35 +01:00
Godfrain Jacques
ed89ba77b8
Fix thumbnail images for quoted message (#13126) 2024-01-09 01:54:54 -08:00
Khushboo Mehta
104d7b0a90 fix(@desktop/wallet): Create new go API to get token balances without market details so that we are making wasteful api calls to coingecko/cryptocompare
fixes #13084
2024-01-08 18:39:18 +05:30
Sale Djenic
ff9062a1b0 feat(savedaddresses): update adding saved address popup to match new design
Implemented:
- adding selection color section
- all input field validations
- interactions within the popup
- an ephemeral notification when adding an address

Closes #13089
2024-01-04 17:45:57 +01:00