Skip to content

Commit

Permalink
Version 1.9-1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hea3ven committed Jun 12, 2016
1 parent d0f7922 commit 82ae82c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
1.9-1.0.2:
* Change the Area enchantment to being able to only break blocks with the same hardness as the block being mined, fixes #2.

1.9-1.0.0:
* [enchantments] Add enchantment Area that makes tools dig multiple blocks at the same time.
* [food] Add Dulce de Leche item.
* [food] Add Vauquita item.
* [food] Add Dulce de Leche item.
* [food] Add Vauquita item.
* [redstone] Add Assembler block that can automatically craft recipes.
* [redstone] Add dispenser behaviour to plant seeds.
* [redstone] Add dispenser behaviour to feed animals for breeding.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project_group=com.hea3ven.dulcedeleche
project_name=DulceDeLeche
project_display_name=Dulce De Leche
project_version=1.0.0
project_version=1.0.2
project_class=com.hea3ven.dulcedeleche.ModDulceDeLeche
project_repo=hea3ven/DulceDeLeche
project_repo_branch=master
Expand Down
24 changes: 10 additions & 14 deletions media/update.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
{
"homepage": "https://github.com/hea3ven/DulceDeLeche",
"1.9": {
"1.9-1.0.0": " * [enchantments] Add enchantment Area that makes tools dig multiple blocks at the same time.\n * [food] Add Dulce de Leche item.\n * [food] Add Vauquita item.\n * [redstone] Add Assembler block that can automatically craft recipes.\n * [redstone] Add dispenser behaviour to plant seeds.\n * [redstone] Add dispenser behaviour to feed animals for breeding.",
"1.9-1.0.2": " * Change the Area enchantment to being able to only break blocks with the same hardness as the block being mined, fixes #2.",
"commit": "d0f79221e332d57ed74a8bd6d58cbc805cec1f71"
},
"promos": {
"1.9-latest": "1.9-1.0.0",
"1.9-recommended": "1.9-1.0.0",
"1.9.4-latest": "1.9-1.0.0",
"1.9.4-recommended": "1.9-1.0.0"
},
"1.9": {
"commit": "ce7379a",
"1.9-1.0.0": " * [enchantments] Add enchantment Area that makes tools dig multiple blocks at the same time.\n * [food] Add Dulce de Leche item.\n * [food] Add Vauquita item.\n * [redstone] Add Assembler block that can automatically craft recipes.\n * [redstone] Add dispenser behaviour to plant seeds.\n * [redstone] Add dispenser behaviour to feed animals for breeding."
},
"1.9.4": {
"1.9.4-1.0.0": " * [enchantments] Add enchantment Area that makes tools dig multiple blocks at the same time.\n * [food] Add Dulce de Leche item.\n * [food] Add Vauquita item.\n * [redstone] Add Assembler block that can automatically craft recipes.\n * [redstone] Add dispenser behaviour to plant seeds.\n * [redstone] Add dispenser behaviour to feed animals for breeding."
}
}
"1.9-latest": "1.9-1.0.2",
"1.9-recommended": "1.9-1.0.2"
},
"homepage": "https://github.com/hea3ven/DulceDeLeche"
}
5 changes: 3 additions & 2 deletions src/main/java/com/hea3ven/dulcedeleche/ModDulceDeLeche.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import net.minecraftforge.fml.common.event.FMLPreInitializationEvent

@Mod(modid = ModDulceDeLeche.MODID, version = ModDulceDeLeche.VERSION,
dependencies = ModDulceDeLeche.DEPENDENCIES,
guiFactory = "com.hea3ven.dulcedeleche.DulceDeLecheModGuiFactory")
guiFactory = "com.hea3ven.dulcedeleche.DulceDeLecheModGuiFactory",
updateJSON = "https://raw.githubusercontent.com/hea3ven/DulceDeLeche/version/media/update.json")
class ModDulceDeLeche {
@Mod.EventHandler
fun OnPreInit(event: FMLPreInitializationEvent?) {
Expand All @@ -27,7 +28,7 @@ class ModDulceDeLeche {

companion object {
const val MODID = "dulcedeleche"
const val VERSION = "1.9-1.0.0"
const val VERSION = "1.9-1.0.2"
const val DEPENDENCIES = "required-after:Forge@[12.16.1.1894,)"

const val guiIdAssembler = 0
Expand Down

0 comments on commit 82ae82c

Please sign in to comment.