Lukáš Tinkl
daae249fae
feat(Token master): create category in Settings/Communities
...
Add a `memberRole` value and section for the TokenMaster category in
Settings/Communities
Fixes #11308
2023-07-20 11:37:48 +02:00
Sale Djenic
6d25a888d3
feat(@desktop/wallet): keypair rename (a profile keypair name should follow display name)
...
Fixes : #10769
2023-07-18 09:20:09 +02:00
Lukáš Tinkl
6d6cb7a7a7
Settings/Communities: fix duplicate entries
...
in case a community is both `spectated` and `joined`
Fixes #11301
2023-06-29 17:22:36 +02:00
Lukáš Tinkl
620c7a746d
feat(Settings/Communities): implement new communities list
...
Closes #11145
2023-06-23 16:48:26 +02:00
Boris Melnik
cdac45010a
feat(communities): Adds mute community intervals
...
Fixes : #9369
2023-06-22 20:46:33 +03:00
Lukáš Tinkl
ecc1b5316f
fix: community context menu should not say "Leave community" if not joined
...
- get rid of the `amISectionAdmin` for good (was done only partially in
82a1ed2f7a
)
- fix the corresponding storybook pages
Fixes #10963
2023-06-21 11:17:13 +02:00
Lukáš Tinkl
7bf7f272f3
fix: community context menu should not say "Leave community" if not joined
...
- differentiate between "Close" and "Leave" a community where the former
applies to spectated communities
- move the "leave community" confirmation popup to a shared place
(Popups.qml), extend it with the outro message and reuse it everywhere
- don't let admins leave a community
- some minor cleanups and dead code removals
Fixes #10963
2023-06-15 12:22:04 +02:00
Lukáš Tinkl
38bbd0fb53
fix: unbreak profile showcase
...
- amISectionAdmin no longer exists
- profile section wallet store no longer provided the base assets model
2023-06-15 11:13:36 +02:00
Igor Sirotin
11bd51fc27
fix(SyncingView): only suggest to sync non-synced devices ( #11083 )
2023-06-15 11:53:35 +03:00
Igor Sirotin
476db57837
fix(Settings): fix left panel items width ( #11048 )
2023-06-14 18:07:36 +03:00
Patryk Osmaczko
dfbac49302
chore(qml): adapt assets to support mediaserver images
2023-06-08 13:09:59 +02:00
Sale Djenic
ae492fe631
fix(@desktop/profile): profile social links
...
- added to sync mechanism
- added to backup mechanism
- UI updated according to the newest changes
Closes : #10390
2023-06-07 13:22:59 +02:00
Khushboo Mehta
28654e0187
\chore(@desktop/wallet): Change customisation colours on desktop to match those used on mobile
...
fixes #10637
2023-06-02 19:48:19 +02:00
Patryk Osmaczko
35a2dd5244
[Popups]: added destroy() function in all popups by default
...
Also switched StatusModal to derive from StatusDialog instead
of Popup type
Closes #10149
2023-06-02 14:28:39 +03:00
Cuteivist
cdbdae2d39
feat(@desktop/activities): Updated no activity text style ( #10461 )
...
closes #10443
2023-05-02 10:01:04 +02:00
Vladimir Druzhinin
7757c3b47d
test(suite_settings/tst_userIdentity): Fix test on display name, bio and social links ( #10226 )
...
- scroll profile settings view added
- method to add links fixed
- SettingProfile class moved from Settings class
2023-04-24 11:39:07 +02:00
Lukáš Tinkl
038ab08765
fix: do not display ENS name when not ENS verified
...
- expose "isEnsVerified" as model role
- fix returning "ensName" when the user is not ensVerified
- react to nickname updates correctly
- fix sorting in the user/member list view
2023-04-21 00:24:32 +02:00
Lukáš Tinkl
7a5dbbd952
chore(StatusStickerButton): refactor to use StatusButton
...
- make it possible for StatusBaseButton to be icon-only (ie just icon, no
text, rounded if needed)
2023-04-18 13:45:38 +02:00
Michał Cieślak
c38e0701d5
fix(Settings): Spacing updated according to the design
2023-04-13 10:50:40 +02:00
Lukáš Tinkl
a8eed304c0
feat: implement ProfileShowcase settings
...
Implement the UI part of Profile/Settings/Showcase:
- Communities/Accounts/Collectibles/Assets tabs
- drag and drop of items between "hidden" and "in showcase" sections
- ability to set individual items' visibility
- persistency (showcase saved across restarts), not exposed yet due to
missing backend API
Closes #9936
2023-04-12 11:39:37 +02:00
Lukáš Tinkl
1998a6556a
feat(Profile): New Social Links workflow
...
TLDR;
- all links visible in settings/popup
- persistent order of items
- drag'n'drop to reorder
- editing/deleting in a new popup
- several links of the same type
Needs changes in nimqml (to expose QAIM::begin/endMoveRows), in
DOtherSide (to expose those to NIM), in status-go (to preserve the links
order and fully save them to DB)
Fixes #9777
2023-03-16 16:08:23 +01:00
Michal Iskierko
3f01af4446
fix(@desktop/chat): Fix user names propagation.
...
Add ProfileUtils for displaying correct name.
Set names in models correctly.
Fill names in qml correctly.
Fix #8343
2022-12-14 17:44:26 +01:00
Lukáš Tinkl
e13726e4af
feat(SocialLinkPreview): links are too short to display even short urls
...
- rework the way social links are displayed/editted; we now only allow to
enter a so called "handle" and then substitute that in the final URL
template
- move the "icon" model role to NIM backend
This has several advantages:
- we display only the "handle" and don't have to elide some long URL
- we won't let users enter random URLs into their profile and spoof the
viewing part into clicking it
Additionally, make the social link "button" clickable -> navigate to the
target URL, and make the tooltip behave as "usual" (on mouse hover).
2022-12-07 12:40:58 +01:00
Igor Sirotin
e3bfdc0f09
fix(StatusPopupMenu): Refactoring
2022-12-02 10:30:50 +03:00
Lukáš Tinkl
9559789030
chore: reduce the number of (verification) RPC calls
...
- when calling `Utils.getColorHashAsJson()` we don't actually need to
issue ID verification requests at all and there might be situations when
we know beforehand that we don't need the ENS verification either
- change these helper functions' syntax and do early returns in that case
- in MessageContextMenuView, the "contact details" were duplicated, so
remove one
- remove dead code, fix some warnings
2022-12-01 16:50:23 +01:00
Jonathan Rainville
4c1370f7ef
test(Settings): adds a test that sends a contact request with chat key
2022-11-29 15:51:29 -05:00
Lukáš Tinkl
2b6164fc8d
fix: ens names should not display `@`
...
Fixes #8122
2022-11-10 10:42:05 +01:00
Lukáš Tinkl
7a407662e2
feat: New Profile Modal
...
Fixes : #7360
2022-10-17 12:05:54 +02:00
Lukáš Tinkl
a209d39881
fix: ENS name issues
...
- don't display identicon rings for contacts with an ENS name
- prefer the at-form (@foo-user) whenever possible, and don't display their
username or pubkey unless they are locally given a nickname
- show compressed keys everywhere instead of the regular ones
Fixes : #7319
Fixes : #7515
2022-09-26 22:38:02 +02:00
Lukáš Tinkl
19aa32a07e
fix(ContactPanel): unbreak showing identicon rings
...
- unbreak the user icon in the popup menu
- don't show idention ring for ENS names
Fixes : #7496
2022-09-22 11:21:37 +02:00
Lukáš Tinkl
52dbf9b7c8
fix(CommunitiesListPanel): set uniform icon size
...
we want same icon sizes here, no matter if there's an image or not
Fixes : #7285
2022-09-22 11:18:16 +02:00
Alexandra Betouni
fb7989db55
fix(Profile/ContactsView): updated contacts layout
...
All contacts should be shown in one long list, should
the list is longer than the page, the page should
scroll down
Closes #6262
2022-09-20 11:13:51 +03:00
Lukáš Tinkl
781575c4b5
fix: Import Community panel fixes
...
Closes #7362
2022-09-16 14:11:40 +02:00
Lukáš Tinkl
f4a78a1f10
fix: port to StatusButton changes in master
...
and pull in changes from StatusQ master
2022-09-14 09:16:58 +02:00
Alexandra Betouni
e1c548696f
feat(Desktop)!: Updating desktop app due to IconSettings refactor
...
As part of https://github.com/status-im/StatusQ/issues/781
2022-09-02 18:41:21 +03:00
Noelia
b06bae0d4e
test(Settings/Language): Can change language
...
`tst_languageSettings`:
- Feature and basic scenarios definition: Change language by selection and change language by search.
- Added `StatusLanguageScreen` class and related methods to change and validate language.
`SquishDriver`:
- Added support to scroll at a specific list view index.
- Added support to directly type into a focused element.
`settings_names.py`:
- Added support for object names related to `side bar` options.
- Unified some nomenclature related to settings objects.
`LanguageView`:
- Updated to allow registering the change on Linux before the restart popup is shown so the language test can work.
Closes #6903
2022-08-18 11:28:55 +02:00
Patryk Osmaczko
4c2a7656f2
chore(settings/profile): address social links QA issues
2022-08-17 13:18:32 +02:00
Patryk Osmaczko
aeb64e2029
test(settings/profile): test bio and social links
...
Note: interaction between clients is not tested here to avoid dependency
on mailserver. When mailserver is mocked more comprehensive tests should
be provided, that is: verify if identity properties are propagated
and read correctly between two different clients.
closes : #6950
2022-08-17 13:18:32 +02:00
Patryk Osmaczko
46e01afa04
feat(settings/profile): add social links' ui primitives
...
iterates: #6797
2022-08-17 13:18:32 +02:00
Patryk Osmaczko
29add2fbc9
chore(settings/messaging): improve contact filter expressions
2022-08-17 09:24:52 +02:00
Patryk Osmaczko
beb4658633
chore(settings/messaging): `id: container` -> `id: root`
2022-08-17 09:24:52 +02:00
Patryk Osmaczko
c46cd1922b
chore(settings/messaging): `id: contactListRoot` -> `id: root`
2022-08-17 09:24:52 +02:00
Patryk Osmaczko
e9a307c383
fix(settings/messaging): remove imperative filtering from ContactPanel
...
fixes : #6673
iterates: #6509
2022-08-17 09:24:52 +02:00
Stefan
e33fdafc68
test(Settings) leave community
...
Also add option to retrieve multiple objects with the same "Real Name"
and other required helpers
Closes : #6886
2022-08-16 14:03:59 +02:00
Sale Djenic
86a06c9ef9
test(@desktop/general): can quit app by going to settings -> quit
...
Fixes : #6905
2022-08-11 21:39:34 +02:00
Jonathan Rainville
03780d4875
feat(MessageContextMenu): add option to verify identity in context menu
...
Fixes #6252
2022-07-29 09:43:35 -04:00
Michał Cieślak
2fbc313e5a
fix(communities): Cannot leave community, invite, mute from Settings/Communities
2022-07-29 11:11:06 +02:00
Lukáš Tinkl
24775f2f51
fix(ContactsListPanel/ContactsView): items have their right side options hidden
...
Fixes : #6669
2022-07-28 10:45:06 +02:00
Lukáš Tinkl
d511e5eda3
fix(ContactsListPanel): hide "Send message" for blocked contacts
...
Fixes #6299
2022-07-28 10:45:06 +02:00
Boris Melnik
e351653083
fix(ContactsPanel): Use `iconSource` property instead of `icon`
2022-07-27 16:49:56 +03:00
Sale Djenic
21c007c8a5
fix(@desktop/general): broken master quick fix
2022-07-26 14:29:59 +02:00
Boris Melnik
039638d4bb
fix(contacts): Showing letters for contacts without profile picture
...
Closes:#5514
2022-07-26 14:31:45 +03:00
Michał Cieślak
499b360112
fix(@desktop/settings) contacts search doesn't work by compressed pk
2022-07-24 12:29:24 -04:00
MishkaRogachev
58e0fce819
feat(@desktop): Fix twitchy scrolling issues
...
Close #6187
2022-07-21 18:44:30 +03:00
MishkaRogachev
0d3aed0611
fix(@desktop): Fix scrolling twitches using ScrollView amd Flickable items
...
Close #5781
2022-07-21 18:44:30 +03:00
femi
3bdba429e3
feat(@DesktopApp): Login- 12, 18, 24 Seed Phrase
...
https://github.com/status-im/status-desktop/issues/6274
https://github.com/status-im/status-desktop/issues/6275
https://github.com/status-im/status-desktop/issues/6276
Login for 12, 18 and 24 seed Phrase
2022-07-15 09:27:51 +01:00
Jonathan Rainville
95407cc1e0
fix(contacts): remove isMutualContact, use isContact or isAdded indead
...
Fixes #6220
Fixes the issue with the mutual contact icon showing when just added.
It also does a huge cleanup of the codebase to remove isContact and replace it with either isAdded, when we care only about if we added, or isMutualContact if we want the contact to be mutual
Also fixes an issue with the MessageContextMenu not reflecting the added state correctly.
2022-07-11 09:34:29 -04:00
Patryk Osmaczko
e0a5afebee
chore(translations): transform `qsTrId` to `qsTr`
...
issue: #4544
2022-07-06 19:09:50 +02: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
Alexandra Betouni
1cda32470b
fix(Profile): ContactsView layout and scrolling issues
...
Closes #5876
2022-06-24 15:24:35 +03:00
Anthony Laibe
2112135c6f
fix(@communities): remove totally the toggle for experimental feature
...
fixes #6175
2022-06-21 12:12:09 -04:00
Boris Melnik
eb3b22caef
fix(communities): Fix `try/catch` block in communities service
...
Closes : #6074
2022-06-21 11:25:35 -04:00
Boris Melnik
266e10026d
fix(settings): Fix visibility community settings view
...
Closes : #6100
2022-06-21 16:33:35 +03:00
Patryk Osmaczko
6743bee1aa
fix(@desktop/chat): extract chat menu items
...
It removes duplication and unifies menu items across the app.
fixes : #5985
2022-06-15 12:56:32 -04:00
Igor Sirotin
1870e9a0ce
fix: Moved `StatusTabButton` to StatusQ
2022-06-15 12:23:19 -04:00
Patryk Osmaczko
62183cf60b
chore: refactor/unify user_model and contact_model
...
This is first iteration. Models have been restructured and qml adapted
to the changes.
What is left to be done:
- populate new models with appropriate data (some fields were left
default)
- use new fields in qml, use StatusMemberItem where possible
- fix all #FIXMEs introduced by this commit
iterates: #5951
2022-06-12 15:45:49 +02:00
Alexandra Betouni
341e7ac081
fix(ContactPanel): updated right button colors when hovered
...
Closes #5246
2022-06-06 17:59:13 +03:00
Boris Melnik
49ca3e1c36
feat(Settings): Add communities settings
...
Closes : #4932
2022-06-02 18:58:50 +03:00
Alexandra Betouni
046aa36565
feat(settings): Adding new Backup Seed Phrase section & modal
...
Closes #4918
2022-06-02 11:11:06 +03:00
Sale Djenic
2904018173
fix(@desktop/settings): content on the right side for all subsections need to have the same geometry
...
Structure of the all subsection of the settings section has the same
high level structure
Fixes #5650
2022-05-10 20:47:29 +02:00
Anthony Laibe
6d1e0f8cc3
fix(@wallet): Hide ens settings section if no wallet
2022-04-25 13:09:00 +02:00
Anthony Laibe
3f71e1fe87
feat(@wallet): move visible token to status go
2022-04-13 10:12:58 +02:00
Patryk Osmaczko
25c6a5f5ca
chore(@desktop): remove identicon related code
2022-04-04 17:50:48 +02:00
Sale Djenic
57fb0882aa
fix(@desktop/chat): contact lists should only shown mutual contacts
...
Fixes #5117
2022-04-01 14:00:21 +02:00
Sale Djenic
149ff69310
fix(@desktop/contacts): contacts updated to match more closely to requested design
2022-04-01 14:00:21 +02:00
Jonathan Rainville
b4a1fb1a14
feat(SearchBox): use StatusInput for SearchBox and add clear button
...
Fixes #5090
2022-03-28 15:17:23 -04:00
Jonathan Rainville
cfd84d5ba0
feat(contacts-settings): add badge for requests in contacts settings
...
Fixes #5089
2022-03-24 17:31:51 -04:00
Jonathan Rainville
738a3ba93e
feat(profile): re-design Contacts setting view
...
Fixes #5004
2022-03-18 11:37:26 -04:00
Jonathan Rainville
e1b7475884
feat(profile): add Messaging settings view in profile
...
Fixes #4931
2022-03-17 14:59:45 -04:00
Anthony Laibe
0908b13ad5
feat(@settings): new dapp permissions view
2022-03-14 13:48:57 +01:00
Michal Iskierko
5a6912d18e
chore(@desktop/profile): Fix visibility behaviour of Apps section
...
Apps section with Browser settings are visible when
Experimental features/Dapp Browser toggle is on.
Ticket #4916
2022-03-04 18:57:26 -05:00
Michal Iskierko
30b799a6ea
chore(@desktop/profile): Change labels and ordering in Profile settings list
...
Fixes #4916
2022-03-04 18:57:26 -05:00
Anthony Laibe
e7ece14346
feat(@settings): copy assets popup to settings
2022-03-04 10:05:02 +01:00
Sale Djenic
d0e0df1e3b
fix(@dekstop/chat): clicking on `enable in settings` redirects to network settings
...
Fixes #4890
2022-02-25 12:11:57 -05:00
Anthony Laibe
9495956a53
feat(@settings): Add wallet settings with network
2022-02-16 17:06:13 +01:00
Patryk Osmaczko
ba7a6d5d34
style: remove trailing whitespaces
2022-02-09 11:16:23 +01:00
Sale Djenic
da6fe00528
refactor(@desktop/settings-contacts): contacts section updated
2022-02-01 11:47:46 +01:00
Sale Djenic
9b1e794e8f
refactor(@desktop/settings-pivacy-security): privacy and security section updated
2022-02-01 11:47:43 +01:00
Alexandra Betouni
3d4f2e26d0
refactor: fixed profile popup not opening
2022-02-01 11:46:39 +01:00
Alexandra Betouni
336f90a60f
feat(desktop/wallet) Removed dynamic scoping from wallet
...
Removed all dynamic scoping parts in wallet section plus
- Renamed Config to Global and added more functions there
- Moved changeAppSectionBySectionType function to Global
and updated all places where is used to call it from
Global instead
- Moved openLink function to Global and updated all places
where is used to call it from Global instead
- Moved errorSound to Global, introduced playErrorSound
function and updated all places where is used to call
this function from Global instead
Closes #4245
2022-02-01 11:38:27 +01:00
Jonathan Rainville
eee096dda7
chore: remove old contacts code
2022-02-01 11:35:24 +01:00
Jonathan Rainville
e8eefd8f87
refactor: move all old usages of contacts to the new code
2022-02-01 11:35:24 +01:00
Alexandra Betouni
b4b28d2f98
feat(desktop/contacts) Improvements in contacts
...
Contacts updates currently in base_bc
Closes #4100
2021-12-01 20:51:06 +02:00
Khushboo Mehta
0c1dc30e5a
fix(@desktop/onboarding): backup seed phrase flow is shown for recovered account
...
fixes #3954
2021-11-11 09:33:02 -05:00
Pascal Precht
9adbd37729
refactor: replace StatusNotification with StatusMacNotification
2021-11-05 15:15:14 -04:00
Alexandra Betouni
848f21cd20
fixed url unfurling redirects to the wrong place
2021-11-05 11:02:45 -04:00
Iuri Matias
7c8f3f5923
add mnemonic module
2021-11-05 11:02:45 -04:00
Alexandra Betouni
426c116bac
refactor(desktop) Made shared a QML module
...
Use it as import shared 1.0, import shared.controls 1.0
etc instead of import "../../../shared"
Closes #3934
2021-10-27 18:05:45 -04:00
Pascal Precht
72b46c3b94
refactor: remove/replace StatusContextMenuButton with StatusQ components
2021-10-27 09:52:40 -04:00
Khushboo Mehta
be7a56cc27
refactor: replace all the StatusImageIdenticon with StatusQ's StatusSmartIdenticon
...
closes #3848
2021-10-26 19:23:33 +02:00