Enable useSystemPicker in non-production

This commit is contained in:
Fedor Indutny 2024-09-23 10:42:10 -07:00 committed by GitHub
parent 669abab36a
commit 3e86bbb1ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 7 deletions

View file

@ -2,13 +2,14 @@
// SPDX-License-Identifier: AGPL-3.0-only
import type { Session, DesktopCapturerSource, IpcMainEvent } from 'electron';
import { desktopCapturer, ipcMain } from 'electron';
import { app, desktopCapturer, ipcMain } from 'electron';
import { v4 as generateUuid } from 'uuid';
import OS from '../ts/util/os/osMain';
import type { LoggerType } from '../ts/types/Logging';
import { strictAssert } from '../ts/util/assert';
import { type IpcResponseType } from '../ts/util/desktopCapturer';
import { isProduction } from '../ts/util/version';
const SPELL_CHECKER_DICTIONARY_DOWNLOAD_URL = `https://updates.signal.org/desktop/hunspell_dictionaries/${process.versions.electron}/`;
@ -67,6 +68,6 @@ export function updateDefaultSession(
getLogger().error('Failed to get desktopCapturer sources', error);
}
},
{ useSystemPicker: false }
{ useSystemPicker: !isProduction(app.getVersion()) }
);
}

8
package-lock.json generated
View file

@ -204,7 +204,7 @@
"csv-parse": "5.5.2",
"danger": "11.3.1",
"debug": "4.3.3",
"electron": "32.1.0",
"electron": "32.1.2",
"electron-builder": "24.13.3",
"electron-mocha": "12.2.0",
"endanger": "7.0.4",
@ -18004,9 +18004,9 @@
}
},
"node_modules/electron": {
"version": "32.1.0",
"resolved": "https://registry.npmjs.org/electron/-/electron-32.1.0.tgz",
"integrity": "sha512-4etE3K6vPUkHihf7nvawngbB5+jLuUJgZh31f9ki1Gfveo0qwNDkLv/doabw+4zFFWKUXI+uFUpyOpL5+RwS+Q==",
"version": "32.1.2",
"resolved": "https://registry.npmjs.org/electron/-/electron-32.1.2.tgz",
"integrity": "sha512-CXe6doFzhmh1U7daOvUzmF6Cj8hssdYWMeEPRnRO6rB9/bbwMlWctcQ7P8NJXhLQ88/vYUJQrJvlJPh8qM0BRQ==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",

View file

@ -288,7 +288,7 @@
"csv-parse": "5.5.2",
"danger": "11.3.1",
"debug": "4.3.3",
"electron": "32.1.0",
"electron": "32.1.2",
"electron-builder": "24.13.3",
"electron-mocha": "12.2.0",
"endanger": "7.0.4",