diff --git a/CHANGELOG.md b/CHANGELOG.md index 13c54f1a0..c13a4aa38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## ? +### Added +- Send list of contacts to someone +### Changed +- Moved contact actions from list onto detail page ## [0.3.20] - 2024.08.18 - 4064eb75a9743ca268bf00016fa0a5fc5dec4e30 diff --git a/src/db/tables/contacts.ts b/src/db/tables/contacts.ts index 4ddc4dec1..e6369b228 100644 --- a/src/db/tables/contacts.ts +++ b/src/db/tables/contacts.ts @@ -4,8 +4,8 @@ export interface Contact { nextPubKeyHashB64?: string; // base64-encoded SHA256 hash of next public key profileImageUrl?: string; publicKeyBase64?: string; - seesMe?: boolean; - registered?: boolean; + seesMe?: boolean; // cached value of the server setting + registered?: boolean; // cached value of the server setting } export const ContactSchema = { diff --git a/src/views/ContactQRScanShowView.vue b/src/views/ContactQRScanShowView.vue index 4490211eb..aff032acb 100644 --- a/src/views/ContactQRScanShowView.vue +++ b/src/views/ContactQRScanShowView.vue @@ -458,9 +458,9 @@ export default class ContactQRScanShow extends Vue { group: "alert", type: "info", title: "Copied", - text: "Your DID was copied to the clipboard. Have them paste it on their 'People' screen to add you.", + text: "Your DID was copied to the clipboard. Have them paste it in the box on their 'People' screen to add you.", }, - 10000, + 5000, ); }); } diff --git a/src/views/ContactsView.vue b/src/views/ContactsView.vue index b2714e5c6..524ddd0a6 100644 --- a/src/views/ContactsView.vue +++ b/src/views/ContactsView.vue @@ -41,14 +41,43 @@ -
There are no contacts.
+