Skip to content
This repository was archived by the owner on Apr 22, 2022. It is now read-only.

Commit 6f4f33d

Browse files
committed
Minor fixes
1 parent f3fc3c7 commit 6f4f33d

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

app/ux/Auth0.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,6 @@ Ext.define('Rambox.ux.Auth0', {
259259
,autoHideMenuBar: true
260260
,skipTaskbar: true
261261
,fullscreenable: false
262-
,modal: true
263262
,parent: require('electron').remote.getCurrentWindow()
264263
,webPreferences: {
265264
partition: 'persist:rambox'

resources/installer/notarize.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ exports.default = async function notarizing(context) {
1212
appBundleId: 'com.grupovrs.ramboxce',
1313
appPath: `${appOutDir}/${appName}.app`,
1414
appleId: 'saenzramiro@gmail.com',
15-
appleIdPassword: process.env.APPLE_ID_PWD
15+
appleIdPassword: process.env.APPLE_ID_PWD,
16+
ascProvider: '7F292FPD69'
1617
});
17-
};
18+
};

resources/js/rambox-service-api.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,9 @@ window.rambox.contextMenuBuilder = new ContextMenuBuilder();
5555
window.rambox.contextMenuListener = new ContextMenuListener(function(event, info) {
5656
window.rambox.contextMenuBuilder.showPopupMenu(info);
5757
});
58+
59+
const mousetrap = require('mousetrap');
60+
mousetrap.bind(process.platform === 'darwin' ? ['command+left', 'command+right'] : ['alt+left', 'alt+right'], e => {
61+
if (location.href.indexOf('slack.com') !== -1) return;
62+
e.key === 'ArrowLeft' ? history.back() : history.forward();
63+
});

0 commit comments

Comments
 (0)