Dario Gabriel Lipicar
29f1bee218
feat(@desktop/wallet): implement allCollectibles module
...
Fixes #13235
2024-01-18 13:57:04 -03:00
Sale Djenic
7eb4d8bff9
fix(keycard): fetching balances for unknown accounts (those read from keycard) is fixed
...
The same issue was present in two places:
- check whats on a Keycard
- importing an account from a Keycard to Status app
Fixes #11841
2024-01-18 10:15:42 +01:00
Michal Iskierko
f00493ec02
fix(@desktop/communities): Fix displaying token holders
...
Add displaying holders for ERC20 - only community members.
Add json conversions test for some holders structs.
Fix #12062
2024-01-17 13:23:59 +01:00
Alex Jbanca
9410de4286
fix(StatusQ): Fixing crash when the source model is a nim model
...
Nim models are crashing when calling `itemData`. A workaround for this is to re-implement the `itemData` calls in the writableModel.
2024-01-17 10:14:56 +02:00
Anthony Laibe
a6be5bd4fb
feat(@wallet): confirmation and restart when changing rpc endpoint
2024-01-17 08:44:49 +01:00
Sale Djenic
1dd5f3d007
feat(savedaddresses): context menu - view activity
...
Part 4 of #13094
2024-01-16 18:36:30 +01:00
Sale Djenic
6eda2a4956
feat(savedaddresses): context menu - view on [network] (all available networks)
...
Part 3 of #13094
2024-01-16 18:36:30 +01:00
Sale Djenic
3399148f61
feat(savedaddresses): context menu - show address qr
...
Part 2 of #13094
2024-01-16 18:36:30 +01:00
Sale Djenic
e115d5e7ce
refactor(wallet): show qr popup updated to meet new ui requirements
...
Show Qr popup is partially refactored because of the two things:
- to meet new UI requirements (introduced in the new saved addresses design)
- to make usage of that popup more generic, that it can be easily used from different places
2024-01-16 18:36:30 +01:00
Sale Djenic
a22847b000
feat(savedaddresses): context menu - copy address
...
Part 1 of #13094
2024-01-16 18:36:30 +01:00
Sale Djenic
919d4baf53
fix(savedaddresses): making add/edit saved address popup's content scrollable when there's no enough space for the content
2024-01-16 18:36:30 +01:00
Noelia
b515f536d1
fix(OwnerToken): TOwner item footer button must be visible only for TOwner owner
...
Fixes #12911
2024-01-16 16:02:42 +01:00
Noelia
42a80c2c10
fix(OwnerToken): Change owner token subtitle depending on user profile
...
Fix #12905
2024-01-16 16:02:23 +01:00
Lukáš Tinkl
6f3a180f41
feat: Emit notifications when an asset/collectible is hidden in the settings
...
- emit the signal from the backend
- trigger the toast notification in QML
- update the test(s)
Fixes #12704
2024-01-16 14:00:11 +01:00
Valentina1133
eaa8e90f11
test ( #13216 )
2024-01-16 14:42:05 +07:00
Khushboo Mehta
4e66ca7936
fix(@deaktop/wallet): Slowness when switching accounts
...
fixes #13136
2024-01-15 15:02:14 +05:30
Stefan
7f6636dc94
chore(config) rename pokt.network urls to grove.city as required
...
Closes #13189
2024-01-12 21:23:59 +01:00
Khushboo Mehta
fb39c8c3b8
fix(@desktop/wallet): Switching networks doesn't change assets
...
fixes #13137 , #13144
2024-01-12 20:30:42 +05:30
Sale Djenic
ba5e259296
chore(savedaddresses): saved addresses improvements
...
Closes #13140
2024-01-12 14:23:35 +01:00
Sale Djenic
1e972950e6
chore(savedaddresses): favourite property removed
2024-01-12 14:23:35 +01:00
Sale Djenic
40ed061402
bug(savedaddresses): the send modal should be run clicking on the send button of a saved address item
...
Fixes #13172
2024-01-12 11:29:35 +01:00
Anastasiya Semenkevich
fb0cf326e9
chore: add object name for usernameText property
2024-01-11 18:43:54 +03:00
Lukáš Tinkl
263ed2a822
feat: Add Advanced settings in new Advanced Tab
...
... under Settings/Wallet/Manage Tokens
- rename Tokens List tab to Advanced tab
- introduce a new `CurrencyAmountInput` component, backed by
`FormattedDoubleProperty` C++ class (plus the respective SB page)
- use `FastExpressionFoo` for the collectibles views as well
Fixes #12611
Fixes #13040
2024-01-11 14:52:52 +01:00
Michał Cieślak
e053d267f0
fix(StatusQ): FastExpressionSorter's test fixed for mac
...
Threshold for acceptable accesses has been increased but also
additional check regarding roles has been introduced to ensure
expected behavior.
Closes : #13181
2024-01-11 13:35:05 +01:00
Anastasiya Semenkevich
1d30c66a2c
chore: object name for adding saved address in settings
...
`ui/app/AppLayouts/Profile/views/WalletView.qml`
2024-01-10 23:29:12 +03:00
Jesse Guo
9f2443f5e6
Update StatusWindowsTitleBar.qml
2024-01-10 10:46:38 -05:00
Jesse Guo
4195935f77
Update StatusWindowsTitleBar.qml
...
signal should be closed
2024-01-10 10:46:38 -05:00
Anastasiya Semenkevich
68a67a7513
chore: object names for new settings items in wallet settings
...
Added object names for new settings items in `ui/app/AppLayouts/Profile/views/wallet/MainView.qml`
2024-01-10 15:53:39 +03:00
Lukáš Tinkl
f80f4abb0b
fix(wallet): unbreak scrolling of the wallet views
...
Fixes #13157
2024-01-10 12:02:22 +01:00
Alex Jbanca
56f194c96c
fix: Updates based on comments
2024-01-09 20:20:04 +02:00
Alex Jbanca
6da897e733
StatusQ: Adding WritableProxyModel
...
WritableProxyModel is a QAbstractProxyModel that allows you to modify the data without modifying the source model.
It is useful for implementing a "dirty" state for a model, where you can modify the data and then commit the changes
to the source model.
Supported features (reimplemented):
- setData
- setItemData
- removeRows
- insertRows
- moveRows (TODO)
- toVariantMap
- to be continued...
2024-01-09 20:20:04 +02:00
Khushboo Mehta
19a6ba915c
fix(@desktop/wallet): Improving performance when switching accounts
2024-01-09 20:32:40 +05:30
Sale Djenic
0a3fd7fbfb
chore(general): a simplification of fetching active app chain
...
The chain we're using for stickers, collectibles, ens names and other similar activities
is simply determined by the mode the Status app is operating in and it could be either
mainnet or testnet mode. Having that fact in mind we don't need all the calls we were
using in the past for fetching explicitly chain id for each of the sections mentioned above
and that's simplified with these changes.
2024-01-09 15:48:48 +01:00
Michał Cieślak
56493fa5e1
feat(StatusQ): Faster version of SFPM's ExpressionSorter
...
Provides FastExpressionSorter component compatible with
SortFilterProxyModel. In comparison to original ExpressionSorter it allows
to define which role values should be provided to the expression's
context and improves performance significantly.
Closes : #13062
2024-01-09 13:47:47 +01:00
Michał Cieślak
a6cf37278c
feat(StatusQ): Faster version of SFPM's ExpressionFilter
...
Provides FastExpressionFilter component compatible with
SortFilterProxyModel. In comparison to original ExpressionFilter it allows
to define which role values should be provided to the expression's
context and improves performance significantly.
Closes : #13063
2024-01-09 13:47:47 +01:00
Sale Djenic
cf09505071
feat(savedaddresses): context menu - remove saved address
...
Closes #13093
2024-01-08 14:41:30 +01:00
Sale Djenic
e35bc9db40
feat(savedaddresses): context menu - edit saved address
...
Closes #13092
2024-01-08 14:41:30 +01:00
Michał Cieślak
a2aedb5c6a
chore(StatusQ): Generic TestModel excluded to a separate file
...
Closes : #12843
2024-01-05 13:34:45 +01:00
Michał Cieślak
57ee01b239
chore(StatusQ): ListModelWrapper excluded to a separate file
2024-01-05 13:34:45 +01:00
Sale Djenic
9da47c5294
fix(tests): e2e saved addresses related tests fixed
2024-01-04 17:45:57 +01:00
Sale Djenic
df8e74feec
feat(savedaddresses): make save addresses list as per design (without search logic)
...
Closes #13090
2024-01-04 17:45:57 +01:00
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
Sale Djenic
3d5b24b87f
fix(tests): e2e saved addresses related tests fixed
2024-01-04 17:45:57 +01:00
Sale Djenic
7983c97f7b
feat(savedaddresses): saved address added to wallet settings section
...
Part 2 of #13088
2024-01-04 17:45:57 +01:00
Sale Djenic
3ac13a7678
chore(savedaddresses): preparing saved address for reuse in wallet settings section
...
Part 1 of #13088
2024-01-04 17:45:57 +01:00
Sale Djenic
4854d9d100
feat(@desktop/wallet): mark address as shown when it is about to be fully displayed
...
Fixes : #12989
2024-01-04 13:57:13 +01:00
Sale Djenic
4c3c763c3a
fix(@desktop/profile): display short address form in the profile showcase accounts tab
2024-01-04 13:57:13 +01:00
Sale Djenic
bc2642c5e8
fix(@desktop/wallet): display short address form in the wallet settings account order page
2024-01-04 13:57:13 +01:00
Cuteivist
0536ce898d
feat(@desktop/toast): Community Token received notification ( #13116 )
2024-01-04 13:22:12 +01:00
Anthony Laibe
fb558edf61
fix(@wallet): prevent black image in token list
...
fixes #12718
2024-01-04 12:59:23 +01:00