- Would you like to be notified of new activity once a day?
+
+ Would you like to be notified of new activity, up to once a day?
+
+
+ Would you like to get a reminder message once a day?
+
Waiting for system initialization, which may take up to 5 seconds...
@@ -24,28 +29,51 @@
-
- Yes, tell me at:
-
-
-
+ Yes, send me a message when there is new data for me
+
+
+ Yes, send me this message:
+
+
- AM
- PM
+
+
+
+ (100 characters max)
-
+
+
+
+
+ ... at:
+
+
+
+ AM
+ PM
+
+
+
@@ -581,7 +583,12 @@ export default class NewEditProjectView extends Vue {
);
const nostrPubKey = pubPri?.publicKey;
- const trustrootsUrl = DEFAULT_PARTNER_API_SERVER + "/api/partner/link";
+ let partnerServer = DEFAULT_PARTNER_API_SERVER;
+ const settings = await retrieveSettingsForActiveAccount();
+ if (settings.partnerApiServer) {
+ partnerServer = settings.partnerApiServer;
+ }
+ const trustrootsUrl = partnerServer + "/api/partner/link";
const timeSafariUrl = window.location.origin + "/claim/" + jwtId;
const content = this.fullClaim.name + " - see " + timeSafariUrl;
// Why does IntelliJ not see matching types?
diff --git a/sw_scripts/additional-scripts.js b/sw_scripts/additional-scripts.js
index 2312163..7897f9d 100644
--- a/sw_scripts/additional-scripts.js
+++ b/sw_scripts/additional-scripts.js
@@ -81,7 +81,7 @@ self.addEventListener("push", function (event) {
let message = "Got some empty message.";
if (payload && payload.title == DIRECT_PUSH_TITLE) {
// skip any search logic and show the message directly
- title = "Direct Notification";
+ title = "Direct Message";
message = payload.message || "No details were provided.";
} else {
// any other title will run through regular filtering logic
diff --git a/test-playwright/LICENSE b/test-playwright/LICENSE
new file mode 100644
index 0000000..19a5a78
--- /dev/null
+++ b/test-playwright/LICENSE
@@ -0,0 +1,8 @@
+The author disclaims copyright to this source code. In place of a legal notice, here is a blessing:
+
+May you do good and not evil.
+May you find forgiveness for yourself and forgive others.
+May you share freely, never taking more than you give.
+
+________________________________________________________________
+from https://www.sqlite.org/src/info/689401a6cfb4c234 and memorialized here https://spdx.org/licenses/blessing.html