From dd2cdd23d77251f58395be4e954abeb178ba04fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?0=25=20=5B=E2=96=88=20=E2=96=88=20=E2=96=88=20=E2=96=88=20?= =?UTF-8?q?=E2=96=88=20=E2=96=88=20=E2=96=88=20=E2=96=88=20=E2=96=88=20?= =?UTF-8?q?=E2=96=88=5D=20100=25?= Date: Mon, 15 Jun 2026 22:34:10 -0500 Subject: [PATCH] v1.0.1 Update --- Peercord Source/index.js | 98 +- Peercord Source/package.json | 8 +- Peercord Source/src/components/CallView.jsx | 46 +- .../src/components/ChannelList.jsx | 87 +- Peercord Source/src/components/ChatArea.jsx | 1070 ++++++++++++++--- .../src/components/GroupCallView.jsx | 46 +- Peercord Source/src/components/MainApp.jsx | 223 +++- .../src/components/OnlineUsers.jsx | 55 +- .../src/components/ProfileSettingsModal.jsx | 287 ++++- .../src/components/ServerSettingsModal.jsx | 587 ++++++++- .../src/components/SetupScreen.jsx | 24 +- Peercord Source/src/components/Sidebar.jsx | 176 ++- .../src/components/UserProfileModal.jsx | 71 ++ Peercord Source/src/p2p/handlers.js | 17 +- Peercord Source/src/p2p/index.js | 86 +- Peercord Source/src/p2p/modules/discovery.js | 32 +- Peercord Source/src/p2p/modules/identity.js | 10 +- Peercord Source/src/p2p/modules/messaging.js | 264 +++- Peercord Source/src/p2p/modules/servers.js | 49 +- 19 files changed, 2704 insertions(+), 532 deletions(-) create mode 100644 Peercord Source/src/components/UserProfileModal.jsx diff --git a/Peercord Source/index.js b/Peercord Source/index.js index 4ee1c13..c86c18d 100644 --- a/Peercord Source/index.js +++ b/Peercord Source/index.js @@ -1,4 +1,4 @@ -import { app, BrowserWindow, ipcMain, desktopCapturer, protocol, net } from 'electron'; +import { app, BrowserWindow, ipcMain, desktopCapturer, protocol, net, Tray, Menu } from 'electron'; import path from 'path'; import { fileURLToPath, pathToFileURL } from 'url'; import fs from 'fs'; @@ -11,14 +11,18 @@ const pkgPath = path.join(__dirname, 'package.json'); const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf-8')); // Register custom protocol BEFORE app is ready to ensure localStorage persistence -// FIX: Added stream: true to allow