Compare commits

...

8 Commits

Author SHA1 Message Date
Jason Penilla
44f8058b09 0.1.0-beta.2 2024-09-07 17:53:22 -07:00
Jason Penilla
d1f8e81913 Update gradle plugins and dependencies 2024-09-07 10:26:08 -07:00
Jason Penilla
dcef1320b2 Switch version back to 0.1.0-SNAPSHOT
We are still in the 0.1.0 beta cycle, bumping to 0.1.1-SNAPSHOT previously was an error
2024-09-07 10:25:17 -07:00
Jason Penilla
179b45cac5 Update lithium config overrides
`mixin.alloc.entity_tracker` does the same thing as useBetterIdentitySet, nothing more or less

closes #17
2024-09-07 10:06:10 -07:00
Jason Penilla
89e9cd52e4 fix(build): mark incompatibility with correct version of starlight 2024-09-03 12:04:19 -07:00
Jason Penilla
38c3f5fd80 0.1.1-SNAPSHOT 2024-09-03 11:58:01 -07:00
Jason Penilla
98e8a08e85 0.1.0-beta.1
this time maybe publishing will work
2024-09-03 11:50:08 -07:00
Jason Penilla
caf2960b6b fix(actions): populate release tag 2024-09-03 11:49:36 -07:00
6 changed files with 20 additions and 12 deletions

View File

@@ -35,7 +35,14 @@ jobs:
run: ./installConcurrentUtil.sh run: ./installConcurrentUtil.sh
- name: "execute gradle build" - name: "execute gradle build"
run: ./gradlew build run: ./gradlew build
- name: Publish (Pre-)Release to Modrinth - name: Determine Snapshot Status
run: |
if [ "$(./gradlew properties | awk '/^version:/ { print $2; }' | grep '\-SNAPSHOT')" ]; then
echo "STATUS=snapshot" >> $GITHUB_ENV
else
echo "STATUS=release" >> $GITHUB_ENV
fi
- name: Publish (Pre-)Release to Modrinth & CurseForge
if: "${{ env.STATUS == 'release' && github.event_name == 'release' }}" if: "${{ env.STATUS == 'release' && github.event_name == 'release' }}"
run: ./gradlew :moonrise-fabric:publishMods :moonrise-neoforge:publishMods run: ./gradlew :moonrise-fabric:publishMods :moonrise-neoforge:publishMods
env: env:

View File

@@ -1,7 +1,7 @@
plugins { plugins {
id("xyz.jpenilla.quiet-architectury-loom") id("xyz.jpenilla.quiet-architectury-loom")
id 'maven-publish' id 'maven-publish'
id 'io.github.goooler.shadow' id 'com.gradleup.shadow'
} }
configurations.create("libs") configurations.create("libs")

View File

@@ -64,7 +64,8 @@
"mixin.entity.collisions.intersection": false, "mixin.entity.collisions.intersection": false,
"mixin.entity.collisions.movement": false, "mixin.entity.collisions.movement": false,
"mixin.entity.collisions.unpushable_cramming": false, "mixin.entity.collisions.unpushable_cramming": false,
"mixin.chunk.entity_class_groups": false "mixin.chunk.entity_class_groups": false,
"mixin.alloc.entity_tracker": false
} }
} }
} }

View File

@@ -4,13 +4,13 @@ org.gradle.daemon=false
# Fabric Properties # Fabric Properties
# check these on https://modmuss50.me/fabric.html # check these on https://modmuss50.me/fabric.html
minecraft_version=1.21.1 minecraft_version=1.21.1
loader_version=0.15.11 loader_version=0.16.5
neoforge_version=21.1.20 neoforge_version=21.1.42
snakeyaml_version=2.2 snakeyaml_version=2.2
concurrentutil_version=0.0.2-SNAPSHOT concurrentutil_version=0.0.2-SNAPSHOT
cloth_version=15.0.128 cloth_version=15.0.128
lithium_version=mc1.21.1-0.13.0 lithium_version=mc1.21.1-0.13.0
# Mod Properties # Mod Properties
mod_version=0.1.0-beta.0 mod_version=0.1.0-beta.2
maven_group=ca.spottedleaf.moonrise maven_group=ca.spottedleaf.moonrise
archives_base_name=moonrise archives_base_name=moonrise

View File

@@ -3,7 +3,7 @@ import net.fabricmc.loom.util.aw2at.Aw2At
plugins { plugins {
id("xyz.jpenilla.quiet-architectury-loom") id("xyz.jpenilla.quiet-architectury-loom")
id 'maven-publish' id 'maven-publish'
id 'io.github.goooler.shadow' id 'com.gradleup.shadow'
} }
repositories { repositories {
@@ -53,7 +53,7 @@ publishMods {
modrinth { modrinth {
incompatible( incompatible(
"notenoughcrashes", "notenoughcrashes",
"starlight-forge", "starlight-neoforge",
"canary", "canary",
"radium" "radium"
) )
@@ -61,7 +61,7 @@ publishMods {
curseforge { curseforge {
incompatible( incompatible(
"not-enough-crashes-forge", "not-enough-crashes-forge",
"starlight-forge", "starlight-neoforge",
"canary", "canary",
"radium-reforged" "radium-reforged"
) )

View File

@@ -24,8 +24,8 @@ pluginManagement {
plugins { plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0" id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
id("xyz.jpenilla.quiet-architectury-loom") version "1.7.294" apply false id("xyz.jpenilla.quiet-architectury-loom") version "1.7.295" apply false
id 'io.github.goooler.shadow' version '8.1.8' apply false id 'com.gradleup.shadow' version '8.3.0' apply false
} }
dependencyResolutionManagement { dependencyResolutionManagement {
@@ -37,7 +37,7 @@ dependencyResolutionManagement {
} }
versionCatalogs { versionCatalogs {
create("fabricApiLibs") { create("fabricApiLibs") {
from("net.fabricmc.fabric-api:fabric-api-catalog:0.102.0+1.21.1") from("net.fabricmc.fabric-api:fabric-api-catalog:0.103.0+1.21.1")
} }
} }
} }