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

Commit 748b185

Browse files
committed
Minor fixes
1 parent 51e5ad8 commit 748b185

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ You are always welcome to check the code! ;)
199199

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

205205
## Translations

app/ux/WebView.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,7 @@ Ext.define('Rambox.ux.WebView',{
520520
if ( require('electron').remote.process.platform === 'darwin' ) {
521521
var keys = [];
522522
keys['ƒ'] = 'f'; // Search
523+
keys[' '] = 'l'; // Lock
523524

524525
input.key = keys[input.key] ? keys[input.key] : input.key;
525526
}

app/view/main/Main.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Ext.define('Rambox.view.main.Main', {
3333
,html: '<span class="fa fa-heart" style="color:red;font-size:16px;cursor:pointer;padding:0 5px;"></span>'
3434
,baseCls: ''
3535
,tooltip: locale['app.main[25]']
36-
,href: 'https://rambox.pro/#donate'
36+
,href: 'https://rambox.app/donate.html'
3737
}]
3838
}
3939
,items: [
@@ -243,7 +243,7 @@ Ext.define('Rambox.view.main.Main', {
243243
{
244244
glyph: JSON.parse(localStorage.getItem('dontDisturb')) ? 'xf1f7@FontAwesome' : 'xf0f3@FontAwesome'
245245
,text: locale['app.main[16]']+': '+(JSON.parse(localStorage.getItem('dontDisturb')) ? locale['app.window[20]'] : locale['app.window[21]'])
246-
,tooltip: locale['app.main[17]']+'<br/><b>'+locale['app.main[18]']+(require('electron').remote.process.platform === 'darwin' ? 'Cmd + D</b>' : ': Alt + Shift + D</b>')
246+
,tooltip: locale['app.main[17]']+'<br/><b>'+locale['app.main[18]']+(require('electron').remote.process.platform === 'darwin' ? ': Cmd + D</b>' : ': Alt + Shift + D</b>')
247247
,enableToggle: true
248248
,handler: 'dontDisturb'
249249
,reference: 'disturbBtn'
@@ -253,7 +253,7 @@ Ext.define('Rambox.view.main.Main', {
253253
,{
254254
glyph: 'xf023@FontAwesome'
255255
,text: locale['app.main[19]']
256-
,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>')
256+
,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>')
257257
,handler: 'lockRambox'
258258
,id: 'lockRamboxBtn'
259259
},'-'
@@ -348,7 +348,7 @@ Ext.define('Rambox.view.main.Main', {
348348
,{
349349
text: locale['app.main[25]']
350350
,glyph: 'xf21e@FontAwesome'
351-
,href: 'https://rambox.pro/#donate'
351+
,href: 'https://rambox.app/donate.html'
352352
}
353353
,{
354354
text: 'Translation'

electron/menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ module.exports = function(config) {
103103
{
104104
label: `&`+locale['menu.help[3]'],
105105
click() {
106-
shell.openExternal('https://rambox.pro/#donate');
106+
shell.openExternal('https://rambox.app/donate.html');
107107
}
108108
}
109109
];

0 commit comments

Comments
 (0)