Skip to content

Commit

Permalink
Merge pull request #12 from matty45/1.20.x
Browse files Browse the repository at this point in the history
Update to 1.20.1
  • Loading branch information
necessary129 authored Aug 4, 2023
2 parents bc91fd4 + b3eb81c commit 0f63d87
Show file tree
Hide file tree
Showing 7 changed files with 75 additions and 7 deletions.
27 changes: 27 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Minecraft Client",
"request": "launch",
"cwd": "${workspaceFolder}/run",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "net.fabricmc.devlaunchinjector.Main",
"vmArgs": "-Dfabric.dli.config\u003dD:\\Documents\\Repos\\minecraft-autotorch\\.gradle\\loom-cache\\launch.cfg -Dfabric.dli.env\u003dclient -Dfabric.dli.main\u003dnet.fabricmc.loader.impl.launch.knot.KnotClient",
"args": ""
},
{
"type": "java",
"name": "Minecraft Server",
"request": "launch",
"cwd": "${workspaceFolder}/run",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "net.fabricmc.devlaunchinjector.Main",
"vmArgs": "-Dfabric.dli.config\u003dD:\\Documents\\Repos\\minecraft-autotorch\\.gradle\\loom-cache\\launch.cfg -Dfabric.dli.env\u003dserver -Dfabric.dli.main\u003dnet.fabricmc.loader.impl.launch.knot.KnotServer",
"args": "nogui"
}
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"java.configuration.updateBuildConfiguration": "automatic",
"java.compile.nullAnalysis.mode": "automatic"
}
Binary file added bin/main/assets/autotorch/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions bin/main/assets/autotorch/lang/en_us.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"text.autoconfig.autotorch.title": "Auto Torch",
"text.autoconfig.autotorch.option.enabled": "Enable Auto Torch",
"text.autoconfig.autotorch.option.lightLevel": "Minimum Light Level",
"text.autoconfig.autotorch.option.accuratePlacement": "Enable Accurate Torch Placement"
}
31 changes: 31 additions & 0 deletions bin/main/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"schemaVersion": 1,
"id": "autotorch",
"version": "${version}",
"name": "Autotorch",
"description": "Autoplace torches",
"authors": [
"noteness"
],
"contact": {
"homepage": "https://github.com/necessary129/minecraft-autotorch",
"issues": "https://github.com/necessary129/minecraft-autotorch/issues",
"sources": "https://github.com/necessary129/minecraft-autotorch"
},
"license": "LGPL-3.0-or-later",
"icon": "assets/autotorch/icon.png",
"environment": "client",
"entrypoints": {
"client": [
"autotorch.autotorch.client.AutotorchClient"
],
"modmenu": [
"autotorch.autotorch.client.ModMenuIntegration"
]
},
"depends": {
"fabricloader": ">=0.11.1",
"minecraft": ">=1.17",
"fabric": ">=0.30.0"
}
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}
repositories {
maven { url 'https://maven.shedaniel.me/' }
maven { url 'https://maven.terraformersmc.com/releases/'}
maven { url 'https://maven.terraformersmc.com/releases'}
maven { url = "https://jitpack.io" }
}

Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html

minecraft_version=1.19.4
yarn_mappings=1.19.4+build.1
loader_version=0.14.19
minecraft_version=1.20.1
yarn_mappings=1.20.1+build.9
loader_version=0.14.21

#Fabric api
fabric_version=0.77.0+1.19.4
fabric_version=0.86.0+1.20.1

# Mod Properties
mod_version=1.2.3
maven_group=autotorch
archives_base_name=autotorch
#Cloth config
cloth_version=10.0.96
modmenu_version=6.1.0-rc.4
cloth_version=11.1.106
modmenu_version=7.2.1

0 comments on commit 0f63d87

Please sign in to comment.