Skip to content

Commit

Permalink
Updated format version written to files when using "Latest"
Browse files Browse the repository at this point in the history
Though there aren't any relevant changes to the format in 1.11, apart
from support for embedded images on tilesets and image layers.
  • Loading branch information
bjorn committed Jun 27, 2024
1 parent e37539a commit 9eb98cb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/libtiled/fileformat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,13 @@ QString FileFormat::versionString()
return QStringLiteral("1.8");
case Tiled_1_9:
return QStringLiteral("1.9");
case Tiled_1_10:
return QStringLiteral("1.10");
case UnknownVersion:
case Tiled_Current:
case Tiled_Latest:
break;
}
return QStringLiteral("1.10");
return QStringLiteral("1.11");
}

QString FileFormat::classPropertyNameForObject()
Expand Down

0 comments on commit 9eb98cb

Please sign in to comment.