Skip to content
This repository has been archived by the owner on Aug 26, 2020. It is now read-only.

Commit

Permalink
Adjust to CCP's new log naming schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
3vi1 committed Mar 21, 2018
1 parent 20436c7 commit 371f93b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion docs/RELEASES
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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.
Expand All @@ -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
2 changes: 1 addition & 1 deletion src/imp.pro
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/logcatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down
4 changes: 2 additions & 2 deletions src/meta.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "<span style=\" color:#0000ff;\">";
QString styleFooter1 = "</span>";
Expand Down

0 comments on commit 371f93b

Please sign in to comment.