Skip to content

Commit e822f5d

Browse files
committed
Bumped version to 1.8.2 and updated NEWS.md
1 parent d22df61 commit e822f5d

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

NEWS.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### Tiled 1.8.2 (18 February 2022)
2+
3+
* Fixed deactivating of tools when no layer is selected (avoids crash)
4+
* Fixed monospace font option in multi-line text editor on macOS and Windows (#3007)
5+
* Fixed ability to reset custom 'color' and 'object' properties (#3270)
6+
* Fixed updating of layer positions when changing parallax factor of a group (#3175)
7+
* Scripting: Fixed crash when assigning null to the MapObject.tile property
8+
* Scripting: Fixed adding of tilesets when adding layers to a loaded map (#3268)
9+
* JSON format: Fixed layer locked status not getting saved (#2877)
10+
* macOS: Fixed duplicate overwrite confirmation when using Export As (#3152)
11+
* FreeBSD: Fixed compile due to missing include (by Dmitry Marakasov, #3271)
12+
113
### Tiled 1.8.1 (11 February 2022)
214

315
* Fixed pasted objects not getting selected if a tile layer was also copied

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '1.8'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '1.8.1'
63+
release = '1.8.2'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

tiled.pri

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Initialize the version
2-
isEmpty(TILED_VERSION):TILED_VERSION = "1.8.1"
2+
isEmpty(TILED_VERSION):TILED_VERSION = "1.8.2"
33

44
# See the README file for instructions about setting the install prefix.
55
isEmpty(PREFIX):PREFIX = /usr/local

tiled.qbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Project {
77
qbsSearchPaths: "qbs"
88
minimumQbsVersion: "1.12"
99

10-
property string version: Environment.getEnv("TILED_VERSION") || "1.8.1";
10+
property string version: Environment.getEnv("TILED_VERSION") || "1.8.2";
1111
property bool snapshot: Environment.getEnv("TILED_SNAPSHOT") == "true"
1212
property bool release: Environment.getEnv("TILED_RELEASE") == "true"
1313
property bool installHeaders: false

0 commit comments

Comments
 (0)