Skip to content

Commit 8abf59a

Browse files
committed
feat: add balloon notifs
1 parent cbe8991 commit 8abf59a

File tree

9 files changed

+50
-39
lines changed

9 files changed

+50
-39
lines changed

assets/lang/en-US.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@
3030
"settings-startMinimized-desc": "Legcord starts in background and remains out of your way.",
3131
"settings-MultiInstance": "Multi Instance",
3232
"settings-MultiInstance-desc": "When enabled you'll be able to start up many instances of Legcord.",
33-
"settings-useLegacyCapturer": "Use legacy capturer",
34-
"settings-useLegacyCapturer-desc": "Use legacy screenshare module, instead of the new one. If you're experiencing issues with screen sharing, try enabling this.",
33+
"settings-legacyDynamicIcon": "Legacy dynamic icon",
34+
"settings-legacyDynamicIcon-desc": "Sets the icon to current Discord favicon.",
35+
"settings-openCustomIconDialog": "Set desktop icon",
3536
"settings-hardwareAcceleration": "Hardware acceleration",
3637
"settings-hardwareAcceleration-desc": "Hardware acceleration uses your GPU to make Legcord run faster. If you're experiencing visual glitches, try disabling this.",
3738
"settings-mobileMode": "Mobile mode",

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "legacycord",
2+
"name": "legcord-legacy",
33
"version": "1.0.0",
4-
"description": "Legacycord is a custom client designed to enhance your Discord experience while keeping everything lightweight.",
4+
"description": "Legcord Legacy is a custom client designed to enhance your Discord experience while keeping everything lightweight.",
55
"main": "ts-out/main.js",
66
"engines": {
77
"node": ">=18.0.0"
@@ -21,14 +21,14 @@
2121
},
2222
"repository": {
2323
"type": "git",
24-
"url": "git+https://github.com/legcord/legacycord.git"
24+
"url": "git+https://github.com/Legcord/Legacy.git"
2525
},
2626
"author": "smartfrigde",
2727
"license": "OSL-3.0",
2828
"bugs": {
29-
"url": "https://github.com/legcord/legacycord/issues"
29+
"url": "https://github.com/Legcord/Legacy/issues"
3030
},
31-
"homepage": "https://github.com/legcord/legacycord#readme",
31+
"homepage": "https://github.com/Legcord/Legacy#readme",
3232
"devDependencies": {
3333
"@types/node": "^18.11.9",
3434
"@types/ws": "^8.5.3",

src/@types/legcordWindow.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export interface LegcordWindow {
1414
getDisplayMediaSelector: () => Promise<string>;
1515
version: string;
1616
platform: string;
17+
displayBalloon: (title: string, content: string) => void;
1718
openThemesWindow: () => void;
1819
openQuickCssFile: () => void;
1920
restart: () => void;

src/preload/bridge.ts

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ contextBridge.exposeInMainWorld("legcord", {
6666
return result as string;
6767
}),
6868
getDisplayMediaSelector,
69+
displayBalloon: (title: string, body: string) => ipcRenderer.send("displayBalloon", title, body),
6970
version: ipcRenderer.sendSync("get-app-version", "app-version") as string,
7071
platform: ipcRenderer.sendSync("getOS") as string,
7172
restart: () => ipcRenderer.send("restart"),

src/preload/mods/shelter.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ const requiredPlugins: Record<string, [string, {isVisible: boolean; allowedActio
77
"legcord-screenshare": [
88
"legcord://plugins/screenshareQualityFix/",
99
{isVisible: true, allowedActions: {toggle: true}}
10-
]
10+
],
11+
"legcord-balloonNotifs": ["legcord://plugins/balloonNotifs/", {isVisible: true, allowedActions: {toggle: true}}]
1112
};
1213
async function inject() {
1314
try {

src/shelter/balloonNotifs/index.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
const {
2+
flux: {dispatcher}
3+
} = shelter;
4+
5+
function notificationCreate(data) {
6+
console.log(data);
7+
window.legcord.displayBalloon(data.title, data.body);
8+
}
9+
10+
export function onLoad() {
11+
dispatcher.subscribe("RPC_NOTIFICATION_CREATE", notificationCreate);
12+
}
13+
14+
export function onUnload() {
15+
dispatcher.unsubscribe("RPC_NOTIFICATION_CREATE", notificationCreate);
16+
}

src/shelter/balloonNotifs/plugin.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "Balloon Notifications",
3+
"author": "smartfrigde",
4+
"description": "Redirects modern notifications to balloon notifications. Windows only."
5+
}

src/shelter/settings/pages/SettingsPage.tsx

+9-30
Original file line numberDiff line numberDiff line change
@@ -62,24 +62,9 @@ export function SettingsPage() {
6262
<option value="default">{store.i18n["settings-theme-default"]}</option>
6363
<option value="native">{store.i18n["settings-theme-native"]}</option>
6464
<Show when={window.legcord.platform === "win32"}>
65-
<option value="overlay">{store.i18n["settings-theme-overlay"]}</option>
65+
<option value="transparent">{store.i18n["settings-theme-transparent"]}</option>
6666
</Show>
6767
</DropdownItem>
68-
<DropdownItem
69-
value={store.settings.transparency}
70-
onChange={(e) =>
71-
setConfig("transparency", (e.target as HTMLInputElement).value as Settings["transparency"], true)
72-
}
73-
title={store.i18n["settings-transparency"]}
74-
note={store.i18n["settings-transparency-desc"]}
75-
link="https://github.com/Legcord/Legcord/wiki/Transparency-options"
76-
>
77-
<option value="universal">{store.i18n["settings-transparency-universal"]}</option>
78-
<Show when={window.legcord.platform === "win32"}>
79-
<option value="modern">{store.i18n["settings-transparency-modern"]}</option>
80-
</Show>
81-
<option value="none">{store.i18n["settings-none"]}</option>
82-
</DropdownItem>
8368
<DropdownItem
8469
value={store.settings.trayIcon}
8570
onChange={(e) =>
@@ -192,25 +177,15 @@ export function SettingsPage() {
192177
{store.i18n["settings-category-legacy"]}
193178
</Header>
194179
<SwitchItem
195-
note={store.i18n["settings-useLegacyCapturer-desc"]}
196-
value={store.settings.useLegacyCapturer}
197-
onChange={(e: boolean) => setConfig("useLegacyCapturer", e, true)}
180+
note={store.i18n["settings-legacyDynamicIcon-desc"]}
181+
value={store.settings.legacyDynamicIcon}
182+
onChange={(e: boolean) => setConfig("legacyDynamicIcon", e, true)}
198183
>
199-
{store.i18n["settings-useLegacyCapturer"]}
184+
{store.i18n["settings-legacyDynamicIcon"]}
200185
</SwitchItem>
201186
<Header class={classes.category} tag={HeaderTags.H5}>
202187
{store.i18n["settings-category-debug"]}
203188
</Header>
204-
<DropdownItem
205-
value={store.settings.audio}
206-
onChange={(e) => setConfig("audio", (e.target as HTMLInputElement).value as Settings["audio"])}
207-
title={store.i18n["settings-audio"]}
208-
note={store.i18n["settings-audio-desc"]}
209-
link="https://www.electronjs.org/docs/latest/api/session#sessetdisplaymediarequesthandlerhandler-opts"
210-
>
211-
<option value="loopback">Loopback</option>
212-
<option value="loopbackWithMute">Loopback with mute</option>
213-
</DropdownItem>
214189
<SwitchItem
215190
note={store.i18n["settings-hardwareAcceleration-desc"]}
216191
value={store.settings.hardwareAcceleration}
@@ -225,6 +200,10 @@ export function SettingsPage() {
225200
>
226201
{store.i18n["settings-disableHttpCache"]}
227202
</SwitchItem>
203+
<Button size={ButtonSizes.MAX} onClick={window.legcord.settings.openCustomIconDialog}>
204+
{store.i18n["settings-openCustomIconDialog"]}
205+
</Button>
206+
<br />
228207
<Button size={ButtonSizes.MAX} onClick={window.legcord.settings.openStorageFolder}>
229208
{store.i18n["settings-storageFolder"]}
230209
</Button>

src/tray.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Menu, Tray, app, nativeImage} from "electron";
1+
import {Menu, Tray, app, ipcMain, nativeImage} from "electron";
22
import {createInviteWindow, mainWindow} from "./window";
33
import {getConfig, getDisplayVersion} from "./utils";
44
import * as path from "path";
@@ -78,5 +78,12 @@ app.whenReady().then(async () => {
7878
tray.on("click", function () {
7979
mainWindow.show();
8080
});
81+
ipcMain.on("displayBalloon", (e, title: string, content: string) => {
82+
console.log("Display balloon");
83+
tray.displayBalloon({
84+
title: title,
85+
content: content
86+
});
87+
});
8188
}
8289
});

0 commit comments

Comments
 (0)