-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'refs/remotes/origin/1.10.2-dev' into 1.…
…10.2-master
- Loading branch information
Showing
13 changed files
with
148 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
* text=auto | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,24 @@ | ||
# eclipse | ||
bin | ||
*.launch | ||
.settings | ||
.metadata | ||
.classpath | ||
.project | ||
bin | ||
eclipse | ||
|
||
# idea | ||
out | ||
*.ipr | ||
*.iws | ||
*.iml | ||
.idea | ||
out | ||
|
||
# gradle | ||
build | ||
.gradle | ||
|
||
# other | ||
eclipse | ||
run | ||
|
||
README.txt | ||
Paulscode IBXM Library License.txt | ||
Paulscode SoundSystem CodecIBXM License.txt | ||
MinecraftForge-Credits.txt | ||
MinecraftForge-License.txt | ||
LICENSE-fml.txt | ||
gradlew-setupDecompWorkspace.bat | ||
gradlew-setupDecompWorkspace-refresh-deps.bat | ||
gradlew-jar.bat | ||
forge-1.9-12.16.0.1811-1.9-changelog.txt | ||
gradlew-build.bat | ||
gradlew-cleanCache.bat | ||
gradlew-clean.bat | ||
gradlew-eclipse.bat | ||
CREDITS-fml.txt | ||
libs/*.jar | ||
gradlew-*.bat | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# TODO: should maybe find a way to update mod_version automatically in the future (perhaps from git), but not neccessary. | ||
# mod_author has to be in ""'s (and comma-separated, ie: "","",""), because array[] | ||
mod_id=lonelybiome | ||
mod_name=Lonely Biome | ||
mod_desc=Minecraft mod that allows you generate single-biome worlds. | ||
mod_version=1.0 | ||
mc_version=1.10.2 | ||
mod_url=https://github.com/Team-RTG/Lonely-Biome | ||
mod_author="Team RTG" | ||
mod_creds=Halloween graphic by Freepik | ||
mod_logo=assets/lonelybiome/logo.png | ||
mcf_version=12.18.2.2099 | ||
mcf_minver=12.18.1.2011 | ||
mcf_maxver= | ||
# mcf_suffix is the branch suffix (without '-') on the Forge version when it's not the default branch in the Forge repo | ||
# This may be the same as mc_version, eg Non-default: 1.9.4-12.18.2.2099-1.9.4, Default: 1.9.4-12.18.2.2099 | ||
mcf_suffix= | ||
mcp_mappings=snapshot_nodoc_20161027 | ||
run_dir=run | ||
package_base=org.teamrtg |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Mon Sep 14 12:28:28 PDT 2015 | ||
#Tue Aug 02 11:01:29 EDT 2016 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-bin.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# mod_deps should be 'after:<mod identifier>' (unquoted, semicolon-separated, \escaped for newline, see example below) | ||
depstring=after:RTG@[4.1.1.2,) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
include 'version' | ||
rootProject.name = 'Lonely Biome' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
package teamrtg.lonelybiome.reference; | ||
|
||
|
||
public class ModInfo | ||
{ | ||
public static final String MOD_ID = "lonelybiome"; | ||
public static final String MOD_NAME = "Lonely Biome"; | ||
public static final String MOD_VERSION = "@VERSION@"; | ||
|
||
public static final String PROXY_COMMON = "teamrtg.lonelybiome.proxy.CommonProxy"; | ||
public static final String PROXY_CLIENT = "teamrtg.lonelybiome.proxy.ClientProxy"; | ||
public static final String MOD_VERSION = "@MOD_VERSION@"; | ||
public static final String MCF_MINVER = "0.0-MCF+MINVER"; | ||
public static final String MCF_MAXVER = "9001.0-MCF+MAXVER"; | ||
public static final String MOD_DEPS = ";after:MODDEPS"; | ||
public static final String CONFIG_DIRECTORY = MOD_ID; | ||
public static final String PROXY_COMMON = "teamrtg.lonelybiome.proxy.CommonProxy"; | ||
public static final String PROXY_CLIENT = "teamrtg.lonelybiome.proxy.ClientProxy"; | ||
} |
Oops, something went wrong.