- add debug build script + don't set the default tray icon tooltip

This commit is contained in:
Dmytro Bogovych 2023-05-22 11:13:01 +03:00
parent 76a63b29c2
commit aba5e21271
2 changed files with 15 additions and 2 deletions

View File

@ -286,10 +286,11 @@ void MainWindow::createTrayIcon()
mTrayIcon->setContextMenu(menu);
mTrayIcon->setIcon(getTrayIcon());
mTrayIcon->setToolTip(AppName);
mTrayIcon->show();
// mTrayIcon->setToolTip(AppName);
connect(mTrayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
this, SLOT(onTrayIconActivated(QSystemTrayIcon::ActivationReason)));
mTrayIcon->show();
}
static int msec2min(int msec)

View File

@ -0,0 +1,12 @@
#!/bin/bash
# I use this script on two different hosts so there are logic to find proper Qt installation
export QT_HOME=/home/$USER/tools/qt/6.4.2/gcc_64
if [ ! -d "$QT_HOME" ] ; then
export QT_HOME=/home/$USER/tools/qt/6.4.2/gcc_64
fi
# Build .appimage
/usr/bin/python3 build_qbreak.py debug