Skip to content

Commit 3ed8766

Browse files
committed
v4.3.120 update
1 parent b087adf commit 3ed8766

File tree

10 files changed

+209
-554
lines changed

10 files changed

+209
-554
lines changed

README.md

Lines changed: 195 additions & 540 deletions
Large diffs are not rendered by default.

dist/app-boot.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15294,7 +15294,7 @@ Right-click or Ctrl+click to disconnect`,
1529415294
React.createElement("p", {
1529515295
key: "subtitle",
1529615296
className: "text-xs sm:text-sm text-muted hidden sm:block"
15297-
}, "End-to-end freedom v4.3.120")
15297+
}, "End-to-end freedom v4.4.18")
1529815298
])
1529915299
]),
1530015300
// Status and Controls - Responsive
@@ -16049,7 +16049,7 @@ function Roadmap() {
1604916049
},
1605016050
// current and future phases
1605116051
{
16052-
version: "v4.3.120",
16052+
version: "v4.4.18",
1605316053
title: "Enhanced Security Edition",
1605416054
status: "current",
1605516055
date: "Now",

dist/app-boot.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116

117117

118118
<!-- GitHub Pages SEO -->
119-
<meta name="description" content="SecureBit.chat v4.3.120 — P2P messenger with ECDH + DTLS + SAS security and 18-layer military-grade cryptography">
119+
<meta name="description" content="SecureBit.chat v4.4.18 — P2P messenger with ECDH + DTLS + SAS security and 18-layer military-grade cryptography">
120120
<meta name="keywords" content="P2P messenger, ECDH, DTLS, SAS, encryption, WebRTC, privacy, ASN.1 validation, military-grade security, 18-layer defense, MITM protection, PFS">
121121
<meta name="author" content="Volodymyr">
122122
<link rel="canonical" href="https://github.com/SecureBitChat/securebit-chat/">

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "SecureBit.chat v4.3.120 - ECDH + DTLS + SAS",
2+
"name": "SecureBit.chat v4.4.18 - ECDH + DTLS + SAS",
33
"short_name": "SecureBit",
44
"description": "P2P messenger with ECDH + DTLS + SAS security, military-grade cryptography and Lightning Network payments",
55
"start_url": "./",

src/app.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1913,7 +1913,7 @@
19131913
}
19141914
}
19151915

1916-
handleMessage(' SecureBit.chat Enhanced Security Edition v4.3.120 - ECDH + DTLS + SAS initialized. Ready to establish a secure connection with ECDH key exchange, DTLS fingerprint verification, and SAS authentication to prevent MITM attacks.', 'system');
1916+
handleMessage(' SecureBit.chat Enhanced Security Edition v4.4.18 - ECDH + DTLS + SAS initialized. Ready to establish a secure connection with ECDH key exchange, DTLS fingerprint verification, and SAS authentication to prevent MITM attacks.', 'system');
19171917

19181918
const handleBeforeUnload = (event) => {
19191919
if (event.type === 'beforeunload' && !isTabSwitching) {

src/components/ui/Header.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ const EnhancedMinimalHeader = ({
557557
React.createElement('p', {
558558
key: 'subtitle',
559559
className: 'text-xs sm:text-sm text-muted hidden sm:block'
560-
}, 'End-to-end freedom v4.3.120')
560+
}, 'End-to-end freedom v4.4.18')
561561
])
562562
]),
563563

src/components/ui/Roadmap.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function Roadmap() {
7575

7676
// current and future phases
7777
{
78-
version: "v4.3.120",
78+
version: "v4.4.18",
7979
title: "Enhanced Security Edition",
8080
status: "current",
8181
date: "Now",

src/scripts/pwa-globals.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ window.showUpdateNotification = function showUpdateNotification() {
4848
<i class="fas fa-download text-lg"></i>
4949
<div class="flex-1">
5050
<div class="font-medium">Update Available</div>
51-
<div class="text-sm opacity-90">SecureBit.chat v4.3.120 - ECDH + DTLS + SAS is ready</div>
51+
<div class="text-sm opacity-90">SecureBit.chat v4.4.18 - ECDH + DTLS + SAS is ready</div>
5252
</div>
5353
<button data-action="reload" class="bg-white/20 hover:bg-white/30 px-3 py-1 rounded text-sm font-medium transition-colors">
5454
Update

sw.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SecureBit.chat Service Worker
2-
// Conservative PWA Edition v4.3.120 - Minimal Caching Strategy
2+
// Conservative PWA Edition v4.4.18 - Minimal Caching Strategy
33

4-
const CACHE_NAME = 'securebit-pwa-v4.3.120';
5-
const STATIC_CACHE = 'securebit-pwa-static-v4.3.120';
6-
const DYNAMIC_CACHE = 'securebit-pwa-dynamic-v4.3.120';
4+
const CACHE_NAME = 'securebit-pwa-v4.4.18';
5+
const STATIC_CACHE = 'securebit-pwa-static-v4.4.18';
6+
const DYNAMIC_CACHE = 'securebit-pwa-dynamic-v4.4.18';
77

88
// Essential files for PWA offline functionality
99
const STATIC_ASSETS = [

0 commit comments

Comments
 (0)