Brycord v1.0.36
All checks were successful
Build and Release / build-and-release (push) Successful in 14m34s

This commit is contained in:
Bryan1029384756
2026-02-21 18:03:06 -06:00
parent 133795a0d7
commit 4485fefeb0
9 changed files with 18 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 27
versionName "1.0.35"
versionName "1.0.36"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

View File

@@ -1,7 +1,7 @@
{
"name": "@discord-clone/android",
"private": true,
"version": "1.0.35",
"version": "1.0.36",
"type": "module",
"scripts": {
"cap:sync": "npx cap sync",

View File

@@ -188,6 +188,9 @@ app.whenReady().then(async () => {
const win = BrowserWindow.getFocusedWindow();
if (win) win.close();
});
ipcMain.on('flash-frame', () => {
if (mainWindow && !mainWindow.isDestroyed()) mainWindow.flashFrame(true);
});
// Helper to fetch metadata (Zero-Knowledge: Client fetches previews)

View File

@@ -1,7 +1,7 @@
{
"name": "@discord-clone/electron",
"private": true,
"version": "1.0.35",
"version": "1.0.36",
"description": "Brycord - Electron app",
"author": "Moyettes",
"type": "module",
@@ -37,8 +37,7 @@
}
],
"win": {
"target": ["nsis"],
"signAndEditExecutable": false
"target": ["nsis"]
},
"mac": {
"target": ["dmg", "zip"],

View File

@@ -25,6 +25,7 @@ contextBridge.exposeInMainWorld('windowControls', {
minimize: () => ipcRenderer.send('window-minimize'),
maximize: () => ipcRenderer.send('window-maximize'),
close: () => ipcRenderer.send('window-close'),
flashFrame: () => ipcRenderer.send('flash-frame'),
});
contextBridge.exposeInMainWorld('appSettings', {

View File

@@ -52,6 +52,7 @@ const electronPlatform = {
minimize: () => window.windowControls.minimize(),
maximize: () => window.windowControls.maximize(),
close: () => window.windowControls.close(),
flashFrame: () => window.windowControls.flashFrame(),
},
updates: {
checkUpdate: () => window.updateAPI.checkFlatpakUpdate(),

View File

@@ -1,7 +1,7 @@
{
"name": "@discord-clone/web",
"private": true,
"version": "1.0.35",
"version": "1.0.36",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -1,7 +1,7 @@
{
"name": "@discord-clone/shared",
"private": true,
"version": "1.0.35",
"version": "1.0.36",
"type": "module",
"main": "src/App.jsx",
"dependencies": {

View File

@@ -512,7 +512,8 @@ const InputContextMenu = ({ x, y, onClose, onPaste }) => {
};
const ChatArea = ({ channelId, channelName, channelType, username, channelKey, userId: currentUserId, showMembers, onToggleMembers, onOpenDM, showPinned, onTogglePinned, jumpToMessageId, onClearJumpToMessage }) => {
const { crypto } = usePlatform();
const platform = usePlatform();
const { crypto } = platform;
const isMobile = useIsMobile();
const { isReceivingScreenShareAudio } = useVoice();
const searchCtx = useSearch();
@@ -1236,8 +1237,11 @@ const ChatArea = ({ channelId, channelName, channelType, username, channelKey, u
}
}
if (shouldPing) playPingSound();
}, [decryptedMessages, currentUserId, isMentionedInContent, playPingSound]);
if (shouldPing) {
playPingSound();
if (!document.hasFocus()) platform.windowControls?.flashFrame?.();
}
}, [decryptedMessages, currentUserId, isMentionedInContent, playPingSound, platform]);
// Capture the unread divider position when read state loads for a channel
const unreadDividerCapturedRef = useRef(null);