Implement changelog system

This commit is contained in:
Nick 2016-01-03 16:53:26 -08:00
parent 9c25ff38a6
commit f692b7d49b
2 changed files with 45 additions and 2 deletions

View file

@ -149,6 +149,29 @@ publishing {
}
}
String getChangelogText() {
def changelogFile = new File('changelog.txt')
String str = ''
String separator = '---'
int lineCount = 0
boolean done = false
changelogFile.eachLine {
if (done || it == null) {
return
}
if (lineCount < 3) {
lineCount++
if (it.startsWith(separator)) {return}
}
if (!it.startsWith(separator)) {
str += "$it" + (lineCount < 3 ? ':\n\n' : '\n')
return
}
done = true // once we go past the first version block, parse no more
}
return str
}
def curseRelations = {
optionalLibrary 'just-enough-items-jei'
optionalLibrary 'waila'
@ -156,11 +179,11 @@ def curseRelations = {
curseforge {
if (project.hasProperty('curse_key_WayofTime'))
apiKey = project.curse_key
apiKey = project.curse_key_WayofTime
project {
id = "${curse_id}"
changelog = project.hasProperty('changelog') ? project.changelog : ''
changelog = getChangelogText()
releaseType = 'beta'
addGameVersion '1.8.8'

20
changelog.txt Normal file
View file

@ -0,0 +1,20 @@
------------------------------------------------------
Version 2.0.0
------------------------------------------------------
Initial release of the open beta for the mod to Minecraft v1.8.9! This mod version has a lot of changes. Because it is a full-on rewrite, some of the mechanics of the mod have changed/are going to change. As such, the feel of the mod will be slightly different than previous iterations.
This mod has a large amount of compatibility with the recipe look-up mod, Just Enough Items (JEI). It is VERY much recommended that you download JEI, since it will make your life a lot easier with the new mechanics.
Because this is a beta of a rewrite, there will be a lot of missing content. I am trying my hardest to add new content as fast as I can, but my team and I are only human and can only code so fast. Please give a little patience while we make the mod the best it possibly can!
Also, please submit bug reports or feature requests to the github, https://github.com/WayofTime/BloodMagic. We'll get to the issue soon!
New
- Added "Alchemy Array" crafting - this is achieved by making some "Arcane Ash" and clicking on the ground to create an array. You then click on the array with the first ingredient and then the second - breaking the array will give the items back.
- Added JEI compatibility
- Added WAILA compatibility (No more needing 3rd-party addons!)
Changed
- Lots of internals have changed. Too many to list.
- A graphical overhaul of everything has been implemented. These textures were provided by CyanideX's Unity texture pack. BBoldt and Yulife (Inap) from the Unity team are our new permanent texture artists.
Bug Fixes
-