Skip to content

Commit

Permalink
Merge branch '1.20.1' into 1.20.2
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/1.20.2.yml
  • Loading branch information
rfresh2 committed Mar 5, 2024
2 parents 45d5fb5 + 5c0480b commit 012244a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/1.20.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,22 @@ jobs:
echo "XP_NEO=XaeroPlus-${{ env.XP_VERSION}}+neoforge-${{ env.MINECRAFT_VERSION }}-WM1.38.0-MM24.0.0" >> $GITHUB_ENV
- name: Upload Fabric Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.XP_FABRIC }}
path: fabric/build/libs/${{ env.XP_FABRIC }}.jar
if-no-files-found: error

- name: Upload Forge Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.XP_FORGE }}
path: forge/build/libs/${{ env.XP_FORGE }}.jar
if-no-files-found: error

- name: Upload NeoForge Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.XP_NEO }}
path: neo/build/libs/${{ env.XP_NEO }}.jar
if-no-files-found: error
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,20 +82,23 @@ jobs:
with:
name: ${{ env.XP_FABRIC }}
path: fabric/build/libs/${{ env.XP_FABRIC }}.jar
if-no-files-found: error

- name: Upload Forge Artifact
if: ${{ inputs.forge }}
uses: actions/upload-artifact@v4
with:
name: ${{ env.XP_FORGE }}
path: forge/build/libs/${{ env.XP_FORGE }}.jar
if-no-files-found: error

- name: Upload Neo Artifact
if: ${{ inputs.neo }}
uses: actions/upload-artifact@v4
with:
name: ${{ env.XP_NEO }}
path: neo/build/libs/${{ env.XP_NEO }}.jar
if-no-files-found: error

- name: Generate changelog
id: changelog
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ tasks {
// format is: 'fabricClassName::forgeClassName'
val remap = hashMapOf<String, String>()
remapFile.forEachLine { line ->
if (!line.contains("::")) return@forEachLine
if (line.startsWith("#") || !line.contains("::")) return@forEachLine
val parts = line.split("::")
remap[parts[0]] = parts[1]
println("Loaded Forge Remap: '${parts[0]}' to '${parts[1]}'")
Expand Down
2 changes: 0 additions & 2 deletions common/remap/remap.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
AXaeroMinimap::IXaeroMinimap
# forge needs certain mixins not remapped
remap = true) // $REMAP::remap=false)
# renamed field
XaeroMinimap.INSTANCE // $REMAP::XaeroMinimap.instance
# fabric minimap compatibility mixin plugin
"plugin": "xaeroplus.fabric.util.compat.XaeroPlusCompatibleMinimapMixinPlugin",::

0 comments on commit 012244a

Please sign in to comment.