summaryrefslogtreecommitdiffstats
path: root/src/index.ts
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-07-29 21:12:16 -0600
committerLibravatar GitHub <noreply@github.com>2023-07-30 08:42:16 +0530
commit32f76b74a69ad4d60a014bf075c39517888436bc (patch)
tree753378cc30f52d1e0e51be64b5a83d39f08f39c8 /src/index.ts
parent6.4.1-nightly.15 [skip ci] (diff)
downloadferdium-app-32f76b74a69ad4d60a014bf075c39517888436bc.tar.gz
ferdium-app-32f76b74a69ad4d60a014bf075c39517888436bc.tar.zst
ferdium-app-32f76b74a69ad4d60a014bf075c39517888436bc.zip
refactor: various improvements (#1296)
* refactor: various improvements - enable no-use-before-define eslint rule - shuffle code to conform to no-use-before-define eslint rule - remove btoa dependency which is deprecated and replace with Buffer.from(string).toString('base64') - convert some any types into useful ones - add type annotations where possible - remove unused @types/expect.js - install @types/semver and ts-node which were missing - repair and rewrite add-crowdin-contributors script - remove export keyword from variables which are never consumed in another file - remove unity indicator hack where linked issue was closed - remove module declaration for kebab-case which is unused - add missing state interface for certain components - remove default exports for files which already have a named export - export IRecipePreview so it can be used throughout codebase - remove unused removeCacheForCallWith method from CachedRequest.ts - cleanup unused colors and styles inside legacy theme * - improve ColorPickerInput - fix invalid DOM nesting with div inside p in EditSettingsForm - fix progressbarAccentColor color picker not updating input when using slider - install missing @types/react-color dependency
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts17
1 files changed, 5 insertions, 12 deletions
diff --git a/src/index.ts b/src/index.ts
index 0487d692c..1c616b499 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -156,16 +156,6 @@ if (gotTheLock) {
156 app.quit(); 156 app.quit();
157} 157}
158 158
159// Fix Unity indicator issue
160// https://github.com/electron/electron/issues/9046
161if (
162 isLinux &&
163 process.env.XDG_CURRENT_DESKTOP &&
164 ['Pantheon', 'Unity:Unity7'].includes(process.env.XDG_CURRENT_DESKTOP)
165) {
166 process.env.XDG_CURRENT_DESKTOP = 'Unity';
167}
168
169// Disable GPU acceleration 159// Disable GPU acceleration
170if ( 160if (
171 !retrieveSettingValue( 161 !retrieveSettingValue(
@@ -674,8 +664,11 @@ ipcMain.handle('get-desktop-capturer-sources', () =>
674); 664);
675 665
676ipcMain.on('window.toolbar-double-clicked', () => { 666ipcMain.on('window.toolbar-double-clicked', () => {
677 // eslint-disable-next-line @typescript-eslint/no-unused-expressions 667 if (mainWindow?.isMaximized()) {
678 mainWindow?.isMaximized() ? mainWindow.unmaximize() : mainWindow?.maximize(); 668 mainWindow.unmaximize();
669 } else {
670 mainWindow?.maximize();
671 }
679}); 672});
680 673
681// Quit when all windows are closed. 674// Quit when all windows are closed.