Skip to content

Commit

Permalink
Bumped version to 1.0.2 and updated NEWS file
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn committed Jun 27, 2017
1 parent 45de3db commit 0cd4a29
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
### 1.0.2 (27 June 2017)

* Added read-only tile and terrain properties in map editor
* Fixed Terrains view to display all tilesets with terrain
* Fixed hang when trying to fill with a pasted stamp (#1617, #1624)
* Fixed crash when editing collision when tile image wasn't loaded
* Fixed rendering of tile objects when the image couldn't be loaded
* Fixed rendering of tile object outlines for resized objects
* Fixed labels shown on objects hidden via a group layer
* Fixed updating of label positions when moving a group layer
* GmxPlugin: Fixed tile type inheritance for tile objects
* Restored Ctrl+N shortcut on "New Map" action

### 1.0.1 (13 June 2017)

* Made the zoom level used in Tilesets view persistent
Expand Down
6 changes: 3 additions & 3 deletions src/tiled/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>CFBundleExecutable</key>
<string>Tiled</string>
<key>CFBundleGetInfoString</key>
<string>Tiled 1.0.1, Copyright 2008-2017 Thorbjørn Lindeijer, GNU General Public License</string>
<string>Tiled 1.0.2, Copyright 2008-2017 Thorbjørn Lindeijer, GNU General Public License</string>
<key>CFBundleIconFile</key>
<string>tiled-icon-mac</string>
<key>CFBundleIdentifier</key>
Expand All @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0.1</string>
<string>1.0.2</string>
<key>CFBundleVersion</key>
<string>1.0.1</string>
<string>1.0.2</string>
<key>CSResourcesFileMapped</key>
<true/>
<key>NSHumanReadableCopyright</key>
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.0.1"
isEmpty(TILED_VERSION):TILED_VERSION = "1.0.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.6"

property string version: Environment.getEnv("TILED_VERSION") || "1.0.1";
property string version: Environment.getEnv("TILED_VERSION") || "1.0.2";
property bool sparkleEnabled: Environment.getEnv("TILED_SPARKLE")
property bool snapshot: Environment.getEnv("TILED_SNAPSHOT")
property bool release: Environment.getEnv("TILED_RELEASE")
Expand Down

0 comments on commit 0cd4a29

Please sign in to comment.