Releases: erri120/rpgmpacker
Release 2.0.5
Fixed event 322 ("Change Actor Images"), the character image was parsed as a face image and vice versa (#49).
Release 2.0.4
Parameters for Plugins at the end will no longer be ignored.
Release 2.0.3
Output folder will be created if missing.
Release 2.0.2
Fixing build problems...
Release 2.0.1
Fixing build problems...
Release 2.0.0
This release features a complete rework of the tool. I decided to move away from C++ and remade the entire thing in TypeScript. You can read more about this decision here. This rework carries over all features from the previous version and adds more features on top:
- Plugins can now be parsed for the exclude-unused feature
- Paths are handled better and multiple filter-related issues have been fixed with it
- the Side-View and Front-View setting is now used when excluding unused assets
Here is a list of arguments that got removed, changed or added:
--config
: removed--input
: removed-i
--output
: removed-o
--platforms
: removed-p
, possible values also changed to"Windows", "OSX", "Linux", "Browser", "Mobile"
--cache
: removed--threads
: removed--noempty
: added, this will remove all empty folders from the final output
All of the short-hand arguments (single character) have been removed. The names of the platforms have also changed and you need to put the platform argument at the end of your command.
Please open an issue if you have any problems going from 1.x to 2.0.0.
Release 1.6.2
Added
- Added
--version
argument for printing the program version (#40)
Release 1.6.1
Added
- Change file
nw
toGame
on Linux for MZ (#39)
Release 1.6.0
This release changed the structure of the project so it is easier to work with. I split the project into 3 sub-projects:
- A main executable project
- A lib project containing everything without the CLI
- A test project that uses the functions in the lib project
This change does not change anything for the end-consumer of the tool but is a huge change on the development side of things so I wanted to include it in the changelog.
Added
- Added Linux support for MZ. This requires manual configuration, see the README for more information.
Changed
- Updated CPM from 0.31.1 to 0.32.0 (#36)
- Updated toml11 from 3.6.0 to 3.6.1 (#37)
- Updated spdlog 1.8.2 to 1.8.5 (#35)
- Updated ghc::filesystem 1.5.2 to 1.5.4 (#34)
Fixed
- Fixed multiple bugs that appeared during testing, most of them are just bugs that came from specific combinations.
Release 1.5.4
Fixed
- Fixed file exclusion for MV.
- Fixed line break problem when updating System.json. The tool will now find the last bracket instead of assuming its position.
- Fixed System.json not being updated due to string comparison failing.
Changed
- Tool will now exit when output folder can not be cleaned.
- Updated
ghc::filesystem
to 1.5.2 (#26)