Skip to content

Commit

Permalink
Merge branch 'beta' into feature/tentacles
Browse files Browse the repository at this point in the history
  • Loading branch information
j10a1n15 authored Sep 25, 2024
2 parents 160038b + 7c4c488 commit cec0708
Show file tree
Hide file tree
Showing 231 changed files with 5,126 additions and 1,997 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/illegal-imports.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

at/hannibal2/skyhanni/ scala.
at/hannibal2/skyhanni/ jline.
at/hannibal2/skyhanni/ io.github.moulberry.notenoughupdates.util.Constants
at/hannibal2/skyhanni/ io.github.moulberry.notenoughupdates.events.SlotClickEvent
at/hannibal2/skyhanni/ io.github.moulberry.notenoughupdates.events.ReplaceItemEvent
at/hannibal2/skyhanni/ io.github.moulberry.notenoughupdates.util.Constants
at/hannibal2/skyhanni/ io.github.moulberry.notenoughupdates.util.Utils
at/hannibal2/skyhanni/ java.util.function.Supplier
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
!.idea/icon.svg
!.idea/dictionaries/default_user.xml
!.idea/scopes/Mixins.xml
!.idea/liveTemplates/SkyHanni.xml
.vscode/
run/
build/
Expand Down
3 changes: 2 additions & 1 deletion .idea/dictionaries/default_user.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

101 changes: 101 additions & 0 deletions .idea/liveTemplates/SkyHanni.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 10 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ plugins {
kotlin("plugin.power-assert")
`maven-publish`
id("moe.nea.shot") version "1.0.0"
id("net.kyori.blossom")
}

val target = ProjectTarget.values().find { it.projectPath == project.path }!!
Expand Down Expand Up @@ -159,9 +160,9 @@ dependencies {
exclude(module = "unspecified")
isTransitive = false
}
// June 3, 2024, 9:30 PM AEST
// https://github.com/NotEnoughUpdates/NotEnoughUpdates/tree/2.3.0
devenvMod("com.github.NotEnoughUpdates:NotEnoughUpdates:2.3.0:all") {
// August 27, 2024, 4:30 PM AEST
// https://github.com/NotEnoughUpdates/NotEnoughUpdates/tree/2.3.3
devenvMod("com.github.NotEnoughUpdates:NotEnoughUpdates:2.3.3:all") {
exclude(module = "unspecified")
isTransitive = false
}
Expand Down Expand Up @@ -312,12 +313,18 @@ if (!MultiVersionStage.activeState.shouldCompile(target)) {
onlyIf { false }
}
}

preprocess {
vars.put("MC", target.minecraftVersion.versionNumber)
vars.put("FORGE", if (target.forgeDep != null) 1 else 0)
vars.put("JAVA", target.minecraftVersion.javaVersion)
patternAnnotation.set("at.hannibal2.skyhanni.utils.compat.Pattern")
}

blossom {
replaceToken("@MOD_VERSION@", version)
}

val sourcesJar by tasks.creating(Jar::class) {
destinationDirectory.set(layout.buildDirectory.dir("badjars"))
archiveClassifier.set("src")
Expand Down
Loading

0 comments on commit cec0708

Please sign in to comment.