Bump version to 0.3.10.
Update changelog. Change most of qDebug() meant to be errors to qWarning().
This commit is contained in:
10
debian/changelog
vendored
10
debian/changelog
vendored
@@ -1,3 +1,13 @@
|
||||
qcma (0.3.10) unstable; urgency=low
|
||||
|
||||
* debian: switch to libvitamtp*
|
||||
* Added manpages.
|
||||
* Added french translation.
|
||||
* Added systemd unit file for qcma_cli.
|
||||
* Replaced dbus with unix signals.
|
||||
|
||||
-- codestation <codestation404@gmail.com> Sun, 15 Mar 2015 14:35:04 -0000
|
||||
|
||||
qcma (0.3.9) unstable; urgency=low
|
||||
|
||||
* Set correct organization name in qcma_cli.
|
||||
|
@@ -6,7 +6,7 @@
|
||||
|
||||
QT += core network sql
|
||||
|
||||
VERSION = 0.3.9
|
||||
VERSION = 0.3.10
|
||||
|
||||
TEMPLATE = app
|
||||
|
||||
|
@@ -2,7 +2,7 @@
|
||||
# qcma spec file
|
||||
#
|
||||
|
||||
%define _version 0.3.9
|
||||
%define _version 0.3.10
|
||||
|
||||
%if "%{_version}" == "testing" || "%{_version}" == "master"
|
||||
%define _verprefix %{_version}
|
||||
|
@@ -21,7 +21,6 @@
|
||||
#include "avdecoder.h"
|
||||
#include "database.h"
|
||||
|
||||
#include <QDebug>
|
||||
#include <QBuffer>
|
||||
#include <QFile>
|
||||
#include <QImage>
|
||||
|
@@ -63,14 +63,14 @@ void HeadlessManager::refreshDatabase()
|
||||
QTextStream(stdout) << "Database scan has started" << endl;
|
||||
|
||||
if(!m_db->rescan()) {
|
||||
qDebug("No PS Vita system has been registered");
|
||||
qWarning("No PS Vita system has been registered");
|
||||
}
|
||||
}
|
||||
|
||||
void HeadlessManager::start()
|
||||
{
|
||||
if(VitaMTP_Init() < 0) {
|
||||
qDebug("Cannot initialize VitaMTP library");
|
||||
qCritical("Cannot initialize VitaMTP library");
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -127,7 +127,7 @@ void HeadlessManager::start()
|
||||
}
|
||||
|
||||
if(thread_count == 0) {
|
||||
qDebug("You must enable at least USB or Wireless monitoring");
|
||||
qCritical("You must enable at least USB or Wireless monitoring");
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -129,7 +129,7 @@ int main(int argc, char *argv[])
|
||||
if(translator.load("qcma_" + locale, ":/resources/translations")) {
|
||||
app.installTranslator(&translator);
|
||||
} else {
|
||||
qDebug() << "Cannot load translation for locale:" << locale;
|
||||
qWarning() << "Cannot load translation for locale:" << locale;
|
||||
}
|
||||
|
||||
QTranslator system_translator;
|
||||
|
@@ -69,7 +69,7 @@ CmaBroadcast::CmaBroadcast(QObject *obj_parent) :
|
||||
#endif
|
||||
|
||||
if(!socket->bind(host_address, QCMA_REQUEST_PORT, QUdpSocket::ShareAddress | QUdpSocket::ReuseAddressHint)) {
|
||||
qDebug() << "Failed to bind address for UDP broadcast";
|
||||
qCritical() << "Failed to bind address for UDP broadcast";
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -124,7 +124,7 @@ int main(int argc, char *argv[])
|
||||
if(translator.load("qcma_" + locale, ":/resources/translations")) {
|
||||
app.installTranslator(&translator);
|
||||
} else {
|
||||
qDebug() << "Cannot load translation for locale:" << locale;
|
||||
qWarning() << "Cannot load translation for locale:" << locale;
|
||||
}
|
||||
|
||||
QTranslator system_translator;
|
||||
|
@@ -155,12 +155,12 @@ void MainWidget::showAboutDialog()
|
||||
{
|
||||
QMessageBox about;
|
||||
|
||||
about.setText(QString("QCMA ") + QCMA_VER);
|
||||
about.setWindowTitle(tr("About QCMA"));
|
||||
about.setText(QString("Qcma ") + QCMA_VER);
|
||||
about.setWindowTitle(tr("About Qcma"));
|
||||
#ifndef QCMA_BUILD_HASH
|
||||
about.setInformativeText(tr("Copyright (C) 2014 Codestation") + "\n");
|
||||
about.setInformativeText(tr("Copyright (C) 2015 Codestation") + "\n");
|
||||
#else
|
||||
about.setInformativeText(tr("Copyright (C) 2014 Codestation\n\nbuild hash: %1\nbuild branch: %2").arg(QCMA_BUILD_HASH).arg(QCMA_BUILD_BRANCH));
|
||||
about.setInformativeText(tr("Copyright (C) 2015 Codestation\n\nbuild hash: %1\nbuild branch: %2").arg(QCMA_BUILD_HASH).arg(QCMA_BUILD_BRANCH));
|
||||
#endif
|
||||
about.setStandardButtons(QMessageBox::Ok);
|
||||
about.setIconPixmap(QPixmap(":/main/resources/images/qcma.png"));
|
||||
@@ -211,7 +211,7 @@ TrayIndicator *MainWidget::createTrayObject(QWidget *obj_parent)
|
||||
if(library.load())
|
||||
create_tray = reinterpret_cast<TrayFunctionPointer>(library.resolve("createTrayIndicator"));
|
||||
else
|
||||
qDebug() << "Cannot load libqcma_kdenotifier plugin";
|
||||
qWarning() << "Cannot load libqcma_kdenotifier plugin";
|
||||
}
|
||||
else
|
||||
// try to use the appindicator if is available
|
||||
@@ -222,7 +222,7 @@ TrayIndicator *MainWidget::createTrayObject(QWidget *obj_parent)
|
||||
if(library.load())
|
||||
create_tray = reinterpret_cast<TrayFunctionPointer>(library.resolve("createTrayIndicator"));
|
||||
else
|
||||
qDebug() << "Cannot load libqcma_appindicator plugin";
|
||||
qWarning() << "Cannot load libqcma_appindicator plugin";
|
||||
}
|
||||
#endif
|
||||
// else QSystemTrayIcon
|
||||
|
@@ -163,7 +163,7 @@ void UnityIndicator::init()
|
||||
app_indicator_set_icon_theme_path(m_indicator, qPrintable(icon_path));
|
||||
}
|
||||
else
|
||||
qDebug() << "Cannot find qcma icons.";
|
||||
qWarning() << "Cannot find qcma icons.";
|
||||
|
||||
app_indicator_set_status(m_indicator, APP_INDICATOR_STATUS_ACTIVE);
|
||||
app_indicator_set_menu(m_indicator, GTK_MENU(menu));
|
||||
|
@@ -10,7 +10,7 @@
|
||||
!define PRODUCT_EXE_NAME "qcma.exe"
|
||||
!define PRODUCT_VERSION_MAJOR 0
|
||||
!define PRODUCT_VERSION_MINOR 3
|
||||
!define PRODUCT_VERSION_BUILD 9
|
||||
!define PRODUCT_VERSION_BUILD 10
|
||||
!define PRODUCT_PUBLISHER "codestation"
|
||||
!define PRODUCT_WEB_SITE "https://github.com/codestation/qcma"
|
||||
!define HELPURL "https://github.com/xiannox/qcma/wiki"
|
||||
|
Reference in New Issue
Block a user