Skip to content
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
28 changes: 28 additions & 0 deletions util/java/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## [1.5.0] - 2026-09-06

### Added
- Support for modern TMX features: object templates, infinite maps with
chunked layers, class properties, Wang sets, editor settings, tileset
transformations, embedded and cropped tile images, group layers, parallax,
tint colors, zstd-compressed and CSV-encoded layer data and SVG tilesets
(by Taz Tatsuno, #4325)
- The writer now always stamps the current format version and supports CSV
encoding, zstd compression and chunked infinite layers (by Taz Tatsuno, #4325)
- New oblique renderer, rewritten hexagonal renderer, flip flag rendering,
group layer opacity and corrected rotation pivot (by Taz Tatsuno, #4325)
- Added `ROTATED_HEXAGONAL_120_FLAG` (#4315)
- The `zstd-jni` and `jsvg` dependencies can be excluded by consumers that
use neither zstd compression nor SVG tilesets (by Taz Tatsuno, #4325)

### Changed
- Migrated from `javax.xml.bind` to `jakarta.xml.bind` for Java 21 support,
which raises the minimum supported Java version to 11 (by Taz Tatsuno, #4326)
- Optimized image scaling in `MapObject.getImage` (by Taz Tatsuno, #4327)

### Fixed
- Fixed "Can't find ReflectionNavigator class" error when running tmxviewer
(by Taz Tatsuno, #4328)
- XML escaping, XXE-hardened parsing, errors on truncated or invalid tile
data, correct unsigned gid handling and locale-independent number
formatting (by Taz Tatsuno, #4325)

## [1.4.3] - 2025-06-02

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion util/java/libtiled-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.mapeditor</groupId>
<artifactId>tiled-parent</artifactId>
<version>1.4.4-SNAPSHOT</version>
<version>1.5.1-SNAPSHOT</version>
</parent>

<artifactId>libtiled</artifactId>
Expand Down
28 changes: 10 additions & 18 deletions util/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>org.mapeditor</groupId>
<artifactId>tiled-parent</artifactId>
<version>1.4.4-SNAPSHOT</version>
<version>1.5.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Tiled</name>
Expand Down Expand Up @@ -63,16 +63,6 @@
<system>GitHub Actions</system>
<url>https://github.com/mapeditor/tiled/actions</url>
</ciManagement>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>


<properties>
Expand Down Expand Up @@ -197,6 +187,15 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -376,13 +375,6 @@
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<updateReleaseInfo>true</updateReleaseInfo>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion util/java/tmxviewer-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.mapeditor</groupId>
<artifactId>tiled-parent</artifactId>
<version>1.4.4-SNAPSHOT</version>
<version>1.5.1-SNAPSHOT</version>
</parent>

<artifactId>tmxviewer</artifactId>
Expand Down
Loading