From b8bdfdc0096e9a6780c2b965b993ace048799c15 Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Mon, 24 Apr 2023 08:13:58 -0700 Subject: [PATCH 1/4] fix for missing variable in ipad layout --- app/mobile/src/session/Session.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mobile/src/session/Session.jsx b/app/mobile/src/session/Session.jsx index f0065fc7..7f201907 100644 --- a/app/mobile/src/session/Session.jsx +++ b/app/mobile/src/session/Session.jsx @@ -216,7 +216,7 @@ function HomeScreen({ navParams }) { - + From 6791d561232e7d3373a6f8bd5ac3f8f7632b5665 Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Tue, 25 Apr 2023 09:36:19 -0700 Subject: [PATCH 2/4] removing error message that only appears in sim --- app/mobile/src/context/useAppContext.hook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mobile/src/context/useAppContext.hook.js b/app/mobile/src/context/useAppContext.hook.js index 2ecad9c8..d0ad2a60 100644 --- a/app/mobile/src/context/useAppContext.hook.js +++ b/app/mobile/src/context/useAppContext.hook.js @@ -48,7 +48,7 @@ export function useAppContext() { } catch (err) { console.log(err); - Alert.alert('FCM', err.toString()); + //Alert.alert('FCM', err.toString()); } } catch (err) { From 75f283799e9c4ad278109ca4593ee9adbd1dcbaa Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Tue, 25 Apr 2023 16:04:48 -0700 Subject: [PATCH 3/4] fix for locked sealed topics --- .../src/session/conversation/addTopic/useAddTopic.hook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mobile/src/session/conversation/addTopic/useAddTopic.hook.js b/app/mobile/src/session/conversation/addTopic/useAddTopic.hook.js index f68f9b23..8d5bae84 100644 --- a/app/mobile/src/session/conversation/addTopic/useAddTopic.hook.js +++ b/app/mobile/src/session/conversation/addTopic/useAddTopic.hook.js @@ -37,7 +37,7 @@ export function useAddTopic(contentKey) { useEffect(() => { let conflict = false; - if (state.locked) { + if (state.locked && state.assets.length > 0) { conflict = true; } state.assets.forEach(asset => { From e406ab4c766fe55403c65ef262312c2897461456 Mon Sep 17 00:00:00 2001 From: Pierre Balzack <96387156+balzack@users.noreply.github.com> Date: Wed, 26 Apr 2023 13:35:33 -0700 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d94a9f44..1cc76f7b 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Databag is a self-hosted messaging service. Notable features include: - Federated (accounts on different nodes can communicate) - Public-Private key based identity (not bound to any blockchain or hosting domain) - End-to-End encryption (the hosting admin cannot view sealed topics, deafult unsealed) -- Audio and Video Calls (nat tranversal requires separate relay server) +- Audio and Video Calls (nat traversal requires separate relay server) - Topic based threads (messages organized by topic not contacts) - Lightweight (server can run on a raspberry pi zero v1.3) - Low latency (use of websockets for push events to avoid polling)