mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 19:13:07 +01:00
Merge branch 'master' into develop
This commit is contained in:
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
@@ -2,7 +2,7 @@
|
||||
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.2.0]
|
||||
**Version:** [e.g. 0.2.1]
|
||||
**Commit/Build:** [e.g. 426e106]
|
||||
|
||||
<!-- Explanation of the issue -->
|
||||
|
||||
@@ -14,7 +14,7 @@ sudo: required
|
||||
dist: trusty
|
||||
env:
|
||||
global:
|
||||
- OPENRCT2_VERSION="0.2.0"
|
||||
- OPENRCT2_VERSION="0.2.1"
|
||||
|
||||
matrix:
|
||||
include:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
version: 0.2.0.{build}
|
||||
version: 0.2.1.{build}
|
||||
image:
|
||||
- Visual Studio 2017
|
||||
cache:
|
||||
|
||||
4
debian/changelog
vendored
4
debian/changelog
vendored
@@ -1,5 +1,5 @@
|
||||
openrct2 (0.2.0-develop-1) unstable; urgency=medium
|
||||
openrct2 (0.2.1-develop-1) unstable; urgency=medium
|
||||
|
||||
* Release 2018-06 (Closes: #XXXXXX)
|
||||
* Release 2018-08 (Closes: #XXXXXX)
|
||||
|
||||
-- Michał Janiszewski <janisozaur+openrct2@gmail.com> Sun, 10 Jan 2016 23:41:16 +0100
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
0.2.0+ (in development)
|
||||
0.2.1 (2018-08-26)
|
||||
------------------------------------------------------------------------
|
||||
- Feature: [#5993] Ride window prices can now be set via text input.
|
||||
- Feature: [#6998] Guests now wait for passing vehicles before crossing railway tracks.
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.2.0</string>
|
||||
<string>0.2.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>ORCT</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Last updated: 2018-06-10
|
||||
Release version: 0.2.0
|
||||
Last updated: 2018-08-26
|
||||
Release version: 0.2.1
|
||||
------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
<Platform Condition="'$(PLATFORM)'==''">x64</Platform>
|
||||
<GIT_COMMIT_SHA1_SHORT Condition="'$(GIT_COMMIT_SHA1)'!=''">$(GIT_COMMIT_SHA1.Substring(0, 7))</GIT_COMMIT_SHA1_SHORT>
|
||||
|
||||
<Version>0.2.0</Version>
|
||||
<Version>0.2.1</Version>
|
||||
<VersionExtra Condition="'$(GIT_BRANCH)'!=''">-$(GIT_BRANCH)-$(GIT_COMMIT_SHA1_SHORT)</VersionExtra>
|
||||
<VersionExtra Condition="'$(GIT_TAG)'!=''"></VersionExtra>
|
||||
<TargetLibsVersion>16</TargetLibsVersion>
|
||||
|
||||
@@ -10,8 +10,8 @@ An open-source re-implementation of RollerCoaster Tycoon 2. A construction and m
|
||||
### Build Status
|
||||
| | Windows | Linux / Mac | Download |
|
||||
|-------------|---------|-------------|----------|
|
||||
| **master** | [](https://ci.appveyor.com/project/IntelOrca/openrct2-ject9) | [](https://travis-ci.org/OpenRCT2/OpenRCT2) | [](https://openrct2.org/downloads/master/latest) |
|
||||
| **develop** | [](https://ci.appveyor.com/project/IntelOrca/openrct2-ject9) | [](https://travis-ci.org/OpenRCT2/OpenRCT2) | [](https://openrct2.org/downloads/develop/latest) |
|
||||
| **master** | [](https://ci.appveyor.com/project/IntelOrca/openrct2-ject9) | [](https://travis-ci.org/OpenRCT2/OpenRCT2) | [](https://openrct2.org/downloads/master/latest) |
|
||||
| **develop** | [](https://ci.appveyor.com/project/IntelOrca/openrct2-ject9) | [](https://travis-ci.org/OpenRCT2/OpenRCT2) | [](https://openrct2.org/downloads/develop/latest) |
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ android {
|
||||
targetSdkVersion 25
|
||||
|
||||
versionCode 2
|
||||
versionName '0.2.0'
|
||||
versionName '0.2.1'
|
||||
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "common.h"
|
||||
|
||||
#define OPENRCT2_NAME "OpenRCT2"
|
||||
#define OPENRCT2_VERSION "0.2.0"
|
||||
#define OPENRCT2_VERSION "0.2.1"
|
||||
|
||||
#if defined(__amd64__) || defined(_M_AMD64)
|
||||
# define OPENRCT2_ARCHITECTURE "x86-64"
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
// This string specifies which version of network stream current build uses.
|
||||
// It is used for making sure only compatible builds get connected, even within
|
||||
// single OpenRCT2 version.
|
||||
#define NETWORK_STREAM_VERSION "6"
|
||||
#define NETWORK_STREAM_VERSION "0"
|
||||
#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION
|
||||
|
||||
static rct_peep* _pickup_peep = nullptr;
|
||||
|
||||
Reference in New Issue
Block a user