pull/571/head
Mikunj 6 years ago
parent 1250d93252
commit 3ba71fad9e

@ -1234,8 +1234,7 @@
"Additional detail provided for Link Previews option in settings screen" "Additional detail provided for Link Previews option in settings screen"
}, },
"linkPreviewsSettingDescription": { "linkPreviewsSettingDescription": {
"message": "message": "Enable local link previews",
"Enable local link previews",
"description": "Description shown for the Link Preview option " "description": "Description shown for the Link Preview option "
}, },
"spellCheckDescription": { "spellCheckDescription": {

@ -1,4 +1,4 @@
const { notarize } = require("electron-notarize") const { notarize } = require('electron-notarize');
/* /*
Pre-requisites: https://github.com/electron/electron-notarize#prerequisites Pre-requisites: https://github.com/electron/electron-notarize#prerequisites
@ -10,19 +10,19 @@ const { notarize } = require("electron-notarize")
Notarizing: https://kilianvalkhof.com/2019/electron/notarizing-your-electron-application/ Notarizing: https://kilianvalkhof.com/2019/electron/notarizing-your-electron-application/
*/ */
exports.default = async function notarizing (context) { exports.default = async function notarizing(context) {
const { electronPlatformName, appOutDir } = context const { electronPlatformName, appOutDir } = context;
if (electronPlatformName !== "darwin") { if (electronPlatformName !== 'darwin') {
return return;
} }
const appName = context.packager.appInfo.productFilename const appName = context.packager.appInfo.productFilename;
return notarize({ return notarize({
appBundleId: "com.loki-project.messenger-desktop", appBundleId: 'com.loki-project.messenger-desktop',
appPath: `${appOutDir}/${appName}.app`, appPath: `${appOutDir}/${appName}.app`,
appleId: process.env.SIGNING_APPLE_ID, appleId: process.env.SIGNING_APPLE_ID,
appleIdPassword: process.env.SIGNING_APP_PASSWORD, appleIdPassword: process.env.SIGNING_APP_PASSWORD,
ascProvider: process.env.SIGNING_TEAM_ID ascProvider: process.env.SIGNING_TEAM_ID,
}) });
} };

@ -612,7 +612,6 @@
storage.put('linkPreviews', true); storage.put('linkPreviews', true);
}); });
// listeners // listeners
Whisper.RotateSignedPreKeyListener.init(Whisper.events, newVersion); Whisper.RotateSignedPreKeyListener.init(Whisper.events, newVersion);
// window.Signal.RefreshSenderCertificate.initialize({ // window.Signal.RefreshSenderCertificate.initialize({

Loading…
Cancel
Save