1.2.1 release
This commit is contained in:
parent
3225ff5133
commit
c3e41976e8
2 changed files with 5 additions and 1 deletions
|
@ -7,6 +7,9 @@ and this project somewhat adheres to [Semantic Versioning](https://semver.org/sp
|
||||||
The **"Breaking Changes"** listed below are changes that have been made in the decompilation projects (e.g. pokeemerald), which porymap requires in order to work properly. If porymap is used on a project that is not up-to-date with the breaking changes, then porymap will likely break or behave improperly.
|
The **"Breaking Changes"** listed below are changes that have been made in the decompilation projects (e.g. pokeemerald), which porymap requires in order to work properly. If porymap is used on a project that is not up-to-date with the breaking changes, then porymap will likely break or behave improperly.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
- None
|
||||||
|
|
||||||
|
## [1.2.1] - 2019-02-16
|
||||||
### Added
|
### Added
|
||||||
- Add ability to zoom in and out the map metatile selector via a slider at the bottom of the metatile selector window.
|
- Add ability to zoom in and out the map metatile selector via a slider at the bottom of the metatile selector window.
|
||||||
|
|
||||||
|
@ -75,6 +78,7 @@ The **"Breaking Changes"** listed below are changes that have been made in the d
|
||||||
This was the initial release.
|
This was the initial release.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/huderlem/porymap/compare/1.2.0...HEAD
|
[Unreleased]: https://github.com/huderlem/porymap/compare/1.2.0...HEAD
|
||||||
|
[1.2.1]: https://github.com/huderlem/porymap/compare/1.2.0...1.2.1
|
||||||
[1.2.0]: https://github.com/huderlem/porymap/compare/1.1.0...1.2.0
|
[1.2.0]: https://github.com/huderlem/porymap/compare/1.1.0...1.2.0
|
||||||
[1.1.0]: https://github.com/huderlem/porymap/compare/1.0.0...1.1.0
|
[1.1.0]: https://github.com/huderlem/porymap/compare/1.0.0...1.1.0
|
||||||
[1.0.0]: https://github.com/huderlem/porymap/tree/1.0.0
|
[1.0.0]: https://github.com/huderlem/porymap/tree/1.0.0
|
||||||
|
|
|
@ -598,7 +598,7 @@ void Project::saveMapConstantsHeader() {
|
||||||
}
|
}
|
||||||
|
|
||||||
text += QString("#define MAP_GROUPS_COUNT %1\n\n").arg(groupNum);
|
text += QString("#define MAP_GROUPS_COUNT %1\n\n").arg(groupNum);
|
||||||
text += QString("#endif // GUARD_CONSTANTS_MAP_GROUPS_H\n");
|
text += QString("#endif // GUARD_CONSTANTS_MAP_GROUPS_H\n");
|
||||||
saveTextFile(root + "/include/constants/map_groups.h", text);
|
saveTextFile(root + "/include/constants/map_groups.h", text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue