Updated branding for application names (#1617)

main
Terry Michaels 5 years ago committed by GitHub
parent 5656736db4
commit 7a2a2dc0d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,7 +16,7 @@ namespace AzFramework
{ {
AZStd::string GetPersistentName() AZStd::string GetPersistentName()
{ {
AZStd::string persistentName = "Open 3D Engine"; AZStd::string persistentName = "O3DE";
char procPath[AZ_MAX_PATH_LEN]; char procPath[AZ_MAX_PATH_LEN];
AZ::Utils::GetExecutablePathReturnType ret = AZ::Utils::GetExecutablePath(procPath, AZ_MAX_PATH_LEN); AZ::Utils::GetExecutablePathReturnType ret = AZ::Utils::GetExecutablePath(procPath, AZ_MAX_PATH_LEN);

@ -205,7 +205,7 @@ int main(int argc, char **argv)
action->setMenu(fileMenu); action->setMenu(fileMenu);
auto openDock = fileMenu->addAction("Open dockwidget"); auto openDock = fileMenu->addAction("Open dockwidget");
QObject::connect(openDock, &QAction::triggered, w, [&w] { QObject::connect(openDock, &QAction::triggered, w, [&w] {
auto dock = new AzQtComponents::StyledDockWidget(QLatin1String("Open 3D Engine"), w); auto dock = new AzQtComponents::StyledDockWidget(QLatin1String("O3DE"), w);
auto button = new QPushButton("Click to dock"); auto button = new QPushButton("Click to dock");
auto wid = new QWidget(); auto wid = new QWidget();
auto widLayout = new QVBoxLayout(wid); auto widLayout = new QVBoxLayout(wid);

@ -183,8 +183,8 @@ namespace AzToolsFramework
// if you want to run headlessly, do not call this function. // if you want to run headlessly, do not call this function.
void Framework::Run() void Framework::Run()
{ {
pApplication->setOrganizationName("Amazon Games Studios"); pApplication->setOrganizationName("O3DE");
pApplication->setApplicationName("Editor"); pApplication->setApplicationName("O3DE Editor");
bool GUIMode = true; bool GUIMode = true;
EBUS_EVENT_RESULT(GUIMode, LegacyFramework::FrameworkApplicationMessages::Bus, IsRunningInGUIMode); EBUS_EVENT_RESULT(GUIMode, LegacyFramework::FrameworkApplicationMessages::Bus, IsRunningInGUIMode);

@ -254,7 +254,7 @@ namespace Editor
// set the default key store for our preferences: // set the default key store for our preferences:
setOrganizationName("Amazon"); setOrganizationName("Amazon");
setOrganizationDomain("amazon.com"); setOrganizationDomain("amazon.com");
setApplicationName("Open 3D Engine"); setApplicationName("O3DE Editor");
connect(m_idleTimer, &QTimer::timeout, this, &EditorQtApplication::maybeProcessIdle); connect(m_idleTimer, &QTimer::timeout, this, &EditorQtApplication::maybeProcessIdle);

@ -549,7 +549,7 @@ public:
QCommandLineParser parser; QCommandLineParser parser;
parser.addHelpOption(); parser.addHelpOption();
parser.setSingleDashWordOptionMode(QCommandLineParser::ParseAsLongOptions); parser.setSingleDashWordOptionMode(QCommandLineParser::ParseAsLongOptions);
parser.setApplicationDescription(QObject::tr("Open 3D Engine")); parser.setApplicationDescription(QObject::tr("O3DE Editor"));
// nsDocumentRevisionDebugMode is an argument that the macOS system passed into an App bundle that is being debugged. // nsDocumentRevisionDebugMode is an argument that the macOS system passed into an App bundle that is being debugged.
// Need to include it here so that Qt argument parser does not error out. // Need to include it here so that Qt argument parser does not error out.
bool nsDocumentRevisionsDebugMode = false; bool nsDocumentRevisionsDebugMode = false;

@ -1032,11 +1032,11 @@ void MainWindow::InitActions()
am->AddAction(ID_DOCUMENTATION_AWSSUPPORT, tr("AWS Support")) am->AddAction(ID_DOCUMENTATION_AWSSUPPORT, tr("AWS Support"))
.SetReserved(); .SetReserved();
am->AddAction(ID_APP_ABOUT, tr("&About Open 3D Engine")) am->AddAction(ID_APP_ABOUT, tr("&About O3DE"))
.SetStatusTip(tr("Display program information, version number and copyright")) .SetStatusTip(tr("Display program information, version number and copyright"))
.SetReserved(); .SetReserved();
am->AddAction(ID_APP_SHOW_WELCOME, tr("&Welcome")) am->AddAction(ID_APP_SHOW_WELCOME, tr("&Welcome"))
.SetStatusTip(tr("Show the Welcome to Open 3D Engine dialog box")) .SetStatusTip(tr("Show the Welcome to O3DE dialog box"))
.RegisterUpdateCallback(cryEdit, &CCryEditApp::OnUpdateShowWelcomeScreen); .RegisterUpdateCallback(cryEdit, &CCryEditApp::OnUpdateShowWelcomeScreen);
// Editors Toolbar actions // Editors Toolbar actions

@ -463,7 +463,7 @@ namespace AssetBundler
return AZ::Failure(AZStd::string::format( return AZ::Failure(AZStd::string::format(
"Unable to locate the Project Cache path from Settings Registry at key %s." "Unable to locate the Project Cache path from Settings Registry at key %s."
" Please run the Open 3D Engine Asset Processor to generate a Cache and build assets.", " Please run the O3DE Asset Processor to generate a Cache and build assets.",
AZ::SettingsRegistryMergeUtils::FilePathKey_CacheProjectRootFolder)); AZ::SettingsRegistryMergeUtils::FilePathKey_CacheProjectRootFolder));
} }
@ -473,7 +473,7 @@ namespace AssetBundler
if (assetCatalogFilePath.empty()) if (assetCatalogFilePath.empty())
{ {
return AZ::Failure(AZStd::string::format( return AZ::Failure(AZStd::string::format(
"Unable to retrieve cache platform path from Settings Registry at key: %s. Please run the Open 3D Engine Asset Processor to generate platform-specific cache folders and build assets.", "Unable to retrieve cache platform path from Settings Registry at key: %s. Please run the O3DE Asset Processor to generate platform-specific cache folders and build assets.",
AZ::SettingsRegistryMergeUtils::FilePathKey_CacheProjectRootFolder)); AZ::SettingsRegistryMergeUtils::FilePathKey_CacheProjectRootFolder));
} }

@ -644,7 +644,7 @@ QString ApplicationManager::GetOrganizationName() const
QString ApplicationManager::GetApplicationName() const QString ApplicationManager::GetApplicationName() const
{ {
return "Asset Processor"; return "O3DE Asset Processor";
} }
bool ApplicationManager::PostActivate() bool ApplicationManager::PostActivate()

@ -270,7 +270,7 @@ bool GUIApplicationManager::Run()
m_trayIcon = new QSystemTrayIcon(m_mainWindow); m_trayIcon = new QSystemTrayIcon(m_mainWindow);
m_trayIcon->setContextMenu(trayIconMenu); m_trayIcon->setContextMenu(trayIconMenu);
m_trayIcon->setToolTip(QObject::tr("Asset Processor")); m_trayIcon->setToolTip(QObject::tr("O3DE Asset Processor"));
m_trayIcon->setIcon(QIcon(":/o3de_assetprocessor.png")); m_trayIcon->setIcon(QIcon(":/o3de_assetprocessor.png"));
m_trayIcon->show(); m_trayIcon->show();
QObject::connect(m_trayIcon, &QSystemTrayIcon::activated, m_mainWindow, [&, wrapper](QSystemTrayIcon::ActivationReason reason) QObject::connect(m_trayIcon, &QSystemTrayIcon::activated, m_mainWindow, [&, wrapper](QSystemTrayIcon::ActivationReason reason)
@ -293,8 +293,8 @@ bool GUIApplicationManager::Run()
if (startHidden) if (startHidden)
{ {
m_trayIcon->showMessage( m_trayIcon->showMessage(
QCoreApplication::translate("Tray Icon", "Open 3D Engine Asset Processor has started"), QCoreApplication::translate("Tray Icon", "O3DE Asset Processor has started"),
QCoreApplication::translate("Tray Icon", "The Open 3D Engine Asset Processor monitors raw project assets and converts those assets into runtime-ready data."), QCoreApplication::translate("Tray Icon", "The O3DE Asset Processor monitors raw project assets and converts those assets into runtime-ready data."),
QSystemTrayIcon::Information, 3000); QSystemTrayIcon::Information, 3000);
} }
} }
@ -814,7 +814,7 @@ void GUIApplicationManager::ShowTrayIconErrorMessage(QString msg)
{ {
m_timeWhenLastWarningWasShown = currentTime; m_timeWhenLastWarningWasShown = currentTime;
m_trayIcon->showMessage( m_trayIcon->showMessage(
QCoreApplication::translate("Tray Icon", "Open 3D Engine Asset Processor"), QCoreApplication::translate("Tray Icon", "O3DE Asset Processor"),
QCoreApplication::translate("Tray Icon", msg.toUtf8().data()), QCoreApplication::translate("Tray Icon", msg.toUtf8().data()),
QSystemTrayIcon::Critical, 3000); QSystemTrayIcon::Critical, 3000);
} }
@ -826,7 +826,7 @@ void GUIApplicationManager::ShowTrayIconMessage(QString msg)
if (m_trayIcon && m_mainWindow && !m_mainWindow->isVisible()) if (m_trayIcon && m_mainWindow && !m_mainWindow->isVisible())
{ {
m_trayIcon->showMessage( m_trayIcon->showMessage(
QCoreApplication::translate("Tray Icon", "Open 3D Engine Asset Processor"), QCoreApplication::translate("Tray Icon", "O3DE Asset Processor"),
QCoreApplication::translate("Tray Icon", msg.toUtf8().data()), QCoreApplication::translate("Tray Icon", msg.toUtf8().data()),
QSystemTrayIcon::Information, 3000); QSystemTrayIcon::Information, 3000);
} }

@ -16,7 +16,7 @@
namespace CrashHandler namespace CrashHandler
{ {
static const char* defaultCrashFolder = "CrashDB/"; static const char* defaultCrashFolder = "CrashDB/";
static const char* O3DEProductName = "Open 3D Engine"; static const char* O3DEProductName = "O3DE";
using CrashHandlerAnnotations = std::map<std::string, std::string>; using CrashHandlerAnnotations = std::map<std::string, std::string>;
using CrashHandlerArguments = std::vector<std::string>; using CrashHandlerArguments = std::vector<std::string>;

@ -23,9 +23,9 @@
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
QApplication::setOrganizationName("Amazon"); QApplication::setOrganizationName("O3DE");
QApplication::setOrganizationDomain("amazon.com"); QApplication::setOrganizationDomain("o3de.com");
QApplication::setApplicationName("ShaderManagementConsole"); QApplication::setApplicationName("O3DE Shader Management Console");
AzQtComponents::PrepareQtPaths(); AzQtComponents::PrepareQtPaths();

@ -155,7 +155,7 @@ namespace ImGui
ImGui::SetCursorPosX(40.f); ImGui::SetCursorPosX(40.f);
// Main Open 3D Engine menu // Main Open 3D Engine menu
if (ImGui::BeginMenu("Open 3D Engine")) if (ImGui::BeginMenu("O3DE"))
{ {
// Asset Explorer // Asset Explorer
if (ImGui::MenuItem("Asset Explorer")) if (ImGui::MenuItem("Asset Explorer"))

@ -161,7 +161,7 @@ enum class FusibleCommand
// IMPORTANT: This is NOT the permanent location for these values. // IMPORTANT: This is NOT the permanent location for these values.
#define AZ_QCOREAPPLICATION_SETTINGS_ORGANIZATION_NAME "Amazon" #define AZ_QCOREAPPLICATION_SETTINGS_ORGANIZATION_NAME "Amazon"
#define AZ_QCOREAPPLICATION_SETTINGS_APPLICATION_NAME "Open 3D Engine" #define AZ_QCOREAPPLICATION_SETTINGS_APPLICATION_NAME "O3DE"
// See: http://en.wikipedia.org/wiki/Internet_media_type#Prefix_x // See: http://en.wikipedia.org/wiki/Internet_media_type#Prefix_x
#define UICANVASEDITOR_MIMETYPE "application/x-amazon-o3de-uicanvaseditor" #define UICANVASEDITOR_MIMETYPE "application/x-amazon-o3de-uicanvaseditor"

@ -29,7 +29,7 @@ from ly_test_tools.o3de.ap_log_parser import APLogParser
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
# Asset Processor fast scan system setting key/subkey # Asset Processor fast scan system setting key/subkey
AP_FASTSCAN_KEY = r"Software\Amazon\Asset Processor\Options" AP_FASTSCAN_KEY = r"Software\Amazon\O3DE Asset Processor\Options"
AP_FASTSCAN_SUBKEY = r"EnableZeroAnalysis" AP_FASTSCAN_SUBKEY = r"EnableZeroAnalysis"

Loading…
Cancel
Save