diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f6652928..4df52efa 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -45,7 +45,7 @@ Working on your first Pull Request? You can learn how from this *free* series [H | ------------------------------------------------------------- | ------- | | [Sencha](https://www.sencha.com/products/extjs/cmd-download/) | `=6.1.2.15` | | [Ruby](https://www.ruby-lang.org/en/downloads/) | `=2.3` | -| [Node.js](http://nodejs.org) | `~ ^4.0.0` | +| [Node.js](https://nodejs.org) | `~ ^4.0.0` | | npm (comes with Node) | `~ ^3.8.7` | > _Updating to the latest releases is recommended_. diff --git a/README.md b/README.md index 2c9451d3..719115d8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@


- Rambox + Rambox
Rambox
diff --git a/app.js b/app.js index 7308e4dd..6e267aa2 100644 --- a/app.js +++ b/app.js @@ -1,7 +1,7 @@ var auth0, lock; // Auth0 vars // Enable Cookies var ElectronCookies = require('@exponent/electron-cookies'); -ElectronCookies.enable({ origin: 'http://rambox.pro' }); +ElectronCookies.enable({ origin: 'https://rambox.pro' }); // Sencha App Ext.setGlyphFontFamily('FontAwesome'); diff --git a/app/Application.js b/app/Application.js index 487647c9..345ce104 100644 --- a/app/Application.js +++ b/app/Application.js @@ -224,7 +224,7 @@ Ext.define('Rambox.Application', { ,checkUpdate: function(silence) { console.info('Checking for updates...'); Ext.Ajax.request({ - url: 'http://rambox.pro/api/latestversion.json' + url: 'https://rambox.pro/api/latestversion.json' ,method: 'GET' ,success: function(response) { var json = Ext.decode(response.responseText); diff --git a/app/package.json b/app/package.json index 848564ca..26665f1d 100644 --- a/app/package.json +++ b/app/package.json @@ -12,7 +12,7 @@ "bugs": { "url": "https://github.com/TheGoddessInari/rambox/issues" }, - "homepage": "http://rambox.pro", + "homepage": "https://rambox.pro", "keywords": [ "Rambox", "messaging", diff --git a/app/store/ServicesList.js b/app/store/ServicesList.js index b9bcf3e8..d612ac81 100644 --- a/app/store/ServicesList.js +++ b/app/store/ServicesList.js @@ -125,7 +125,7 @@ Ext.define('Rambox.store.ServicesList', { ,logo: 'inbox.png' ,name: 'Inbox' ,description: locale['services[10]'] - ,url: 'http://inbox.google.com/?cid=imp' + ,url: 'https://inbox.google.com/?cid=imp' ,type: 'email' ,manual_notifications: true ,js_unread: 'function checkUnread(){updateBadge(document.getElementsByClassName("ss").length)}function updateBadge(a){a>=1?document.title="("+a+") "+originalTitle:document.title=originalTitle}var originalTitle=document.title;setInterval(checkUnread,3e3);' @@ -877,7 +877,7 @@ Ext.define('Rambox.store.ServicesList', { ,logo: 'mailru.png' ,name: 'Mail.Ru' ,description: 'Free voice and video calls, ICQ support, Odnoklassniki, VKontakte, Facebook, online games, free SMS.' - ,url: 'http://webagent.mail.ru/webim/agent/popup.html' + ,url: 'https://webagent.mail.ru/webim/agent/popup.html' ,type: 'email' }, { diff --git a/app/view/add/Add.js b/app/view/add/Add.js index 2ababd4d..d96806fd 100644 --- a/app/view/add/Add.js +++ b/app/view/add/Add.js @@ -65,7 +65,7 @@ Ext.define('Rambox.view.add.Add',{ ,readOnly: me.edit ? (me.service.get('custom_domain') && me.service.get('url') === me.record.get('url') ? true : me.service.get('url').indexOf('___') === -1 && !me.service.get('custom_domain')) : me.record.get('url').indexOf('___') === -1 && me.record.get('custom_domain') ,allowBlank: false ,submitEmptyText: false - ,emptyText: me.record.get('url') === '___' ? 'http://' : '' + ,emptyText: me.record.get('url') === '___' ? 'https://' : '' ,vtype: me.record.get('url') === '___' ? 'url' : '' ,listeners: { specialkey: 'onEnter' } ,flex: 1 @@ -97,7 +97,7 @@ Ext.define('Rambox.view.add.Add',{ } ,changeHandler: function(cycleBtn, activeItem) { Ext.apply(cycleBtn.previousSibling(), { - emptyText: activeItem.custom ? 'http://' : ' ' + emptyText: activeItem.custom ? 'https://' : ' ' ,vtype: activeItem.custom ? 'url' : '' }); cycleBtn.previousSibling().applyEmptyText(); @@ -127,7 +127,7 @@ Ext.define('Rambox.view.add.Add',{ ,{ xtype: 'textfield' ,fieldLabel: locale['app.window[18]'] - ,emptyText: 'http://url.com/image.png' + ,emptyText: 'https://url.com/image.png' ,name: 'logo' ,vtype: me.record.get('type') === 'custom' ? 'url' : '' ,value: me.record.get('type') === 'custom' ? (me.edit ? me.record.get('logo') : '') : me.record.get('logo') diff --git a/app/view/main/Main.js b/app/view/main/Main.js index 185f5614..dcad2f8b 100644 --- a/app/view/main/Main.js +++ b/app/view/main/Main.js @@ -315,7 +315,7 @@ Ext.define('Rambox.view.main.Main', { text: locale['app.main[22]'] ,icon: 'resources/auth0.png' ,id: 'loginBtn' - ,tooltip: locale['app.main[23]']+'

'+locale['app.main[24]']+' Auth0 (http://auth0.com)' + ,tooltip: locale['app.main[23]']+'

'+locale['app.main[24]']+' Auth0 (https://auth0.com)' ,bind: { hidden: '{username}' } diff --git a/electron/menu.js b/electron/menu.js index 9208cf63..f5de3827 100644 --- a/electron/menu.js +++ b/electron/menu.js @@ -22,7 +22,7 @@ module.exports = function(config) { { label: `&`+locale['menu.help[0]'], click() { - shell.openExternal('http://rambox.pro'); + shell.openExternal('https://rambox.pro'); } }, {