diff --git a/docs/RELEASES b/docs/RELEASES index 97b3b0c..31c3496 100644 --- a/docs/RELEASES +++ b/docs/RELEASES @@ -1,4 +1,6 @@ -0.9.7.1 - Fixed playing a sound at double volume (actually +0.9.7.3 - Adjust to cope with CCP's new log naming schema. + +0.9.7.2 - Fixed playing a sound at double volume (actually playing it twice overlapping) when you have two chars in local seeing the same alert. @@ -409,6 +411,7 @@ Coming soon: +- click user icon for zkillboard - right-click to copy system name. - Rework KOS Checking: kos msg for red by last should show person and corp. - fix display of messages with backslashes. @@ -423,3 +426,7 @@ Coming soon: - Add queue-play option to queue sounds. - Reload internal list when rules updated. - Laugh at people reporting themselves +- KOS checker redirection? +- Menu option to change transparency. +- Stop music on about dialog with checkbox. +- load last map used diff --git a/src/imp.pro b/src/imp.pro index 6f419fa..5550602 100644 --- a/src/imp.pro +++ b/src/imp.pro @@ -13,7 +13,7 @@ QT += xml xmlpatterns svg widgets TARGET = imp TEMPLATE = app -VERSION = 0.9.7.2 +VERSION = 0.9.7.3 QMAKE_TARGET_COMPANY = EternalDusk QMAKE_TARGET_DESCRIPTION = Eve Online Intelligence Management Program QMAKE_TARGET_COPYRIGHT = (c) Copyright 2016-2017 Jesse Litton diff --git a/src/logcatcher.cpp b/src/logcatcher.cpp index 61921b2..77c54d0 100644 --- a/src/logcatcher.cpp +++ b/src/logcatcher.cpp @@ -143,7 +143,7 @@ void LogCatcher::findCurrentLogs(const QString& dirName) infoList.clear(); } - QRegExp logNameRegEx("(.*)_[0-9]+_[0-9]+\\.txt$"); + QRegExp logNameRegEx("(.*)( \\[[0-9]+\\])?_[0-9]+_[0-9]+\\.txt$"); foreach (QFileInfo fileInfo, QDir(dirName).entryInfoList()) { if (fileInfo.isFile()) { diff --git a/src/meta.h b/src/meta.h index 86c1331..e55d47a 100644 --- a/src/meta.h +++ b/src/meta.h @@ -27,8 +27,8 @@ static const struct Version { Version(){} - QString release = "0.9.7.2"; //VERSION; - QString name = "Fool Mental Cookie Crisp"; + QString release = "0.9.7.3"; //VERSION; + QString name = "Relatively Sane Clown Posse"; QString styleHeader1 = ""; QString styleFooter1 = "";