Skip to content

Commit

Permalink
Prepare for a beta
Browse files Browse the repository at this point in the history
Zoom scrolling will require a mixin so it will be harder to add.
But since the most important part has been rewritten, I made a beta.
  • Loading branch information
Past Ennui committed Jan 13, 2020
1 parent bcb3673 commit 2aab78a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
14 changes: 8 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,16 @@ dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"

modCompile "net.fabricmc:fabric-loader:${project.loader_version}"
modCompile "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modCompile "io.github.prospector:modmenu:${project.mod_menu_version}"
modCompile "me.shedaniel.cloth:config-2:${project.cloth_config_version}"
modCompile "me.sargunvohra.mcmods:autoconfig1u:${project.auto_config_version}"

modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation "io.github.prospector:modmenu:${project.mod_menu_version}"
modImplementation "me.shedaniel.cloth:config-2:${project.cloth_config_version}"
modImplementation "me.sargunvohra.mcmods:autoconfig1u:${project.auto_config_version}"
include "me.shedaniel.cloth:config-2:${project.cloth_config_version}"
include "me.sargunvohra.mcmods:autoconfig1u:${project.auto_config_version}"

compileOnly "com.google.code.findbugs:jsr305:3.0.2"
}

processResources {
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on http://modmuss50.me/fabric.html
minecraft_version=1.15.1
yarn_mappings=1.15.1+build.24
yarn_mappings=1.15.1+build.37
loader_version=0.7.3+build.176

# Mod Properties
mod_version = 2.1.0
mod_version = 2.1.0-beta.1
maven_group = io.github.joaoh1
archives_base_name = okzoomer

# Dependencies
fabric_version=0.4.27+build.286-1.15
mod_menu_version=1.8.2+build.18
cloth_config_version=2.6.5
mod_menu_version=1.8.3+build.19
cloth_config_version=2.6.6
auto_config_version=1.2.4
4 changes: 2 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
],
"depends": {
"autoconfig1u": ">=1.2.4",
"cloth-config2": ">=2.6.5",
"cloth-config2": ">=2.6.6",
"fabricloader": ">=0.7.0",
"fabric": ">=0.4.0",
"minecraft": ">=1.15.0"
},
"suggests": {
"recommends": {
"modmenu": ">=1.8.0"
},
"custom": {
Expand Down

0 comments on commit 2aab78a

Please sign in to comment.