Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparations for 1.11.1 release #4137

Merged
merged 2 commits into from
Jan 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### Unreleased
### Tiled 1.11.1 (11 Jan 2025)

* Releases now ship with support for loading Aseprite images (#4109)
* Scripting: Added `FileFormat.nameFilter`
* Scripting: Added `MapEditor.currentBrushChanged` signal
* Scripting: Added `tiled.cursor` to create mouse cursor values
Expand All @@ -15,6 +16,8 @@
* Fixed updating of object label when text changes without changing size
* Fixed minimum value of spinbox in Tile Animation Editor
* Fixed loading of custom property types in tilesets referenced by tile stamps (#4044)
* Fixed compile against Qt 6.8
* snap: Updated to core24
* AppImage: Updated to Sentry 0.7.13

### Tiled 1.11.0 (27 June 2024)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
# The short X.Y version.
version = '1.11'
# The full version, including alpha/beta/rc tags.
release = '1.11.0'
release = '1.11.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
26 changes: 26 additions & 0 deletions org.mapeditor.Tiled.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,32 @@
</keywords>
<content_rating type="oars-1.0" />
<releases>
<release version="1.11.1" type="stable" date="2025-01-11">
<url>https://www.mapeditor.org/2025/01/11/tiled-1-11-1-released.html</url>
<description>
<ul>
<li>Releases now ship with support for loading Aseprite images (#4109)</li>
<li>Scripting: Added FileFormat.nameFilter</li>
<li>Scripting: Added MapEditor.currentBrushChanged signal</li>
<li>Scripting: Added tiled.cursor to create mouse cursor values</li>
<li>Scripting: Added Tileset.transformationFlags (#3753)</li>
<li>Scripting: Added Dialog.addRadioButtonGroup for selecting one of a list of mutually exclusive options (#4107)</li>
<li>Scripting: Made currentWangSet and currentWangColorIndex properties writeable (#4105)</li>
<li>AutoMapping: Ignore rules with empty input or output regions (#3834)</li>
<li>Fixed saving/loading of custom properties set on worlds (#4025)</li>
<li>Fixed issue with placing tile objects after switching maps (#3497)</li>
<li>Fixed crash when accessing a world through a symlink (#4042)</li>
<li>Fixed performance issue when tinting tiles from large tilesets</li>
<li>Fixed error reporting when exporting on the command-line (by Shuhei Nagasawa, #4015)</li>
<li>Fixed updating of object label when text changes without changing size</li>
<li>Fixed minimum value of spinbox in Tile Animation Editor</li>
<li>Fixed loading of custom property types in tilesets referenced by tile stamps (#4044)</li>
<li>Fixed compile against Qt 6.8</li>
<li>snap: Updated to core24</li>
<li>AppImage: Updated to Sentry 0.7.13</li>
</ul>
</description>
</release>
<release version="1.11.0" type="stable" date="2024-06-27">
<url>https://www.mapeditor.org/2024/06/27/tiled-1-11-released.html</url>
<description>
Expand Down
2 changes: 1 addition & 1 deletion src/tiled/aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ AboutDialog::AboutDialog(QWidget *parent): QDialog(parent)
"<p align=\"center\">You may modify and redistribute this program under the terms of the GPL (version 2 or later). "
"A copy of the GPL is contained in the 'COPYING' file distributed with Tiled.</p>\n"
"<p align=\"center\"><a href=\"https://www.mapeditor.org/\">https://www.mapeditor.org/</a></p>\n")
.arg(QApplication::applicationVersion(), QStringLiteral("2024"));
.arg(QApplication::applicationVersion(), QStringLiteral("2025"));

textBrowser->setHtml(html);

Expand Down
2 changes: 1 addition & 1 deletion tiled.qbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Project {
qbsSearchPaths: "qbs"
minimumQbsVersion: "1.13"

property string version: Environment.getEnv("TILED_VERSION") || "1.11.0";
property string version: Environment.getEnv("TILED_VERSION") || "1.11.1";
property bool snapshot: Environment.getEnv("TILED_SNAPSHOT") == "true"
property bool release: Environment.getEnv("TILED_RELEASE") == "true"
property string libDir: "lib"
Expand Down
Loading