discordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teams
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.3 KiB
33 lines
1.3 KiB
Ext.define('Rambox.view.main.About', { |
|
extend: 'Ext.window.Window' |
|
,xtype: 'about' |
|
,title: locale['app.about[0]'] |
|
,autoShow: true |
|
,modal: true |
|
,resizable: false |
|
,constrain: true |
|
,width: 300 |
|
,height: 450 |
|
,bodyPadding: 10 |
|
,data: { |
|
version: require('electron').remote.app.getVersion() |
|
,platform: process.platform |
|
,arch: process.arch |
|
,electron: process.versions.electron |
|
,chromium: process.versions.chrome |
|
,node: process.versions.node |
|
} |
|
,tpl: [ |
|
'<div style="text-align:center;"><img src="resources/Icon.png" width="100" /></div>' |
|
,'<h3>'+locale['app.about[1]']+'</h3>' |
|
,'<div><b>'+locale['app.about[2]']+':</b> {version}</div>' |
|
,'<div><b>'+locale['app.about[3]']+':</b> {platform} ({arch})</div>' |
|
,'<div><b>Electron:</b> {electron}</div>' |
|
,'<div><b>Chromium:</b> {chromium}</div>' |
|
,'<div><b>Node:</b> {node}</div>' |
|
,'<br />' |
|
,'<div style="text-align:center;"><a href="https://github.com/saenzramiro/rambox" target="_blank">GitHub</a> - <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WU75QWS7LH2CA" target="_blank">'+locale['app.main[25]']+'</a> - <a href="http://rambox.pro" target="_blank">rambox.pro</a></div>' |
|
,'<br />' |
|
,'<div style="text-align:center;"><i>'+locale['app.about[4]']+' Ramiro Saenz</i></div>' |
|
] |
|
});
|
|
|