diff --git a/NEWS.md b/NEWS.md index a2ee6f959d..6d54101ff4 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,6 @@ -### Unreleased 1.8 patch +### Tiled 1.8.5 (17 May 2022) -* Made expanded group layers persistent +* Made expanded group layers persistent (#3282) * Improved snapping behavior for scalable objects on staggered maps * Allow setting a shortcut on the 'Edit Tileset' action * Always select first entry while using the Open File in Project action @@ -19,6 +19,7 @@ * macOS: Enabled support for loading SVGs * macOS: Show shortcuts in context menus when using Tiled Fusion style (#1978) * AppImage: Updated to Sentry 0.4.17 +* Updated Chinese (Simplified) and Portuguese (Portugal) translations ### Tiled 1.8.4 (31 March 2022) diff --git a/docs/conf.py b/docs/conf.py index f9b24babcd..c7da6b56af 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,7 +60,7 @@ # The short X.Y version. version = '1.8' # The full version, including alpha/beta/rc tags. -release = '1.8.4' +release = '1.8.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/org.mapeditor.Tiled.appdata.xml b/org.mapeditor.Tiled.appdata.xml index 40eea0dc40..66a0238c61 100644 --- a/org.mapeditor.Tiled.appdata.xml +++ b/org.mapeditor.Tiled.appdata.xml @@ -15,6 +15,33 @@ + + https://www.mapeditor.org/2022/05/17/tiled-1-8-5-released.html + +
    +
  • Made expanded group layers persistent (#3282)
  • +
  • Improved snapping behavior for scalable objects on staggered maps
  • +
  • Allow setting a shortcut on the 'Edit Tileset' action
  • +
  • Always select first entry while using the Open File in Project action
  • +
  • Improved Add Property dialog layout in case of long type names (#3302)
  • +
  • Fixed restoring of window layout when maximized (#590)
  • +
  • Fixed snapping when dragging templates into a map (#3326)
  • +
  • Fixed map selection rectangle in world for infinite maps (#3340)
  • +
  • Fixed 'Merge Layer Down' action for infinite maps
  • +
  • Fixed several small issues in the image color picker (#3348)
  • +
  • Fixed missing name for undo commands that add/remove maps from world
  • +
  • Fixed selection issues for tile objects with a non-zero tile offset
  • +
  • Fixed hover indicator sometimes overlapping selection indicator
  • +
  • Fixed removal of terrain info when removing tiles from a collection
  • +
  • Scripting: Fixed region.rects when compiled against Qt 5.9 to 5.13
  • +
  • Scripting: Layer.tintColor is now #ffffff when not set
  • +
  • macOS: Enabled support for loading SVGs
  • +
  • macOS: Show shortcuts in context menus when using Tiled Fusion style (#1978)
  • +
  • AppImage: Updated to Sentry 0.4.17
  • +
  • Updated Chinese (Simplified) and Portuguese (Portugal) translations
  • +
      + + https://www.mapeditor.org/2022/03/31/tiled-1-8-3-released.html diff --git a/tiled.pri b/tiled.pri index e706dff9fb..edb4c8c7c8 100644 --- a/tiled.pri +++ b/tiled.pri @@ -1,5 +1,5 @@ # Initialize the version -isEmpty(TILED_VERSION):TILED_VERSION = "1.8.4" +isEmpty(TILED_VERSION):TILED_VERSION = "1.8.5" # See the README file for instructions about setting the install prefix. isEmpty(PREFIX):PREFIX = /usr/local diff --git a/tiled.qbs b/tiled.qbs index c2a58623d1..d29e2137e8 100644 --- a/tiled.qbs +++ b/tiled.qbs @@ -7,7 +7,7 @@ Project { qbsSearchPaths: "qbs" minimumQbsVersion: "1.12" - property string version: Environment.getEnv("TILED_VERSION") || "1.8.4"; + property string version: Environment.getEnv("TILED_VERSION") || "1.8.5"; property bool snapshot: Environment.getEnv("TILED_SNAPSHOT") == "true" property bool release: Environment.getEnv("TILED_RELEASE") == "true" property bool installHeaders: false