diff --git a/debian/changelog b/debian/changelog index b079b4f..ad39a39 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +terrafirma (3.1.3) bionic; urgency=medium + + * Fixed steam config bug + + -- Sean Kasun Tue, 05 Jan 2021 13:22:50 -0700 + terrafirma (3.1.2) bionic; urgency=medium * Updated for 1.4.1 diff --git a/main.cpp b/main.cpp index ec16a18..5e7b425 100644 --- a/main.cpp +++ b/main.cpp @@ -25,7 +25,7 @@ int main(int argc, char *argv[]) { QApplication::installTranslator(&translator); QApplication::setApplicationName("Terrafirma"); - QApplication::setApplicationVersion("3.1.2"); + QApplication::setApplicationVersion("3.1.3"); QApplication::setOrganizationName("seancode"); MainWindow w; diff --git a/mainwindow.cpp b/mainwindow.cpp index c0f3d58..68dc494 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -161,7 +161,7 @@ void MainWindow::showAbout() { "© Copyright %3, %4") .arg(qApp->applicationName()) .arg(qApp->applicationVersion()) - .arg(2020) + .arg(2021) .arg(qApp->organizationName())); } diff --git a/steamconfig.cpp b/steamconfig.cpp index 659ae06..5fc1577 100644 --- a/steamconfig.cpp +++ b/steamconfig.cpp @@ -78,7 +78,7 @@ SteamConfig::Element::Element(QList *lines) { line = lines->front(); if (line.contains("{")) { lines->pop_front(); - while (true) { + while (!lines->isEmpty()) { line = lines->front(); if (line.contains("}")) { // empty lines->pop_front(); diff --git a/terrafirma.wxs b/terrafirma.wxs index 9138683..cc243dc 100644 --- a/terrafirma.wxs +++ b/terrafirma.wxs @@ -1,6 +1,6 @@ - +