diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index b97779e0..a8ae3f00 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -18,7 +18,7 @@ -> Rambox: v0.X.X +> Rambox-OS: v0.X.X > OS: XXXX diff --git a/app/Application.js b/app/Application.js index f400d313..34a8c07b 100644 --- a/app/Application.js +++ b/app/Application.js @@ -212,15 +212,15 @@ Ext.define('Rambox.Application', { newValue = parseInt(newValue); if ( newValue > 0 ) { if ( Ext.cq1('app-main').getActiveTab().record ) { - document.title = 'Rambox (' + Rambox.util.Format.formatNumber(newValue) + ') - '+Ext.cq1('app-main').getActiveTab().record.get('name'); + document.title = 'Rambox-OS (' + Rambox.util.Format.formatNumber(newValue) + ') - '+Ext.cq1('app-main').getActiveTab().record.get('name'); } else { - document.title = 'Rambox (' + Rambox.util.Format.formatNumber(newValue) + ')'; + document.title = 'Rambox-OS (' + Rambox.util.Format.formatNumber(newValue) + ')'; } } else { if ( Ext.cq1('app-main') && Ext.cq1('app-main').getActiveTab().record ) { - document.title = 'Rambox - '+Ext.cq1('app-main').getActiveTab().record.get('name'); + document.title = 'Rambox-OS - '+Ext.cq1('app-main').getActiveTab().record.get('name'); } else { - document.title = 'Rambox'; + document.title = 'Rambox-OS'; } } } diff --git a/app/model/Readme.md b/app/model/Readme.md index fd11f488..761f499a 100644 --- a/app/model/Readme.md +++ b/app/model/Readme.md @@ -13,7 +13,7 @@ Structure of a service entry: |type|Defines the type of the service. Must be one of `email` or `messaging`.|yes| |allow_popups|Set to `true` to allow popup windows for the service.|no| |note|Additional info to display when adding the service.|no| -|manual_notifications|Set to `true` to let Rambox trigger notifications. Can be used for services that doesn't support browser notifications.|no| +|manual_notifications|Set to `true` to let Rambox-OS trigger notifications. Can be used for services that doesn't support browser notifications.|no| |js_unread|JavaScript code for setting the unread count (see below).|no| ### Setting the unread count diff --git a/app/ux/Auth0.js b/app/ux/Auth0.js index 590503de..c83d7360 100644 --- a/app/ux/Auth0.js +++ b/app/ux/Auth0.js @@ -25,7 +25,7 @@ Ext.define('Rambox.ux.Auth0', { ,primaryColor: '#0675A0' } ,languageDictionary: { - title: 'Rambox Account' + title: 'Rambox-OS Account' } ,popupOptions: { nodeIntegration: 'no' diff --git a/app/view/add/AddController.js b/app/view/add/AddController.js index 2198cb0a..4986537d 100644 --- a/app/view/add/AddController.js +++ b/app/view/add/AddController.js @@ -68,7 +68,7 @@ Ext.define('Rambox.view.add.AddController', { } // Apply the JS Code of the Tab if ( win.down('textarea').isDirty() ) { - Ext.Msg.confirm(locale['app.window[8]'].toUpperCase(), 'Rambox needs to reload the service to execute the new JavaScript code. Do you want to do it now?', function( btnId ) { + Ext.Msg.confirm(locale['app.window[8]'].toUpperCase(), 'Rambox-OS needs to reload the service to execute the new JavaScript code. Do you want to do it now?', function( btnId ) { if ( btnId === 'yes' ) view.reloadService(); }); } diff --git a/app/view/main/About.js b/app/view/main/About.js index 429a994b..1ce6493a 100644 --- a/app/view/main/About.js +++ b/app/view/main/About.js @@ -28,6 +28,6 @@ Ext.define('Rambox.view.main.About', { ,'
' ,'
GitHub
' ,'
' - ,'
'+locale['app.about[4]']+' Ramiro Saenz. Now maintained and developed by TheGoddessInari.
' + ,'
'+locale['app.about[4]']+' TheGoddessInari. Original version by Ramiro Saenz.
' ] }); diff --git a/app/view/preferences/Preferences.js b/app/view/preferences/Preferences.js index 07bad412..66c4c690 100644 --- a/app/view/preferences/Preferences.js +++ b/app/view/preferences/Preferences.js @@ -39,7 +39,7 @@ Ext.define('Rambox.view.preferences.Preferences',{ var config = ipc.sendSync('getConfig'); var defaultServiceOptions = []; - defaultServiceOptions.push({ value: 'ramboxTab', label: 'Rambox Tab' }); + defaultServiceOptions.push({ value: 'ramboxTab', label: 'Rambox-OS Tab' }); defaultServiceOptions.push({ value: 'last', label: 'Last Active Service' }); Ext.getStore('Services').each(function(rec) { defaultServiceOptions.push({ @@ -170,7 +170,7 @@ Ext.define('Rambox.view.preferences.Preferences',{ ,{ xtype: 'combo' ,name: 'default_service' - ,fieldLabel: 'Default service to display when Rambox starts' + ,fieldLabel: 'Default service to display when Rambox-OS starts' ,labelAlign: 'top' //,width: 380 //,labelWidth: 105 diff --git a/electron/main.js b/electron/main.js index 3124cdd9..c390014a 100644 --- a/electron/main.js +++ b/electron/main.js @@ -61,7 +61,7 @@ const appMenu = require('./menu')(config); // Configure AutoLaunch const appLauncher = new AutoLaunch({ - name: 'Rambox' + name: 'Rambox-OS' ,isHidden: config.get('start_minimized') }); config.get('auto_launch') && !isDev ? appLauncher.enable() : appLauncher.disable(); @@ -74,7 +74,7 @@ let isQuitting = false; function createWindow () { // Create the browser window using the state information mainWindow = new BrowserWindow({ - title: 'Rambox' + title: 'Rambox-OS' ,icon: __dirname + '/../resources/Icon.' + (process.platform === 'linux' ? 'png' : 'ico') ,backgroundColor: '#FFF' ,x: config.get('x') diff --git a/electron/tray.js b/electron/tray.js index bd079ed5..d94dd8a2 100644 --- a/electron/tray.js +++ b/electron/tray.js @@ -32,7 +32,7 @@ exports.create = function(win, config) { ]); appIcon = new Tray(iconPath); - appIcon.setToolTip('Rambox'); + appIcon.setToolTip('Rambox-OS'); appIcon.setContextMenu(contextMenu); switch (process.platform) { diff --git a/index.html b/index.html index 16741bbf..abcfc669 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ - Rambox + Rambox-OS diff --git a/masterpassword.html b/masterpassword.html index 9551495e..20cde1ab 100644 --- a/masterpassword.html +++ b/masterpassword.html @@ -10,7 +10,7 @@
Master Password
-
Exit Rambox
+
Exit Rambox-OS