Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
harryyoud committed Apr 30, 2020
1 parent 5903436 commit 8441275
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Biospheres Mod for Minecraft
World generation mod that generates spheres, each containing a different biome, connected by bridges.

## World generation process

The important thing to realise about this is that everything is done threaded, so you cannot rely on other chunks being at any stage in the process, which is why the bridge joins are calculated from noise values and not topBlockY.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '0.1.0'
version = '1.0.0'
group = 'uk.co.harryyoud.biospheres' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'biospheres'

Expand Down
8 changes: 3 additions & 5 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
modLoader="javafml"
loaderVersion="[31,)"
#issueTrackerURL="http://my.issue.tracker/"
issueTrackerURL="https://github.com/harryyoud/biospheres/issues"

[[mods]]
modId="biospheres"
Expand All @@ -10,14 +10,12 @@ loaderVersion="[31,)"
authors="Harry Youd (harryyoud)"
displayURL="https://github.com/harryyoud/biospheres"
description='Biospheres mod for Minecraft, adding a new world type with large spheres, each containing a different biome.'

# A URL to query for updates for this mod. See the JSON update specification <here>
#updateJSONURL="http://myurl.me/" #optional
updateJSONURL="https://raw.githubusercontent.com/harryyoud/biospheres/master/updates.json"

# A file name (in the root of the mod JAR) containing a logo for display
#logoFile="examplemod.png" #optional

[[dependencies.biospheres]] #optional
[[dependencies.biospheres]]
modId="forge"
mandatory=true
versionRange="[31,)"
Expand Down
10 changes: 10 additions & 0 deletions updates.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"homepage": "https://github.com/harryyoud/biospheres",
"1.15.2": {
"1.0.0": "Initial release"
},
"promos": {
"1.15.2-latest": "1.0.0",
"1.15.2-recommended": "1.0.0"
}
}

0 comments on commit 8441275

Please sign in to comment.