TechnicSolder icon indicating copy to clipboard operation
TechnicSolder copied to clipboard

Suggestion: Generate a changelog between 2 build versions

Open Razorskills opened this issue 10 years ago • 1 comments

This suggestion is another helpful tool idea for modpack devs, Many times I forget what mods I changed in certain builds and thought I would suggest a way to compare 2 modpack builds to each other, if it found the same mod and version in both builds, it would ignore that mod, and i it found a new mod it could note this new mods info and continue on down the list.

It might be cool to have it send info to the technic platform in the future, or even just dump a text file somewhere that could be either copied and posted or help quickly distinguish the difference between the previous build or maybe even the first build.

Even for making your guys official change logs this might be a useful tool/idea

Razorskills avatar May 19 '14 04:05 Razorskills

I just run queries on the solder database from another connector.

select name,version from build_modversion a,modversions,mods where modversion_id not in (select modversion_id from build_modversion b where build_id=a.build_id-1) and build_id=(select max(build_id) from build_modversion) and modversion_id=modversions.id and mods.id=mod_id;

There I did half the work for you :D. should be super easy to add this query into a view.

rfox90 avatar Jun 07 '14 02:06 rfox90