0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-23 22:22:59 +03:00

Merge branch 'dev'

This commit is contained in:
Andrey Onishchenko 2024-10-03 19:30:32 +03:00
commit 32faed647c
6 changed files with 56 additions and 12 deletions

View File

@ -14,6 +14,8 @@ Native YandexMusic client for Linux. Built using repacking of Windows client (El
- [Custom Electron binary](#custom-electron-binary) - [Custom Electron binary](#custom-electron-binary)
- [Electron arguments](#electron-arguments) - [Electron arguments](#electron-arguments)
- [Tray mode](#tray-mode) - [Tray mode](#tray-mode)
- [Dev tools](#dev-tools)
- [Custom title bar](#custom-title-bar)
- [Manual Build](#manual-build) - [Manual Build](#manual-build)
- [Prerequisites](#prerequisites) - [Prerequisites](#prerequisites)
- [Extract app only](#extract-app-only) - [Extract app only](#extract-app-only)
@ -150,6 +152,12 @@ Chromium developer/debug tools can be enabled by setting `DEV_TOOLS` option to `
*** ***
### Custom title bar
Yandex Music's custom Windows-styled titlebar can be enabled by setting `CUSTOM_TITLE_BAR` option to `1`. Also makes the window frameless.
***
## Manual Build ## Manual Build
### Prerequisites ### Prerequisites

View File

@ -1,9 +1,9 @@
diff --git a/package.json b/package.json diff --git a/package.json b/package.json
--- a/package.json --- a/package.json
+++ b/package.json +++ b/package.json
@@ -50,5 +50,6 @@ @@ -49,5 +49,6 @@
"kk", "kk",
"az" "uz"
] ]
- } - }
+ }, + },

View File

@ -28,9 +28,9 @@ diff --git a/main/lib/createTray.js b/main/lib/createTray.js
diff --git a/main/index.js b/main/index.js diff --git a/main/index.js b/main/index.js
--- a/main/index.js --- a/main/index.js
+++ b/main/index.js +++ b/main/index.js
@@ -46,6 +46,9 @@ Logger_js_1.Logger.setupLogger(); @@ -48,6 +48,9 @@ Logger_js_1.Logger.setupLogger();
(0, handleDeeplink_js_1.handleDeeplink)(window);
(0, handleMetrikaRequests_js_1.handleMetrikaRequests)(window); (0, handleMetrikaRequests_js_1.handleMetrikaRequests)(window);
(0, handleFrames_js_1.handleFrames)(window);
(0, handleCrash_js_1.handleCrash)(); (0, handleCrash_js_1.handleCrash)();
+ const {createTray} = require('./lib/createTray.js'); + const {createTray} = require('./lib/createTray.js');
+ const trayEnabled = process.env.TRAY_ENABLED && process.env.TRAY_ENABLED > 0; + const trayEnabled = process.env.TRAY_ENABLED && process.env.TRAY_ENABLED > 0;

View File

@ -12,4 +12,4 @@ diff --git a/main/config.js b/main/config.js
+ enableDevTools: devTools, + enableDevTools: devTools,
enableWebSecurity: true, enableWebSecurity: true,
enableAutoUpdate: true, enableAutoUpdate: true,
enableUpdateByProbability: false, enableUpdateByProbability: true,

View File

@ -1,14 +1,50 @@
diff --git a/main/index.js b/main/index.js diff --git a/main/index.js b/main/index.js
--- a/main/index.js --- a/main/index.js
+++ b/main/index.js +++ b/main/index.js
@@ -50,9 +50,7 @@ Logger_js_1.Logger.setupLogger(); @@ -52,7 +52,8 @@ Logger_js_1.Logger.setupLogger();
const trayEnabled = process.env.TRAY_ENABLED && process.env.TRAY_ENABLED > 0; const trayEnabled = process.env.TRAY_ENABLED && process.env.TRAY_ENABLED > 0;
if (trayEnabled){createTray(window);} if (trayEnabled){createTray(window);}
await (0, loadURL_js_1.loadURL)(window); await (0, loadURL_js_1.loadURL)(window);
- if (node_os_1.default.platform() === platform_js_1.Platform.WINDOWS) { - if (node_os_1.default.platform() === platform_js_1.Platform.WINDOWS) {
- (0, customTitleBar_js_1.createCustomTitleBar)(window); + const customTitleBar = process.env.CUSTOM_TITLE_BAR && process.env.CUSTOM_TITLE_BAR > 0;
- } + if (customTitleBar) {
+ (0, customTitleBar_js_1.createCustomTitleBar)(window); (0, customTitleBar_js_1.createCustomTitleBar)(window);
}
if (config_js_1.config.enableAutoUpdate) { if (config_js_1.config.enableAutoUpdate) {
updater.start();
updater.onUpdate((version) => {
diff --git a/main/lib/createWindow.js b/main/lib/createWindow.js
--- a/main/lib/createWindow.js
+++ b/main/lib/createWindow.js
@@ -36,11 +36,12 @@ const toggleWindowState = (window) => {
(0, tray_js_1.updateTrayMenu)(window);
};
exports.toggleWindowState = toggleWindowState;
+const customTitleBar = process.env.CUSTOM_TITLE_BAR && process.env.CUSTOM_TITLE_BAR > 0;
const createWindow = async () => {
const window = new electron_1.BrowserWindow({
show: false,
center: true,
- titleBarStyle: 'hidden',
+ frame: !customTitleBar,
trafficLightPosition: {
x: 16,
y: 10
diff --git a/main/lib/preload.js b/main/lib/preload.js
--- a/main/lib/preload.js
+++ b/main/lib/preload.js
@@ -10,10 +10,12 @@ const getInitialTheme_js_1 = require("./getInitialTheme.js");
const theme_js_1 = require("../constants/theme.js");
const hostnamePatterns_js_1 = require("../constants/hostnamePatterns.js");
const getDeviceInfo_js_1 = require("./getDeviceInfo.js");
+const customTitleBar = process.env.CUSTOM_TITLE_BAR && process.env.CUSTOM_TITLE_BAR > 0;
electron_1.contextBridge.exposeInMainWorld('VERSION', String(config_js_1.config.buildInfo.VERSION));
electron_1.contextBridge.exposeInMainWorld('BRANCH', String(config_js_1.config.buildInfo.BRANCH));
electron_1.contextBridge.exposeInMainWorld('PLATFORM', node_os_1.default.platform());
electron_1.contextBridge.exposeInMainWorld('DEVICE_INFO', (0, getDeviceInfo_js_1.getDeviceInfo)());
+electron_1.contextBridge.exposeInMainWorld('CUSTOM_TITLE_BAR', customTitleBar);
electron_1.contextBridge.exposeInMainWorld('desktopEvents', {
send(name, ...args) {
electron_1.ipcRenderer.send(name, ...args);

View File

@ -73,7 +73,7 @@ find "./" -type f \( -name "*.js" -o -name "*.js.map" \) -print0 | while IFS= re
# Use 'sed' to perform the replacement in-place # Use 'sed' to perform the replacement in-place
sed -i "s/a.t.WINDOWS/a.t.LINUX/g" "$file" sed -i "s/a.t.WINDOWS/a.t.LINUX/g" "$file"
sed -i "s/B.LINUX/B.WINDOWS/g" "$file" sed -i "s/B.LINUX/B.WINDOWS/g" "$file"
sed -i "s/t4T.WINDOWS/t4T.LINUX/g" "$file" sed -i "s/t4T.WINDOWS/t4T[window.CUSTOM_TITLE_BAR ? 'LINUX' : 'WINDOWS']/g" "$file"
done done
echo "OS spoofed" echo "OS spoofed"