diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 2fd8158ebe..e0406d2257 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -11,7 +11,7 @@ assignees: '' Fill in the placeholders below. Delete any headings and placeholders that you do not fill in. --> **OS:** [e.g. Windows 10] -**Version:** [e.g. 0.3.4] +**Version:** [e.g. 0.3.4.1] **Commit/Build:** [e.g. 426e106] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 807d2ebb70..14fac2badb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ env: OPENRCT2_BUILD_SERVER: GitHub OPENRCT2_ORG_TOKEN: ${{ secrets.OPENRCT2_ORG_TOKEN }} BACKTRACE_IO_TOKEN: ${{ secrets.BACKTRACE_IO_TOKEN }} - OPENRCT2_VERSION: 0.3.4 + OPENRCT2_VERSION: 0.3.4.1 jobs: lint-commit: name: Lint Commit Message diff --git a/debian/changelog b/debian/changelog index 1ee4a220d5..7b15dca47a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,15 @@ -openrct2 (0.3.4-develop-1) unstable; urgency=medium +openrct2 (0.3.4.1-develop-1) unstable; urgency=medium * Nightly develop build. +openrct2 (0.3.4.1) stable; urgency=medium + + * Fix: [#15028] Crash when placing large scenery. + * Fix: [#15048] Crash when removing litter with cheats. + * Fix: [#15052] Crash when using banner window. + * Fix: [#15063] Crash when opening large scenery signs. + * Improved: [#12626] Allow using RCT2 saves to mark RCT Classic (.sea) parks as finished and vice versa. + openrct2 (0.3.4) stable; urgency=medium * Feature: [#13967] Track List window now displays the path to the design when debugging tools are on. diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 72732f7229..2ce75c15bd 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -1,4 +1,4 @@ -0.3.4+ (in development) +0.3.4.1 (2021-07-25) ------------------------------------------------------------------------ - Fix: [#15028] Crash when placing large scenery. - Fix: [#15048] Crash when removing litter with cheats. diff --git a/distribution/linux/openrct2.appdata.xml b/distribution/linux/openrct2.appdata.xml index 71d17709e7..d6ee045225 100644 --- a/distribution/linux/openrct2.appdata.xml +++ b/distribution/linux/openrct2.appdata.xml @@ -66,6 +66,9 @@ none + + https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.3.4.1 + https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.3.4 diff --git a/distribution/macos/Info.plist b/distribution/macos/Info.plist index e869d6893e..89e23051ad 100644 --- a/distribution/macos/Info.plist +++ b/distribution/macos/Info.plist @@ -13,7 +13,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.3.4 + 0.3.4.1 CFBundleSignature ORCT LSMinimumSystemVersion diff --git a/distribution/readme.txt b/distribution/readme.txt index 979fbdc003..768a335f01 100644 --- a/distribution/readme.txt +++ b/distribution/readme.txt @@ -1,5 +1,5 @@ -Last updated: 2021-07-19 -Release version: 0.3.4 +Last updated: 2021-07-25 +Release version: 0.3.4.1 ------------------------------------------------------------------------ diff --git a/readme.md b/readme.md index 599e48b969..1e56144a5b 100644 --- a/readme.md +++ b/readme.md @@ -10,7 +10,7 @@ An open-source re-implementation of RollerCoaster Tycoon 2. A construction and m ### Download | Latest release | Latest development build | |----------------|--------------------------| -| [![OpenRCT2.org](https://img.shields.io/badge/master-v0.3.4-green.svg)](https://openrct2.org/downloads/master/latest) | [![OpenRCT2.org](https://img.shields.io/badge/develop-v0.3.4+-blue.svg)](https://openrct2.org/downloads/develop/latest) | +| [![OpenRCT2.org](https://img.shields.io/badge/master-v0.3.4.1-green.svg)](https://openrct2.org/downloads/master/latest) | [![OpenRCT2.org](https://img.shields.io/badge/develop-v0.3.4.1+-blue.svg)](https://openrct2.org/downloads/develop/latest) | --- diff --git a/scripts/setenv b/scripts/setenv index 87aae819b7..4049b493f6 100755 --- a/scripts/setenv +++ b/scripts/setenv @@ -4,7 +4,7 @@ # It should be dot sourced into your environment if [[ "$GITHUB_ACTIONS" != "true" ]]; then export OPENRCT2_BUILD_SERVER=$(hostname) - export OPENRCT2_VERSION=0.3.4 + export OPENRCT2_VERSION=0.3.4.1 GITHUB_REF=$(git rev-parse --symbolic-full-name HEAD) GITHUB_SHA=$(git rev-parse HEAD) fi diff --git a/src/openrct2-android/app/build.gradle b/src/openrct2-android/app/build.gradle index 964213b9e2..2845bae2eb 100644 --- a/src/openrct2-android/app/build.gradle +++ b/src/openrct2-android/app/build.gradle @@ -10,7 +10,7 @@ android { targetSdkVersion 28 versionCode 2 - versionName '0.3.4' + versionName '0.3.4.1' externalNativeBuild { cmake { diff --git a/src/openrct2/Version.h b/src/openrct2/Version.h index 0fbe74cf73..be3e7cfce6 100644 --- a/src/openrct2/Version.h +++ b/src/openrct2/Version.h @@ -14,7 +14,7 @@ #include #define OPENRCT2_NAME "OpenRCT2" -#define OPENRCT2_VERSION "0.3.4" +#define OPENRCT2_VERSION "0.3.4.1" #if defined(__amd64__) || defined(_M_AMD64) # define OPENRCT2_ARCHITECTURE "x86-64"