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
|
qcma (0.3.9) unstable; urgency=low
|
||||||
|
|
||||||
* Set correct organization name in qcma_cli.
|
* Set correct organization name in qcma_cli.
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
QT += core network sql
|
QT += core network sql
|
||||||
|
|
||||||
VERSION = 0.3.9
|
VERSION = 0.3.10
|
||||||
|
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
|
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
# qcma spec file
|
# qcma spec file
|
||||||
#
|
#
|
||||||
|
|
||||||
%define _version 0.3.9
|
%define _version 0.3.10
|
||||||
|
|
||||||
%if "%{_version}" == "testing" || "%{_version}" == "master"
|
%if "%{_version}" == "testing" || "%{_version}" == "master"
|
||||||
%define _verprefix %{_version}
|
%define _verprefix %{_version}
|
||||||
|
@@ -21,7 +21,6 @@
|
|||||||
#include "avdecoder.h"
|
#include "avdecoder.h"
|
||||||
#include "database.h"
|
#include "database.h"
|
||||||
|
|
||||||
#include <QDebug>
|
|
||||||
#include <QBuffer>
|
#include <QBuffer>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
|
@@ -63,14 +63,14 @@ void HeadlessManager::refreshDatabase()
|
|||||||
QTextStream(stdout) << "Database scan has started" << endl;
|
QTextStream(stdout) << "Database scan has started" << endl;
|
||||||
|
|
||||||
if(!m_db->rescan()) {
|
if(!m_db->rescan()) {
|
||||||
qDebug("No PS Vita system has been registered");
|
qWarning("No PS Vita system has been registered");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void HeadlessManager::start()
|
void HeadlessManager::start()
|
||||||
{
|
{
|
||||||
if(VitaMTP_Init() < 0) {
|
if(VitaMTP_Init() < 0) {
|
||||||
qDebug("Cannot initialize VitaMTP library");
|
qCritical("Cannot initialize VitaMTP library");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -127,7 +127,7 @@ void HeadlessManager::start()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(thread_count == 0) {
|
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")) {
|
if(translator.load("qcma_" + locale, ":/resources/translations")) {
|
||||||
app.installTranslator(&translator);
|
app.installTranslator(&translator);
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "Cannot load translation for locale:" << locale;
|
qWarning() << "Cannot load translation for locale:" << locale;
|
||||||
}
|
}
|
||||||
|
|
||||||
QTranslator system_translator;
|
QTranslator system_translator;
|
||||||
|
@@ -69,7 +69,7 @@ CmaBroadcast::CmaBroadcast(QObject *obj_parent) :
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
if(!socket->bind(host_address, QCMA_REQUEST_PORT, QUdpSocket::ShareAddress | QUdpSocket::ReuseAddressHint)) {
|
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")) {
|
if(translator.load("qcma_" + locale, ":/resources/translations")) {
|
||||||
app.installTranslator(&translator);
|
app.installTranslator(&translator);
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "Cannot load translation for locale:" << locale;
|
qWarning() << "Cannot load translation for locale:" << locale;
|
||||||
}
|
}
|
||||||
|
|
||||||
QTranslator system_translator;
|
QTranslator system_translator;
|
||||||
|
@@ -155,12 +155,12 @@ void MainWidget::showAboutDialog()
|
|||||||
{
|
{
|
||||||
QMessageBox about;
|
QMessageBox about;
|
||||||
|
|
||||||
about.setText(QString("QCMA ") + QCMA_VER);
|
about.setText(QString("Qcma ") + QCMA_VER);
|
||||||
about.setWindowTitle(tr("About QCMA"));
|
about.setWindowTitle(tr("About Qcma"));
|
||||||
#ifndef QCMA_BUILD_HASH
|
#ifndef QCMA_BUILD_HASH
|
||||||
about.setInformativeText(tr("Copyright (C) 2014 Codestation") + "\n");
|
about.setInformativeText(tr("Copyright (C) 2015 Codestation") + "\n");
|
||||||
#else
|
#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
|
#endif
|
||||||
about.setStandardButtons(QMessageBox::Ok);
|
about.setStandardButtons(QMessageBox::Ok);
|
||||||
about.setIconPixmap(QPixmap(":/main/resources/images/qcma.png"));
|
about.setIconPixmap(QPixmap(":/main/resources/images/qcma.png"));
|
||||||
@@ -211,7 +211,7 @@ TrayIndicator *MainWidget::createTrayObject(QWidget *obj_parent)
|
|||||||
if(library.load())
|
if(library.load())
|
||||||
create_tray = reinterpret_cast<TrayFunctionPointer>(library.resolve("createTrayIndicator"));
|
create_tray = reinterpret_cast<TrayFunctionPointer>(library.resolve("createTrayIndicator"));
|
||||||
else
|
else
|
||||||
qDebug() << "Cannot load libqcma_kdenotifier plugin";
|
qWarning() << "Cannot load libqcma_kdenotifier plugin";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
// try to use the appindicator if is available
|
// try to use the appindicator if is available
|
||||||
@@ -222,7 +222,7 @@ TrayIndicator *MainWidget::createTrayObject(QWidget *obj_parent)
|
|||||||
if(library.load())
|
if(library.load())
|
||||||
create_tray = reinterpret_cast<TrayFunctionPointer>(library.resolve("createTrayIndicator"));
|
create_tray = reinterpret_cast<TrayFunctionPointer>(library.resolve("createTrayIndicator"));
|
||||||
else
|
else
|
||||||
qDebug() << "Cannot load libqcma_appindicator plugin";
|
qWarning() << "Cannot load libqcma_appindicator plugin";
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
// else QSystemTrayIcon
|
// else QSystemTrayIcon
|
||||||
|
@@ -163,7 +163,7 @@ void UnityIndicator::init()
|
|||||||
app_indicator_set_icon_theme_path(m_indicator, qPrintable(icon_path));
|
app_indicator_set_icon_theme_path(m_indicator, qPrintable(icon_path));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
qDebug() << "Cannot find qcma icons.";
|
qWarning() << "Cannot find qcma icons.";
|
||||||
|
|
||||||
app_indicator_set_status(m_indicator, APP_INDICATOR_STATUS_ACTIVE);
|
app_indicator_set_status(m_indicator, APP_INDICATOR_STATUS_ACTIVE);
|
||||||
app_indicator_set_menu(m_indicator, GTK_MENU(menu));
|
app_indicator_set_menu(m_indicator, GTK_MENU(menu));
|
||||||
|
@@ -10,7 +10,7 @@
|
|||||||
!define PRODUCT_EXE_NAME "qcma.exe"
|
!define PRODUCT_EXE_NAME "qcma.exe"
|
||||||
!define PRODUCT_VERSION_MAJOR 0
|
!define PRODUCT_VERSION_MAJOR 0
|
||||||
!define PRODUCT_VERSION_MINOR 3
|
!define PRODUCT_VERSION_MINOR 3
|
||||||
!define PRODUCT_VERSION_BUILD 9
|
!define PRODUCT_VERSION_BUILD 10
|
||||||
!define PRODUCT_PUBLISHER "codestation"
|
!define PRODUCT_PUBLISHER "codestation"
|
||||||
!define PRODUCT_WEB_SITE "https://github.com/codestation/qcma"
|
!define PRODUCT_WEB_SITE "https://github.com/codestation/qcma"
|
||||||
!define HELPURL "https://github.com/xiannox/qcma/wiki"
|
!define HELPURL "https://github.com/xiannox/qcma/wiki"
|
||||||
|
Reference in New Issue
Block a user