Skip to content

Commit bf34e06

Browse files
committed
Remotely 2.0.0a-Exclusive Release.
1 parent 444820d commit bf34e06

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

RemotelyMod/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ mod.name=Remotely
44
# Your mod's ID, which is used in the mod's metadata and for identifying the mod in the game. Must be unique from other mods.
55
mod.id=remotely
66
# The version of your mod, which is used in the mod's metadata and for version checks.
7-
mod.version=2.0.0
7+
mod.version=2.0.0a
88
# The Maven group ID for your mod, which is used in the mod's metadata and for dependency management.
99
mod.group=redxax.oxy.remotely
1010
######################

RemotelyMod/src/main/resources/META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license="Custom License"
77
modId="${mod_id}"
88
version="${mod_version}"
99
displayName="${mod_name}"
10-
authors="RedxAx, DumpFridge"
10+
authors="RedxAx, DumbFridge"
1111
description="${mod_description}"
1212
logoFile="assets/remotely/Reemotely.png"
1313

RemotelyMod/src/main/resources/META-INF/neoforge.mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ config = "mixins.${mod_id}.json"
1010
modId="${mod_id}"
1111
version="${mod_version}"
1212
displayName="${mod_name}"
13-
authors="RedxAx, DumpFridge"
13+
authors="RedxAx, DumbFridge"
1414
description="${mod_description}"
1515
logoFile="assets/remotely/Reemotely.png"
1616

RemotelyMod/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"description": "${mod_description}",
77
"authors": [
88
"RedxAx",
9-
"DumpFridge"
9+
"DumbFridge"
1010
],
1111
"contact": {
1212
"issues": "https://github.com/RedxAx/Remotely/issues",

build.gradle.kts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ plugins {
22
id("java-library")
33
id("application")
44
id("org.openjfx.javafxplugin") version "0.1.0"
5+
id("com.github.johnrengelman.shadow") version "8.1.1"
56
}
67

78
group = "redxax.oxy"
@@ -46,6 +47,11 @@ dependencies {
4647
runtimeOnly("org.lwjgl:lwjgl-stb::natives-windows")
4748
runtimeOnly("org.lwjgl:lwjgl-glfw::natives-windows")
4849

50+
runtimeOnly("org.lwjgl:lwjgl::natives-linux")
51+
runtimeOnly("org.lwjgl:lwjgl-opengl::natives-linux")
52+
runtimeOnly("org.lwjgl:lwjgl-stb::natives-linux")
53+
runtimeOnly("org.lwjgl:lwjgl-glfw::natives-linux")
54+
4955
val javafxVersion = "21.0.3"
5056
implementation("org.openjfx:javafx-graphics:${javafxVersion}")
5157
runtimeOnly("org.openjfx:javafx-graphics:${javafxVersion}:win")
@@ -134,3 +140,10 @@ tasks.register<Exec>("createInstaller") {
134140
"--java-options", "-Dfile.encoding=UTF-8 -Xmx4G"
135141
)
136142
}
143+
144+
tasks.shadowJar {
145+
archiveFileName.set("Remotely-Fat.jar")
146+
manifest {
147+
attributes["Main-Class"] = "redxax.oxy.remotely.RemotelyInit"
148+
}
149+
}

0 commit comments

Comments
 (0)