Bump version to 0.3.10.

Update changelog.
Change most of qDebug() meant to be errors to qWarning().
This commit is contained in:
codestation
2015-03-15 16:09:36 -04:30
parent 659d72bced
commit 861a1b9a69
11 changed files with 26 additions and 17 deletions

View File

@@ -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");
}
}

View File

@@ -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;