Skip to content

Commit

Permalink
v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikunj committed Jul 17, 2020
2 parents b631b13 + d943a94 commit b2073e8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "session-messenger-desktop",
"productName": "Session",
"description": "Private messaging from your desktop",
"version": "1.1.1",
"version": "1.1.2",
"license": "GPL-3.0",
"author": {
"name": "Loki Project",
Expand Down
19 changes: 9 additions & 10 deletions password_preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,18 @@ window.getEnvironment = () => config.environment;
window.getVersion = () => config.version;
window.getAppInstance = () => config.appInstance;

// So far we're only using this for Signal.Types
const Signal = require('./js/modules/signal');
const electron = require('electron');

const ipc = electron.ipcRenderer;

window.Signal = Signal.setup({
Attachments: null,
userDataPath: null,
getRegionCode: () => null,
});

window.Signal.Logs = require('./js/modules/logs');
const {
SessionPasswordPrompt,
} = require('./ts/components/session/SessionPasswordPrompt');

window.Signal = {
Components: {
SessionPasswordPrompt,
},
}

window.CONSTANTS = {
MAX_LOGIN_TRIES: 3,
Expand Down

0 comments on commit b2073e8

Please sign in to comment.