Skip to content

Commit

Permalink
Bumped version to 1.4.1 and updated NEWS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn committed Jun 25, 2020
1 parent 8b8a7ee commit 40049fd
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
### Tiled 1.4.1 (25 June 2020)

* When opening a .world file, load the world and open its first map
* When opening an object template, show it in the Template Editor
* Fixed crash on trying to export using the command-line (#2842)
* Fixed crash when deleting multiple objects with manual drawing order (#2844)
* Fixed potential crash when removing a tileset
* Fixed potential scaling happening for maps used as tilesets (#2843)
* Fixed positioning of map view when switching between maps in a world
* Fixed file dialog start location
* Scripting: Fixed issues with absolute file paths on Windows (#2841)
* Lua plugin: Fixed syntax used for object properties (#2839)

### Tiled 1.4.0 (17 June 2020)

* Added support for projects (#1665)
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
clone_depth: 200
version: '1.3.{build}'
version: '1.4.{build}'
image:
- Visual Studio 2015
- Visual Studio 2019
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
version = '1.4'
# The full version, including alpha/beta/rc tags.
release = '1.4.0'
release = '1.4.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion tiled.pri
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Initialize the version
isEmpty(TILED_VERSION):TILED_VERSION = "1.4.0"
isEmpty(TILED_VERSION):TILED_VERSION = "1.4.1"

# See the README file for instructions about setting the install prefix.
isEmpty(PREFIX):PREFIX = /usr/local
Expand Down
2 changes: 1 addition & 1 deletion tiled.qbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Project {
qbsSearchPaths: "qbs"
minimumQbsVersion: "1.8"

property string version: Environment.getEnv("TILED_VERSION") || "1.4.0";
property string version: Environment.getEnv("TILED_VERSION") || "1.4.1";
property bool snapshot: Environment.getEnv("TILED_SNAPSHOT")
property bool release: Environment.getEnv("TILED_RELEASE")
property bool installHeaders: false
Expand Down

0 comments on commit 40049fd

Please sign in to comment.