Merge pull request #41 from outis1one/claude/read-repo-YMu21

v0.9.4: Reveal mode fix, MIT license, test suite CSP fix
This commit is contained in:
Outis
2026-03-28 21:21:50 -04:00
committed by GitHub
7 changed files with 44 additions and 57 deletions
+4 -1
View File
@@ -154,7 +154,10 @@
const val = changes.ss_identity.newValue;
if (!val?._ssLocalEncrypted) msg.identity = mergeProfiles(val);
}
if (changes.ss_settings) msg.settings = changes.ss_settings.newValue;
if (changes.ss_settings) {
const val = changes.ss_settings.newValue;
if (!val?._ssLocalEncrypted) msg.settings = val;
}
// Only post if we have something meaningful to send
if (msg.mappings || msg.identity || msg.settings) {
+1 -1
View File
@@ -631,7 +631,7 @@
</section>
<footer>
<p>Silent Send v0.9.3</p>
<p>Silent Send v0.9.4</p>
<p style="font-size:11px;color:#9ca3af;margin-top:6px;max-width:600px">
Silent Send is a convenience tool, not a security guarantee. Third-party sites may change how they send data at any time, which can cause missed substitutions without warning. You are responsible for verifying your data before sending. See the <a href="https://github.com/outis1one/silent-send/blob/main/LICENSE" target="_blank" style="color:#6b7280">LICENSE</a> for full terms.
</p>