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
fvulich committed Nov 20, 2019
1 parent 51e5ad8 commit 748b185
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ You are always welcome to check the code! ;)

| Type | URL/Wallet |
| ---------------- | :----------------------------------------------------------------------------------------: |
| Credit Cards | [HERE](https://rambox.pro/#donate) |
| Credit Cards | [HERE](https://rambox.app/donate.html) |
| Cryptocurrencies | [HERE](https://www.vaulty.io/v/b6480279-af28-4855-868c-17e5cb0ae7fa) |

## Translations
Expand Down
1 change: 1 addition & 0 deletions app/ux/WebView.js
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,7 @@ Ext.define('Rambox.ux.WebView',{
if ( require('electron').remote.process.platform === 'darwin' ) {
var keys = [];
keys['ƒ'] = 'f'; // Search
keys[' '] = 'l'; // Lock

input.key = keys[input.key] ? keys[input.key] : input.key;
}
Expand Down
8 changes: 4 additions & 4 deletions app/view/main/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Ext.define('Rambox.view.main.Main', {
,html: '<span class="fa fa-heart" style="color:red;font-size:16px;cursor:pointer;padding:0 5px;"></span>'
,baseCls: ''
,tooltip: locale['app.main[25]']
,href: 'https://rambox.pro/#donate'
,href: 'https://rambox.app/donate.html'
}]
}
,items: [
Expand Down Expand Up @@ -243,7 +243,7 @@ Ext.define('Rambox.view.main.Main', {
{
glyph: JSON.parse(localStorage.getItem('dontDisturb')) ? 'xf1f7@FontAwesome' : 'xf0f3@FontAwesome'
,text: locale['app.main[16]']+': '+(JSON.parse(localStorage.getItem('dontDisturb')) ? locale['app.window[20]'] : locale['app.window[21]'])
,tooltip: locale['app.main[17]']+'<br/><b>'+locale['app.main[18]']+(require('electron').remote.process.platform === 'darwin' ? 'Cmd + D</b>' : ': Alt + Shift + D</b>')
,tooltip: locale['app.main[17]']+'<br/><b>'+locale['app.main[18]']+(require('electron').remote.process.platform === 'darwin' ? ': Cmd + D</b>' : ': Alt + Shift + D</b>')
,enableToggle: true
,handler: 'dontDisturb'
,reference: 'disturbBtn'
Expand All @@ -253,7 +253,7 @@ Ext.define('Rambox.view.main.Main', {
,{
glyph: 'xf023@FontAwesome'
,text: locale['app.main[19]']
,tooltip: locale['app.main[20]']+'<br/><b>'+locale['app.main[18]']+(require('electron').remote.process.platform === 'darwin' ? 'Cmd + Alt + L</b>' : ': Alt + Shift + L</b>')
,tooltip: locale['app.main[20]']+'<br/><b>'+locale['app.main[18]']+(require('electron').remote.process.platform === 'darwin' ? ': Cmd + Alt + L</b>' : ': Alt + Shift + L</b>')
,handler: 'lockRambox'
,id: 'lockRamboxBtn'
},'-'
Expand Down Expand Up @@ -348,7 +348,7 @@ Ext.define('Rambox.view.main.Main', {
,{
text: locale['app.main[25]']
,glyph: 'xf21e@FontAwesome'
,href: 'https://rambox.pro/#donate'
,href: 'https://rambox.app/donate.html'
}
,{
text: 'Translation'
Expand Down
2 changes: 1 addition & 1 deletion electron/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ module.exports = function(config) {
{
label: `&`+locale['menu.help[3]'],
click() {
shell.openExternal('https://rambox.pro/#donate');
shell.openExternal('https://rambox.app/donate.html');
}
}
];
Expand Down

0 comments on commit 748b185

Please sign in to comment.