Skip to content

Commit

Permalink
fixed steamconfig bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkite committed Jan 5, 2021
1 parent 38cf36a commit 40eb4f3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
terrafirma (3.1.3) bionic; urgency=medium

* Fixed steam config bug

-- Sean Kasun <[email protected]> Tue, 05 Jan 2021 13:22:50 -0700

terrafirma (3.1.2) bionic; urgency=medium

* Updated for 1.4.1
Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ void MainWindow::showAbout() {
"&copy; Copyright %3, %4")
.arg(qApp->applicationName())
.arg(qApp->applicationVersion())
.arg(2020)
.arg(2021)
.arg(qApp->organizationName()));
}

Expand Down
2 changes: 1 addition & 1 deletion steamconfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ SteamConfig::Element::Element(QList<QString> *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();
Expand Down
2 changes: 1 addition & 1 deletion terrafirma.wxs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<!-- Increase product version each release.. and that's the only change -->
<?define ProductVersion="3.1.2.0"?>
<?define ProductVersion="3.1.3.0"?>
<?define ProductUpgradeCode="77851f13-31d3-473a-8654-5b6325fc53ab"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="Terrafirma" Language="1033" Version="$(var.ProductVersion)" Manufacturer="Sean Kasun" UpgradeCode="$(var.ProductUpgradeCode)">
Expand Down

0 comments on commit 40eb4f3

Please sign in to comment.