Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Releases: erri120/rpgmpacker

Release 2.0.5

24 Feb 18:28
ce817e8
Compare
Choose a tag to compare

Fixed event 322 ("Change Actor Images"), the character image was parsed as a face image and vice versa (#49).

Release 2.0.4

31 Dec 14:14
1d160b8
Compare
Choose a tag to compare

Parameters for Plugins at the end will no longer be ignored.

Release 2.0.3

18 Nov 14:54
65af65d
Compare
Choose a tag to compare

Output folder will be created if missing.

Release 2.0.2

18 Nov 13:27
741ba24
Compare
Choose a tag to compare

Fixing build problems...

Release 2.0.1

18 Nov 13:21
e1a59ed
Compare
Choose a tag to compare

Fixing build problems...

Release 2.0.0

18 Nov 13:02
0088032
Compare
Choose a tag to compare

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

07 Apr 09:44
ffcb279
Compare
Choose a tag to compare

Added

  • Added --version argument for printing the program version (#40)

Release 1.6.1

05 Apr 15:00
c7a5bbe
Compare
Choose a tag to compare

Added

  • Change file nw to Game on Linux for MZ (#39)

Release 1.6.0

05 Apr 12:07
b26ce07
Compare
Choose a tag to compare

This release changed the structure of the project so it is easier to work with. I split the project into 3 sub-projects:

  1. A main executable project
  2. A lib project containing everything without the CLI
  3. 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

Fixed

  • Fixed multiple bugs that appeared during testing, most of them are just bugs that came from specific combinations.

Release 1.5.4

28 Feb 12:48
c78330d
Compare
Choose a tag to compare

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