Browse Source

Change for new APM2.0 logo

QGC4.4
Michael Carpenter 12 years ago
parent
commit
da79b6cef6
  1. BIN
      files/images/apm_planner_2_0-07.png
  2. BIN
      files/images/apm_planner_2_0-08.png
  3. BIN
      files/images/apm_planner_logo.png
  4. BIN
      files/images/apm_planner_logo_splash.png
  5. 2
      qgroundcontrol.qrc
  6. 6
      src/QGCCore.cc

BIN
files/images/apm_planner_2_0-07.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

BIN
files/images/apm_planner_2_0-08.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

BIN
files/images/apm_planner_logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

BIN
files/images/apm_planner_logo_splash.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

2
qgroundcontrol.qrc

@ -104,6 +104,8 @@ @@ -104,6 +104,8 @@
<file>files/images/actions/qgroundcontrol-connect.svg</file>
<file>files/images/apm_planner_logo.png</file>
<file>files/images/apm_planner_logo_splash.png</file>
<file>files/images/apm_planner_2_0-07.png</file>
<file>files/images/apm_planner_2_0-08.png</file>
</qresource>
<qresource prefix="/general">
<file alias="vera.ttf">files/styles/Vera.ttf</file>

6
src/QGCCore.cc

@ -71,8 +71,8 @@ QGCCore::QGCCore(int &argc, char* argv[]) : QApplication(argc, argv) @@ -71,8 +71,8 @@ QGCCore::QGCCore(int &argc, char* argv[]) : QApplication(argc, argv)
// Set application name
this->setApplicationName(QGC_APPLICATION_NAME);
this->setApplicationVersion(QGC_APPLICATION_VERSION);
this->setOrganizationName(QLatin1String("3DRobotics"));
this->setOrganizationDomain("org.3drobotics");
this->setOrganizationName(QLatin1String("diydrones"));
this->setOrganizationDomain("org.diydrones");
// Set settings format
QSettings::setDefaultFormat(QSettings::IniFormat);
@ -108,7 +108,7 @@ QGCCore::QGCCore(int &argc, char* argv[]) : QApplication(argc, argv) @@ -108,7 +108,7 @@ QGCCore::QGCCore(int &argc, char* argv[]) : QApplication(argc, argv)
settings.sync();
// Show splash screen
QPixmap splashImage(":/files/images/apm_planner_logo_splash.png");
QPixmap splashImage(":/files/images/apm_planner_2_0-07.png");
QSplashScreen* splashScreen = new QSplashScreen(splashImage);
// Delete splash screen after mainWindow was displayed
splashScreen->setAttribute(Qt::WA_DeleteOnClose);

Loading…
Cancel
Save