forked from Sk1erLLC/Patcher
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix some compile errors setup fake mod in fabric
- Loading branch information
Showing
29 changed files
with
319 additions
and
143 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
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,13 @@ | ||
@file:Suppress("UnstableApiUsage", "PropertyName") | ||
|
||
import dev.deftu.gradle.utils.GameSide | ||
|
||
plugins { | ||
java | ||
id("dev.deftu.gradle.tools") // Applies several configurations to things such as the Java version, project name/version, etc. | ||
id("dev.deftu.gradle.tools.minecraft.loom") // Applies the Loom plugin, which automagically configures Essential's Architectury Loom plugin for you. | ||
} | ||
|
||
toolkitLoomHelper { | ||
disableRunConfigs(GameSide.BOTH) | ||
} |
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,5 @@ | ||
# Configures the mod loader that we're developing for. | ||
loom.platform=fabric | ||
loom.loader.use=false | ||
# Configures the Minecraft version that we're developing for. | ||
minecraft.version=1.8.9 |
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,22 @@ | ||
@file:Suppress("PropertyName") | ||
|
||
pluginManagement { | ||
repositories { | ||
// Releases | ||
maven("https://maven.deftu.dev/releases") | ||
maven("https://maven.fabricmc.net") | ||
maven("https://maven.architectury.dev/") | ||
maven("https://maven.minecraftforge.net") | ||
maven("https://repo.essential.gg/repository/maven-public") | ||
maven("https://server.bbkr.space/artifactory/libs-release/") | ||
maven("https://jitpack.io/") | ||
|
||
// Snapshots | ||
maven("https://maven.deftu.dev/snapshots") | ||
mavenLocal() | ||
|
||
// Default | ||
gradlePluginPortal() | ||
mavenCentral() | ||
} | ||
} |
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,21 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "polypatcher", | ||
"name": "PolyPatcher", | ||
"version": "1", | ||
"description": "", | ||
"authors": [ | ||
"Polyfrost" | ||
], | ||
"contact": { | ||
"homepage": "https://polyfrost.org", | ||
"sources": "https://github.com/Polyfrost/OneConfig", | ||
"issues": "https://inv.wtf/polyfrost" | ||
}, | ||
"environment": "client", | ||
"custom": { | ||
"modmenu": { | ||
"parent": "patcher" | ||
} | ||
} | ||
} |
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,22 +1,17 @@ | ||
# Gradle Configuration -- DO NOT TOUCH THESE VALUES. | ||
org.gradle.daemon=true | ||
org.gradle.parallel=true | ||
org.gradle.configureoncommand=true | ||
org.gradle.parallel.threads=4 | ||
org.gradle.jvmargs=-Xmx2G | ||
|
||
# gradle.properties file -- CHANGE THE VALUES STARTING WITH `mod_*` AND REMOVE THIS COMMENT. | ||
|
||
# Sets the name of your mod. | ||
mod.name=Patcher | ||
# Sets the id of your mod that mod loaders use to recognize it. | ||
# Sets the ID of your mod that mod loaders use to recognize it. | ||
mod.id=patcher | ||
# Sets the version of your mod. | ||
# normal versions will be "1.x.x" | ||
# betas will be "1.x.x+beta-y" / "1.x.x+branch_beta-y" | ||
# rcs will be 1.x.x+rc-y | ||
# extra branches will be 1.x.x+branch-y | ||
# Sets the version of your mod. Make sure to update this when you make changes according to the SemVer specification. | ||
mod.version=1.10.1 | ||
# Sets the name of the jar file that you put in your 'mods' folder. | ||
mod.group=club.sk1er | ||
|
||
# Gradle Configuration -- DO NOT TOUCH THESE VALUES. | ||
polyfrost.defaults.loom=3 | ||
org.gradle.daemon=true | ||
org.gradle.parallel=true | ||
org.gradle.configureoncommand=true | ||
org.gradle.parallel.threads=4 | ||
org.gradle.jvmargs=-Xmx2G | ||
# Sets the Maven group ID of your mod. This is effectively unused but is good practice to set regardless. | ||
mod.group=club.sk1er |
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
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
Oops, something went wrong.