Release 5.4.0
This commit is contained in:
parent
3eed13a162
commit
012f2a213a
3 changed files with 24 additions and 4 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. It also includes changes to the scripting API that may change the behavior of existing porymap scripts. If porymap is used with a project or API script 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. It also includes changes to the scripting API that may change the behavior of existing porymap scripts. If porymap is used with a project or API script that is not up-to-date with the breaking changes, then porymap will likely break or behave improperly.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
Nothing, yet.
|
||||||
|
|
||||||
|
## [5.4.0] - 2024-02-13
|
||||||
### Added
|
### Added
|
||||||
- Add a `Check for Updates` option to show new releases (Windows and macOS only).
|
- Add a `Check for Updates` option to show new releases (Windows and macOS only).
|
||||||
|
|
||||||
|
@ -477,7 +480,8 @@ The **"Breaking Changes"** listed below are changes that have been made in the d
|
||||||
## [1.0.0] - 2018-10-26
|
## [1.0.0] - 2018-10-26
|
||||||
This was the initial release.
|
This was the initial release.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/huderlem/porymap/compare/5.3.0...HEAD
|
[Unreleased]: https://github.com/huderlem/porymap/compare/5.4.0...HEAD
|
||||||
|
[5.4.0]: https://github.com/huderlem/porymap/compare/5.3.0...5.4.0
|
||||||
[5.3.0]: https://github.com/huderlem/porymap/compare/5.2.0...5.3.0
|
[5.3.0]: https://github.com/huderlem/porymap/compare/5.2.0...5.3.0
|
||||||
[5.2.0]: https://github.com/huderlem/porymap/compare/5.1.1...5.2.0
|
[5.2.0]: https://github.com/huderlem/porymap/compare/5.1.1...5.2.0
|
||||||
[5.1.1]: https://github.com/huderlem/porymap/compare/5.1.0...5.1.1
|
[5.1.1]: https://github.com/huderlem/porymap/compare/5.1.0...5.1.1
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Version: 5.3.0
|
Version: 5.4.0
|
||||||
Date: January 15th, 2024
|
Date: February 13th, 2024
|
||||||
|
|
||||||
This version of porymap works with pokeruby and pokeemerald as of the following commit hashes:
|
This version of porymap works with pokeruby and pokeemerald as of the following commit hashes:
|
||||||
* pokeemerald: c76beed98990a57c84d3930190fd194abfedf7e8
|
* pokeemerald: c76beed98990a57c84d3930190fd194abfedf7e8
|
||||||
|
@ -12,6 +12,22 @@ Please report any issues on GitHub: [https://github.com/huderlem/porymap/issues]
|
||||||
|
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
|
## [5.4.0] - 2024-02-13
|
||||||
|
### Added
|
||||||
|
- Add a `Check for Updates` option to show new releases (Windows and macOS only).
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- If Wild Encounters fail to load they are now only disabled for that session, and the settings remain unchanged.
|
||||||
|
- Defaults are used if project constants are missing, rather than failing to open the project or changing settings.
|
||||||
|
- Selector images now center on the selection when eyedropping or zooming.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fix some minor visual issues with the various zoom sliders.
|
||||||
|
- Smooth out scrolling when mouse is over tile/metatile images.
|
||||||
|
- Fix the Tileset Editor selectors getting extra white space when changing tilesets.
|
||||||
|
- Fix a crash when adding disabled events with the Pencil tool.
|
||||||
|
- Fix error log about failing to find the scripts file when a new map is created.
|
||||||
|
|
||||||
## [5.3.0] - 2024-01-15
|
## [5.3.0] - 2024-01-15
|
||||||
### Added
|
### Added
|
||||||
- Add zoom sliders to the Tileset Editor.
|
- Add zoom sliders to the Tileset Editor.
|
||||||
|
|
|
@ -14,7 +14,7 @@ RC_ICONS = resources/icons/porymap-icon-2.ico
|
||||||
ICON = resources/icons/porymap.icns
|
ICON = resources/icons/porymap.icns
|
||||||
QMAKE_CXXFLAGS += -std=c++17 -Wall
|
QMAKE_CXXFLAGS += -std=c++17 -Wall
|
||||||
QMAKE_TARGET_BUNDLE_PREFIX = com.pret
|
QMAKE_TARGET_BUNDLE_PREFIX = com.pret
|
||||||
VERSION = 5.3.0
|
VERSION = 5.4.0
|
||||||
DEFINES += PORYMAP_VERSION=\\\"$$VERSION\\\"
|
DEFINES += PORYMAP_VERSION=\\\"$$VERSION\\\"
|
||||||
|
|
||||||
SOURCES += src/core/block.cpp \
|
SOURCES += src/core/block.cpp \
|
||||||
|
|
Loading…
Reference in a new issue