diff --git a/src/client/site/news_page/news_page.jade b/src/client/site/news_page/news_page.jade index 34f908667..0276d17b6 100644 --- a/src/client/site/news_page/news_page.jade +++ b/src/client/site/news_page/news_page.jade @@ -11,6 +11,25 @@ .right include ../common/twitter/twitter.jade + section + h3 2016-08-21 + .panel + p. + I've been taking a break from the site for a while now to work on a couple of other projects. + However, I recently found out that MineTweaker has a few + commands which can dump various kind of data from the game, including RECIPES. This is a + really big deal since, up until now, entering recipes has always been a laborious, manual process. + However, I've just finished the first version of a script which can transform MineTweaker's output + into a Crafting Guide data file. + p. + As a test-drive, I picked a mod near the top of the list, Draconic Evolution, and I + got a fully functional data file build in a tiny fraction of the time it would have taken the manual + way. Even better, if a new version comes out, I can easily re-run the script to update it again. + p. + If you've been thinking you'd like to help out with Crafting Guide, but have found the process too + laborious, you might want to give it another look! + section h3 2016-06-01 .panel diff --git a/src/common/constants.coffee b/src/common/constants.coffee index c604fe98b..26fdf7020 100644 --- a/src/common/constants.coffee +++ b/src/common/constants.coffee @@ -38,6 +38,7 @@ defaultMods.applied_energistics_2 = { defaultVersion: 'rv1-stable-1' } defaultMods.big_reactors = { defaultVersion: '0.4.2A2' } defaultMods.buildcraft = { defaultVersion: '6.4.6' } defaultMods.computercraft = { defaultVersion: '1.74' } +defaultMods.draconic_evolution = { defaultVersion: '1.0.2h' } defaultMods.ender_storage = { defaultVersion: '1.4.5.29' } defaultMods.enderio = { defaultVersion: '2.2.7.325' } defaultMods.extra_cells = { defaultVersion: '2.2.73b129' }