Skip to content

Commit

Permalink
Bumped version to 1.0.1 and updated NEWS file
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn committed Jun 13, 2017
1 parent 85cebc9 commit 65d9d32
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
### 1.0.1 (13 June 2017)

* Made the zoom level used in Tilesets view persistent
* Fixed mixed up polygon and polyline icons (by Ketan Gupta, #1588)
* Fixed reset of font size when using font dialog (#1596)
* Fixed several issues with the Properties dock (#1583, #1611)
* Fixed centering on object on layer with offset (#1600)
* Fixed handling of symbolic links in Recent Files menu and Maps view (#1589)
* Fixed labels for objects in grouped object layers
* Reverted the file format version back to "1.0" and added "tiledversion" attribute
* Lua plugin: Fixed group layers being exported with "imagelayer" type (#1595)
* Added Korean translation (by miru2533 and SshipSunBee, #1604)
* Updated Russian and Chinese translations

### 1.0.0 (25 May 2017)

* Added support for editing external tilesets (#242)
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.0, Copyright 2008-2017 Thorbjørn Lindeijer, GNU General Public License</string>
<string>Tiled 1.0.1, 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.0</string>
<string>1.0.1</string>
<key>CFBundleVersion</key>
<string>1.0.0</string>
<string>1.0.1</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.0"
isEmpty(TILED_VERSION):TILED_VERSION = "1.0.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.6"

property string version: Environment.getEnv("TILED_VERSION") || "1.0.0";
property string version: Environment.getEnv("TILED_VERSION") || "1.0.1";
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 65d9d32

Please sign in to comment.