Skip to content

Commit

Permalink
fixed bad id in items
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkite committed Jun 6, 2023
1 parent 1b42612 commit a525ff6
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.16)

project(terrafirma VERSION 3.1.11 LANGUAGES C CXX)
project(terrafirma VERSION 3.1.12 LANGUAGES C CXX)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
2 changes: 1 addition & 1 deletion config/config.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Installer>
<Name>Terrafirma</Name>
<Version>3.1.11</Version>
<Version>3.1.12</Version>
<Title>Terrafirma Installer</Title>
<Publisher>Sean Kasun</Publisher>
<StartMenuDir>Terrafirma</StartMenuDir>
Expand Down
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.12) focal; urgency=medium

* Fixed bad id in tiles

-- Sean Kasun <[email protected]> Tue, 6 Jun 2023 09:36:28 -0700

terrafirma (3.1.11) focal; urgency=medium

* Fixed crash in 1.4.4.9
Expand Down
4 changes: 2 additions & 2 deletions packages/com.seancode.terrafirma/meta/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<Package>
<DisplayName>Terrafirma</DisplayName>
<Description>Terraria mapping software</Description>
<Version>3.1.11</Version>
<ReleaseDate>2023-01-23</ReleaseDate>
<Version>3.1.12</Version>
<ReleaseDate>2023-06-06</ReleaseDate>
<Default>true</Default>
<Required>true</Required>
<Script>installscript.qs</Script>
Expand Down
2 changes: 1 addition & 1 deletion res/tiles.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/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.11");
QApplication::setApplicationVersion("3.1.12");
QApplication::setOrganizationName("seancode");
QApplication::setWindowIcon(QIcon(":/res/terrafirma.png"));

Expand Down

0 comments on commit a525ff6

Please sign in to comment.