Skip to content

Commit

Permalink
Bumped version to 1.4.2 and updated NEWS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn committed Aug 5, 2020
1 parent a9a2ba7 commit 55175d1
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
### Tiled 1.4.2 (5 August 2020)

* Reverted the default layer data format back to CSV (was changed to Zstd by accident in 1.4.0)
* Added ability to draw lines using click+drag (in addition to click and click) when holding Shift
* Improved positioning when adding maps to world via context menu
* Disable instead of hide the "Save As Template" action when using embedded tilesets
* Made Ctrl turn off snapping if Snap to Fine Grid is enabled (#2061)
* Set minimum value of tile width and height to 1
* Fixed Select Same Tile tool behavior for empty tiles
* Fixed clickability of the dot in point objects
* Fixed adjusting of terrain images when tileset width changes
* Worlds: Fixed potential data loss when opening .world file
* tmxrasterizer: Added --show-layer option (by Matthias Varnholt, #2858)
* tmxrasterizer: Added parameter to advance animations (by Sean Ballew, #2868)
* Scripting: Initialize tile layer size to map size upon add (#2879)
* Windows installer: Made creation of the desktop shortcut optional
* Windows installer: Made the launching of Tiled optional
* Updated Qt to 5.12.9 on all platforms except Windows XP and snap releases
* snap: Fixed issues with storing the default session (#2852)
* snap: Enabled support for Zstandard (#2850)

### Tiled 1.4.1 (25 June 2020)

* When opening a .world file, load the world and open its first map
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.1'
release = '1.4.2'

# 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.1"
isEmpty(TILED_VERSION):TILED_VERSION = "1.4.2"

# 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.1";
property string version: Environment.getEnv("TILED_VERSION") || "1.4.2";
property bool snapshot: Environment.getEnv("TILED_SNAPSHOT")
property bool release: Environment.getEnv("TILED_RELEASE")
property bool installHeaders: false
Expand Down

0 comments on commit 55175d1

Please sign in to comment.