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

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
saenzramiro committed Jul 30, 2021
1 parent f3fc3c7 commit 6f4f33d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
1 change: 0 additions & 1 deletion app/ux/Auth0.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,6 @@ Ext.define('Rambox.ux.Auth0', {
,autoHideMenuBar: true
,skipTaskbar: true
,fullscreenable: false
,modal: true
,parent: require('electron').remote.getCurrentWindow()
,webPreferences: {
partition: 'persist:rambox'
Expand Down
5 changes: 3 additions & 2 deletions resources/installer/notarize.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ exports.default = async function notarizing(context) {
appBundleId: 'com.grupovrs.ramboxce',
appPath: `${appOutDir}/${appName}.app`,
appleId: 'saenzramiro@gmail.com',
appleIdPassword: process.env.APPLE_ID_PWD
appleIdPassword: process.env.APPLE_ID_PWD,
ascProvider: '7F292FPD69'
});
};
};
6 changes: 6 additions & 0 deletions resources/js/rambox-service-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,9 @@ window.rambox.contextMenuBuilder = new ContextMenuBuilder();
window.rambox.contextMenuListener = new ContextMenuListener(function(event, info) {
window.rambox.contextMenuBuilder.showPopupMenu(info);
});

const mousetrap = require('mousetrap');
mousetrap.bind(process.platform === 'darwin' ? ['command+left', 'command+right'] : ['alt+left', 'alt+right'], e => {
if (location.href.indexOf('slack.com') !== -1) return;
e.key === 'ArrowLeft' ? history.back() : history.forward();
});

0 comments on commit 6f4f33d

Please sign in to comment.