feat: Rename to Toju and add translation
Some checks failed
Deploy Web Apps / deploy (push) Successful in 5m52s
Build Android APK / build-android-apk (push) Failing after 23m15s
Queue Release Build / prepare (push) Successful in 1m42s
Queue Release Build / build-linux (push) Failing after 9m33s
Queue Release Build / build-windows (push) Successful in 26m5s
Queue Release Build / finalize (push) Has been skipped

This commit is contained in:
2026-06-05 17:13:03 +02:00
parent 8ecfc9a1fe
commit ee293d7daf
301 changed files with 8247 additions and 2218 deletions

View File

@@ -9,6 +9,7 @@ import {
} from 'electron';
import * as fs from 'fs';
import * as path from 'path';
import { DESKTOP_APP_DISPLAY_NAME } from '../app/desktop-branding.rules';
import { readDesktopSettings } from '../desktop-settings';
let mainWindow: BrowserWindow | null = null;
@@ -114,11 +115,11 @@ function ensureTray(): void {
}
tray = new Tray(trayIconPath);
tray.setToolTip('MetoYou');
tray.setToolTip('Toju');
tray.setContextMenu(
Menu.buildFromTemplate([
{
label: 'Open MetoYou',
label: 'Open Toju',
click: () => {
void showMainWindow();
}
@@ -127,7 +128,7 @@ function ensureTray(): void {
type: 'separator'
},
{
label: 'Close MetoYou',
label: 'Close Toju',
click: () => {
requestAppQuit();
}
@@ -200,6 +201,7 @@ export async function createWindow(): Promise<void> {
minWidth: 800,
minHeight: 600,
frame: false,
title: DESKTOP_APP_DISPLAY_NAME,
titleBarStyle: 'hidden',
backgroundColor: '#0a0a0f',
...(windowIconPath ? { icon: windowIconPath } : {}),