Skip to content

Commit

Permalink
Merge branch '2.3' of git@github.com:mixxxdj/mixxx.git
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Aug 29, 2021
2 parents 50b40ab + 0b72fc6 commit 6f4fc8e
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 13 deletions.
14 changes: 5 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1388,16 +1388,12 @@ if(UNIX AND NOT APPLE)

# Icon files for menu entry
install(
FILES
"${CMAKE_CURRENT_SOURCE_DIR}/res/images/icons/mixxx.svg"
DESTINATION
"${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps"
)
install(
FILES
"${CMAKE_CURRENT_SOURCE_DIR}/res/images/icons/mixxx.png"
DIRECTORY
"${CMAKE_CURRENT_SOURCE_DIR}/res/images/icons"
DESTINATION
"${CMAKE_INSTALL_DATADIR}/icons/hicolor/32x32/apps"
"${CMAKE_INSTALL_DATADIR}/icons/hicolor"
# This file is for Windows.
PATTERN ic_mixxx.ico EXCLUDE
)

# .metainfo.xml file for KDE/GNOME AppStream initiative
Expand Down
Binary file added res/images/icons/128x128/apps/mixxx.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/images/icons/256x256/apps/mixxx.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/images/icons/32x32/apps/mixxx.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/images/icons/512x512/apps/mixxx.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/images/icons/64x64/apps/mixxx.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed res/images/icons/mixxx.png
Binary file not shown.
File renamed without changes
2 changes: 1 addition & 1 deletion res/mixxx.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<file>images/library/ic_library_serato.svg</file>
<!-- logo and icons for 'About' dialog -->
<file>images/mixxx_logo.svg</file>
<file>images/icons/mixxx.svg</file>
<file>images/icons/scalable/apps/mixxx.svg</file>
<file>images/heart_icon_light.svg</file>
<file>images/heart_icon_dark.svg</file>
<file>images/heart_icon_rainbow.svg</file>
Expand Down
2 changes: 1 addition & 1 deletion src/dialog/dlgabout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
DlgAbout::DlgAbout(QWidget* parent) : QDialog(parent), Ui::DlgAboutDlg() {
setupUi(this);

mixxx_icon->load(QString(":/images/icons/mixxx.svg"));
mixxx_icon->load(QString(":/images/icons/scalable/apps/mixxx.svg"));
mixxx_logo->load(QString(":/images/mixxx_logo.svg"));

version_label->setText(VersionStore::applicationName() +
Expand Down
2 changes: 1 addition & 1 deletion src/library/scanner/libraryscannerdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
LibraryScannerDlg::LibraryScannerDlg(QWidget* parent, Qt::WindowFlags f)
: QWidget(parent, f),
m_bCancelled(false) {
setWindowIcon(QIcon(":/images/icons/mixxx.svg"));
setWindowIcon(QIcon(":/images/icons/scalable/apps/mixxx.svg"));

QVBoxLayout* pLayout = new QVBoxLayout(this);

Expand Down
2 changes: 1 addition & 1 deletion src/preferences/upgrade.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ UserSettingsPointer Upgrade::versionUpgrade(const QString& settingsPath) {

bool Upgrade::askReScanLibrary() {
QMessageBox msgBox;
msgBox.setIconPixmap(QPixmap(":/images/icons/mixxx.svg"));
msgBox.setIconPixmap(QPixmap(":/images/icons/scalable/apps/mixxx.svg"));
msgBox.setWindowTitle(QMessageBox::tr("Upgrading Mixxx"));
msgBox.setText(QMessageBox::tr("Mixxx now supports displaying cover art.\n"
"Do you want to scan your library for cover files now?"));
Expand Down

0 comments on commit 6f4fc8e

Please sign in to comment.