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

Commit

Permalink
- Added missing audio file.
Browse files Browse the repository at this point in the history
- Fixed crash on ESS messages.
  • Loading branch information
3vi1 committed Apr 9, 2017
1 parent 5fc707e commit 89fb87b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Binary file added data/audio/bottle-cap-drop.wav
Binary file not shown.
2 changes: 1 addition & 1 deletion src/imp.pro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = imp
TEMPLATE = app

VERSION = 0.8.0
VERSION = 0.8.1
QMAKE_TARGET_COMPANY = EternalDusk
QMAKE_TARGET_DESCRIPTION = Eve Online Intelligence Management Program
QMAKE_TARGET_COPYRIGHT = (c) Copyright 2016-2017 Jesse Litton
Expand Down
4 changes: 3 additions & 1 deletion src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,9 @@ void MainWindow::fileChanged(const QString &absoluteFilePath)

case MessageFlag::ESS:
{
QStringList pilots = regionMap->pilotsIn(message.systems[0]);
QStringList pilots = regionMap->pilotsIn(
regionMap->pilotsSystem(message.logInfo->pilot)
);
foreach(QString pilot, pilots)
{
if(pilotIsEnabled(pilot))
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.8.0"; //VERSION;
QString name = "Hermes Wolf";
QString release = "0.8.1"; //VERSION;
QString name = "Hermes Wolfess";

QString styleHeader1 = "<span style=\" color:#0000ff;\">";
QString styleFooter1 = "</span>";
Expand Down

0 comments on commit 89fb87b

Please sign in to comment.