Compare commits
20 commits
Author | SHA1 | Date | |
---|---|---|---|
52c42237ab | |||
5450141163 | |||
f93bfbcaa2 | |||
6197c51548 | |||
f53327d6ed | |||
7381346e17 | |||
999fd0f929 | |||
c696c03d98 | |||
d60b066b77 | |||
647f9102ef | |||
6f3bb546ef | |||
a4c847de3f | |||
7b5c875d11 | |||
9af27ae243 | |||
e9383e9fcd | |||
8291e0d0ff | |||
c4d8bd5f8c | |||
81e24b90c4 | |||
53009ecb84 | |||
b4d510df2b |
34 changed files with 615 additions and 22 deletions
55
.forgejo/workflows/autotagger.yaml
Normal file
55
.forgejo/workflows/autotagger.yaml
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
name: Autotagger
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Autotagger:
|
||||||
|
runs-on: docker
|
||||||
|
container: catthehacker/ubuntu:act-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Set up Git
|
||||||
|
run: |
|
||||||
|
git config --global user.name "SeaswimmerTheFsh"
|
||||||
|
git config --global user.email "seaswimmerthefsh@gmail.com"
|
||||||
|
|
||||||
|
- name: Extract commit message
|
||||||
|
id: extract_commit_message
|
||||||
|
run: echo "::set-output name=message::$(git log --format=%B -n 1 $GITHUB_SHA)"
|
||||||
|
|
||||||
|
- name: Check commit message
|
||||||
|
id: check_commit_message
|
||||||
|
run: |
|
||||||
|
COMMIT_MESSAGE=$(echo "${{ steps.extract_commit_message.outputs.message }}")
|
||||||
|
OUTPUT=$(python .forgejo/workflows/scripts/message.py "$COMMIT_MESSAGE")
|
||||||
|
if [ "$OUTPUT" = "Usage: python message.py <commit_message>" ]; then
|
||||||
|
echo "Called without commit message!"
|
||||||
|
exit 1
|
||||||
|
elif [ "$OUTPUT" = "None" ]; then
|
||||||
|
echo "No version bump."
|
||||||
|
echo "::set-output name=latest_tag::$(git describe --tags --abbrev=0)"
|
||||||
|
else
|
||||||
|
echo "Version bump detected: $OUTPUT"
|
||||||
|
echo "::set-output name=version::$OUTPUT"
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Create tag
|
||||||
|
if: steps.check_commit_message.outputs.version
|
||||||
|
run: |
|
||||||
|
VERSION=${{ steps.check_commit_message.outputs.version }}
|
||||||
|
git tag -a $VERSION -m "version bumped to $VERSION"
|
||||||
|
git push origin $VERSION
|
||||||
|
|
||||||
|
- name: Update latest tag
|
||||||
|
if: steps.check_commit_message.outputs.latest_tag
|
||||||
|
run: |
|
||||||
|
COMMIT_MESSAGE=$(echo "${{ steps.extract_commit_message.outputs.message }}")
|
||||||
|
LATEST_TAG=${{ steps.check_commit_message.outputs.latest_tag }}
|
||||||
|
git tag -fa $LATEST_TAG -m "$COMMIT_MESSAGE"
|
||||||
|
git push origin $LATEST_TAG --force
|
37
.forgejo/workflows/build.yaml
Normal file
37
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
name: Build
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Export Files:
|
||||||
|
runs-on: docker
|
||||||
|
container: catthehacker/ubuntu:act-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Copy export files
|
||||||
|
run: |
|
||||||
|
mkdir -vp /export/atlauncher/.minecraft
|
||||||
|
cp -vrT ./build/atlauncher /export/atlauncher
|
||||||
|
cp -vp ./unsup.ini /export/atlauncher/.minecraft/
|
||||||
|
|
||||||
|
mkdir -vp /export/prism/.minecraft
|
||||||
|
cp -vrT ./build/prism /export/prism
|
||||||
|
cp -v ./unsup.ini /export/prism/.minecraft/
|
||||||
|
|
||||||
|
- name: Upload ATLauncher export artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: ATLauncher
|
||||||
|
path: /export/atlauncher/
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Upload Prism Launcher export artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: PrismLauncher
|
||||||
|
path: /export/prism/
|
20
.forgejo/workflows/scripts/message.py
Normal file
20
.forgejo/workflows/scripts/message.py
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
|
pattern = r"^(?:V|v)ersion\ bump(?:ed)?\ to\ ([0-9]+\.[0-9]+\.[0-9]+(?:-[a-zA-Z0-9]+)?).*"
|
||||||
|
|
||||||
|
def get_commit_message(string) -> Optional[str]:
|
||||||
|
m = re.match(pattern, string)
|
||||||
|
if m:
|
||||||
|
return m.group(1)
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
if len(sys.argv) >= 2:
|
||||||
|
commit_message = sys.argv[1]
|
||||||
|
result = get_commit_message(commit_message)
|
||||||
|
print(result)
|
||||||
|
else:
|
||||||
|
print("Usage: python message.py <commit_message>")
|
BIN
build/atlauncher/.minecraft/unsup.jar
(Stored with Git LFS)
Normal file
BIN
build/atlauncher/.minecraft/unsup.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
38
build/atlauncher/instance.cfg
Normal file
38
build/atlauncher/instance.cfg
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
#Exported by ATLauncher
|
||||||
|
#Wed Nov 15 21:18:55 GMT 2023
|
||||||
|
notes=
|
||||||
|
LogPrePostOutput=true
|
||||||
|
WrapperCommand=null
|
||||||
|
LWJGLVersion=
|
||||||
|
ShowConsoleOnError=true
|
||||||
|
OverrideMCLaunchMethod=false
|
||||||
|
iconKey=default
|
||||||
|
MaxMemAlloc=4096
|
||||||
|
OverrideNativeWorkarounds=false
|
||||||
|
PostExitCommand=null
|
||||||
|
MCLaunchMethod=LauncherPart
|
||||||
|
UseNativeGLFW=false
|
||||||
|
MinecraftWinHeight=480
|
||||||
|
JVMArgs=-javaagent\:unsup.jar -XX\:+UnlockExperimentalVMOptions -XX\:+UseG1GC -XX\:G1NewSizePercent\=20 -XX\:G1ReservePercent\=20 -XX\:MaxGCPauseMillis\=50 -XX\:G1HeapRegionSize\=32M
|
||||||
|
OverrideJava=false
|
||||||
|
OverrideJavaArgs=true
|
||||||
|
LaunchMaximized=false
|
||||||
|
AutoCloseConsole=false
|
||||||
|
InstanceType=OneSix
|
||||||
|
OverrideCommands=false
|
||||||
|
lastLaunchTime=
|
||||||
|
totalTimePlayed=0
|
||||||
|
UseNativeOpenAL=false
|
||||||
|
PermGen=256
|
||||||
|
IntendedVersion=
|
||||||
|
JavaPath=C\:\\Program Files\\Eclipse Adoptium\\jdk-8.0.392.8-hotspot\\bin\\javaw.exe
|
||||||
|
OverrideJavaLocation=false
|
||||||
|
ForgeVersion=false
|
||||||
|
LiteloaderVersion=
|
||||||
|
OverrideMemory=false
|
||||||
|
PreLaunchCommand=null
|
||||||
|
name=Azure Undead Modpack
|
||||||
|
OverrideWindow=false
|
||||||
|
ShowConsole=false
|
||||||
|
MinecraftWinWidth=854
|
||||||
|
OverrideConsole=false
|
51
build/atlauncher/mmc-pack.json
Normal file
51
build/atlauncher/mmc-pack.json
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{
|
||||||
|
"components": [
|
||||||
|
{
|
||||||
|
"cachedName": "LWJGL 3",
|
||||||
|
"cachedVersion": "3.3.1",
|
||||||
|
"cachedVolatile": true,
|
||||||
|
"dependencyOnly": true,
|
||||||
|
"uid": "org.lwjgl3",
|
||||||
|
"version": "3.3.1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cachedName": "Minecraft",
|
||||||
|
"cachedRequires": [
|
||||||
|
{
|
||||||
|
"suggests": "3.3.1",
|
||||||
|
"uid": "org.lwjgl3"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cachedVersion": "1.20.1",
|
||||||
|
"important": true,
|
||||||
|
"uid": "net.minecraft",
|
||||||
|
"version": "1.20.1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cachedName": "Intermediary Mappings",
|
||||||
|
"cachedRequires": [
|
||||||
|
{
|
||||||
|
"equals": "1.20.1",
|
||||||
|
"uid": "net.minecraft"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cachedVersion": "1.20.1",
|
||||||
|
"cachedVolatile": true,
|
||||||
|
"dependencyOnly": true,
|
||||||
|
"uid": "net.fabricmc.intermediary",
|
||||||
|
"version": "1.20.1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cachedName": "Fabric Loader",
|
||||||
|
"cachedRequires": [
|
||||||
|
{
|
||||||
|
"uid": "net.fabricmc.intermediary"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cachedVersion": "0.15.7",
|
||||||
|
"uid": "net.fabricmc.fabric-loader",
|
||||||
|
"version": "0.15.7"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"formatVersion": 1
|
||||||
|
}
|
5
build/prism/instance.cfg
Normal file
5
build/prism/instance.cfg
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[General]
|
||||||
|
ConfigVersion=1.2
|
||||||
|
iconKey=default
|
||||||
|
name=Azure Undead Modpack
|
||||||
|
InstanceType=OneSix
|
56
build/prism/mmc-pack.json
Normal file
56
build/prism/mmc-pack.json
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"components": [
|
||||||
|
{
|
||||||
|
"cachedName": "LWJGL 3",
|
||||||
|
"cachedVersion": "3.3.2",
|
||||||
|
"cachedVolatile": true,
|
||||||
|
"dependencyOnly": true,
|
||||||
|
"uid": "org.lwjgl3",
|
||||||
|
"version": "3.3.2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cachedName": "Minecraft",
|
||||||
|
"cachedRequires": [
|
||||||
|
{
|
||||||
|
"suggests": "3.3.2",
|
||||||
|
"uid": "org.lwjgl3"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cachedVersion": "1.20.4",
|
||||||
|
"important": true,
|
||||||
|
"uid": "net.minecraft",
|
||||||
|
"version": "1.20.4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cachedName": "Intermediary Mappings",
|
||||||
|
"cachedRequires": [
|
||||||
|
{
|
||||||
|
"equals": "1.20.4",
|
||||||
|
"uid": "net.minecraft"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cachedVersion": "1.20.4",
|
||||||
|
"cachedVolatile": true,
|
||||||
|
"dependencyOnly": true,
|
||||||
|
"uid": "net.fabricmc.intermediary",
|
||||||
|
"version": "1.20.4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cachedName": "Fabric Loader",
|
||||||
|
"cachedRequires": [
|
||||||
|
{
|
||||||
|
"uid": "net.fabricmc.intermediary"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cachedVersion": "0.15.7",
|
||||||
|
"uid": "net.fabricmc.fabric-loader",
|
||||||
|
"version": "0.15.7"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cachedName": "unsup",
|
||||||
|
"cachedVersion": "0.2.3",
|
||||||
|
"uid": "com.unascribed.unsup"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"formatVersion": 1
|
||||||
|
}
|
12
build/prism/patches/com.unascribed.unsup.json
Normal file
12
build/prism/patches/com.unascribed.unsup.json
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"formatVersion": 1,
|
||||||
|
"name": "unsup",
|
||||||
|
"uid": "com.unascribed.unsup",
|
||||||
|
"version": "0.2.3",
|
||||||
|
"+agents": [
|
||||||
|
{
|
||||||
|
"name": "com.unascribed:unsup:0.2.3",
|
||||||
|
"url": "https://repo.sleeping.town"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
BIN
src/config/paxi/datapacks/NoNetheriteArmor.zip
Normal file
BIN
src/config/paxi/datapacks/NoNetheriteArmor.zip
Normal file
Binary file not shown.
101
src/index.toml
101
src/index.toml
|
@ -1,8 +1,8 @@
|
||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/HuskHomes-Fabric-4.6.1.jar"
|
file = "config/paxi/datapacks/NoNetheriteArmor.zip"
|
||||||
hash = "1306b5bb85156bdfd9bfe58bd832bb94ddb39aa48b0e297a323c231e411f6e2f"
|
hash = "91c81bd7055d3d4933954792818b56d78d2967ee646eb40dadb202631c134e38"
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/banhammer.pw.toml"
|
file = "mods/banhammer.pw.toml"
|
||||||
|
@ -10,8 +10,8 @@ hash = "983bfbf5e1f69bc0e081dd59bdacf934324d474679c0f41931883b6ae4a69ac0"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/bluemap.pw.toml"
|
file = "mods/better-ping-display-fabric.pw.toml"
|
||||||
hash = "c4ee3c1cd7ce65505a5aa2b2e66ed816dfde972e8af736e211314ba66d40a01a"
|
hash = "ec31177d5cf656efdff737432455211defb8ee188749e3f53f117f75f83d1b6a"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
|
@ -34,6 +34,21 @@ file = "mods/fabric-api.pw.toml"
|
||||||
hash = "3d6073b78407cf64f5f8ba7d684a626224a2d37e54ea36bfe27c8d62e5358c01"
|
hash = "3d6073b78407cf64f5f8ba7d684a626224a2d37e54ea36bfe27c8d62e5358c01"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/fabric-language-kotlin.pw.toml"
|
||||||
|
hash = "d74850aaf1ed5a53805d523aa2b624f58c43813446be0b6c066a599c80d704e6"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/faux-custom-entity-data.pw.toml"
|
||||||
|
hash = "9a6b9ad5b96b766d46cd87c988c0c763d9c48c78aa7169ab70b737e7fcb6aa18"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/forge-config-api-port.pw.toml"
|
||||||
|
hash = "d1e32ea50e119b059ffe57b2785625679cf04641dfa2d7189197f09eb63aa7f7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/goml-reserved.pw.toml"
|
file = "mods/goml-reserved.pw.toml"
|
||||||
hash = "848d0e5b03f9e9c674931da4e1b14fd837cd82ee022375d2769eded98b0219a9"
|
hash = "848d0e5b03f9e9c674931da4e1b14fd837cd82ee022375d2769eded98b0219a9"
|
||||||
|
@ -44,9 +59,34 @@ file = "mods/huskhomes-v4-6-1.pw.toml"
|
||||||
hash = "619868e1f85d0ccf71bbe9918a8cdd1ed06e232ffb169d6ef336a0188a4f0035"
|
hash = "619868e1f85d0ccf71bbe9918a8cdd1ed06e232ffb169d6ef336a0188a4f0035"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/iris.pw.toml"
|
||||||
|
hash = "7169f560465ba70f204d3c4189cf3d1faef8ae6cf3dc063733a4d53f612a4d94"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/jei.pw.toml"
|
||||||
|
hash = "2703659045f906c35864e583f661030d2a2fe21c86136488d430009d1870788b"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/just-enough-professions-jep.pw.toml"
|
||||||
|
hash = "2ab4b05dc042c299c689e52ff3ee8166572da76134289660f86f1973fe348994"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/leaves-be-gone.pw.toml"
|
||||||
|
hash = "4a02c0cde0e42c647dabf08783988b7986a7b3afe60091e014f62606b9856f64"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/lithium.pw.toml"
|
||||||
|
hash = "3dedde5213176d72e1c353877fa44315945e8f3da2ba05f5679d81e9f558bb1d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/luckperms-fabric-placeholderapi-hook.pw.toml"
|
file = "mods/luckperms-fabric-placeholderapi-hook.pw.toml"
|
||||||
hash = "9f5351673318c24b6cca4e880d8e440c61f01117a2cb4c45e5b4c0b7cab7b747"
|
hash = "ce6aa8f7b0c110334677505eed3ab98fe62809b2395a7b92f8f5571db72bb5cb"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
|
@ -54,6 +94,21 @@ file = "mods/luckperms.pw.toml"
|
||||||
hash = "0654725d644d971636f3b08dd7456ca7e0b8f25068de69c4b5aea256ee3a0f66"
|
hash = "0654725d644d971636f3b08dd7456ca7e0b8f25068de69c4b5aea256ee3a0f66"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/no-portals.pw.toml"
|
||||||
|
hash = "278fa9541d9922d982a8f597b1f67a1ec659a2adaa54669d73f3e85350c429b7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ordered-player-list.pw.toml"
|
||||||
|
hash = "261eb8ac6dcc730afd8643a6486d6b013bbbe2f1200dacc88d7c495e4a588aa5"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/paxi.pw.toml"
|
||||||
|
hash = "73170bf5446b18a88d33a7a04653af758927c94b3e7aa052e6fd24b14623de64"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/polydecorations.pw.toml"
|
file = "mods/polydecorations.pw.toml"
|
||||||
hash = "15b84bd4e41076d96378ff57a95894c49e124681e2748a779168befc9866803b"
|
hash = "15b84bd4e41076d96378ff57a95894c49e124681e2748a779168befc9866803b"
|
||||||
|
@ -71,7 +126,27 @@ metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/polymer.pw.toml"
|
file = "mods/polymer.pw.toml"
|
||||||
hash = "901ddb1c1416b332e032ab591d20c23a4cb434826464254b09a523defb570acd"
|
hash = "431a21a881276f1af4cd0df2839a76977a90d56bc21ec22247f7365b8f50ef37"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/puzzles-lib.pw.toml"
|
||||||
|
hash = "044c99b8058ecf5ea41c07dbea2ccb4e9c10995eb5d7009faabafd9b5de42c4f"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/resourcify.pw.toml"
|
||||||
|
hash = "df26878467488036ddaa1dd167d7f6bd35c38421c1c3620bbd7174fe490b0910"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sodium.pw.toml"
|
||||||
|
hash = "5e73967368d47038c38dc52fa298b45603fbe6baf2608f171638ff767178ad9a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/spark.pw.toml"
|
||||||
|
hash = "3f1cdc39c7c76eba1c62b6f22d07f9507ff1c9a9e860f179481ec63449451a79"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
|
@ -88,3 +163,17 @@ metafile = true
|
||||||
file = "mods/styledplayerlist.pw.toml"
|
file = "mods/styledplayerlist.pw.toml"
|
||||||
hash = "d2e79b6f83ec10bb1d275186e8f79048ca73ca48b434c2539bf2542d86f2cf56"
|
hash = "d2e79b6f83ec10bb1d275186e8f79048ca73ca48b434c2539bf2542d86f2cf56"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/vanilla-permissions.pw.toml"
|
||||||
|
hash = "1cc15f1e57544cdd59abb1d979182fab2775122a8ac1fdb1c03609e695b75733"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/yungs-api.pw.toml"
|
||||||
|
hash = "5ca8392f7c2a2204723fdd74b7c78f20ca9cf1b4fb9b13604d412e00e824cc5d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "unsup.toml"
|
||||||
|
hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
||||||
|
|
13
src/mods/better-ping-display-fabric.pw.toml
Normal file
13
src/mods/better-ping-display-fabric.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Better Ping Display [Fabric]"
|
||||||
|
filename = "BetterPingDisplay-Fabric-1.20.4-1.1.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/MS1ZMyR7/versions/cSYrag8g/BetterPingDisplay-Fabric-1.20.4-1.1.1.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "aecc3c2dd0c9709da23be5eb10698ef5e35ce036"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "MS1ZMyR7"
|
||||||
|
version = "cSYrag8g"
|
|
@ -1,13 +0,0 @@
|
||||||
name = "BlueMap"
|
|
||||||
filename = "BlueMap-3.20-fabric-1.20.jar"
|
|
||||||
side = "server"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/swbUV1cr/versions/QjdzVjGq/BlueMap-3.20-fabric-1.20.jar"
|
|
||||||
hash-format = "sha1"
|
|
||||||
hash = "6155fb84f22b2b58b02a7919dfdf7215a0af03c2"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "swbUV1cr"
|
|
||||||
version = "QjdzVjGq"
|
|
13
src/mods/fabric-language-kotlin.pw.toml
Normal file
13
src/mods/fabric-language-kotlin.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Fabric Language Kotlin"
|
||||||
|
filename = "fabric-language-kotlin-1.10.19+kotlin.1.9.23.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/ZMokinzs/fabric-language-kotlin-1.10.19%2Bkotlin.1.9.23.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "d8a8a5a4f1289e9b4d65f9551c32fbdf56b4f162"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Ha28R6CL"
|
||||||
|
version = "ZMokinzs"
|
13
src/mods/faux-custom-entity-data.pw.toml
Normal file
13
src/mods/faux-custom-entity-data.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Faux Custom Entity Data"
|
||||||
|
filename = "FauxCustomEntityData-fabric-1.20.4-9.0.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "4a2c8cffaedaa4f119f6fe6b0a1203b0287a3d48"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 5025834
|
||||||
|
project-id = 575305
|
13
src/mods/forge-config-api-port.pw.toml
Normal file
13
src/mods/forge-config-api-port.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Forge Config API Port"
|
||||||
|
filename = "ForgeConfigAPIPort-v20.4.3-1.20.4-Fabric.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/ohNO6lps/versions/xbVGsTLe/ForgeConfigAPIPort-v20.4.3-1.20.4-Fabric.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "d868c7cc72c0d3dc933baa4ef99eb63662a70c90"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "ohNO6lps"
|
||||||
|
version = "xbVGsTLe"
|
13
src/mods/iris.pw.toml
Normal file
13
src/mods/iris.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Iris Shaders"
|
||||||
|
filename = "iris-mc1.20.4-1.6.17.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/kGdJ11Rt/iris-mc1.20.4-1.6.17.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "42e06f32cd7036c10d69564a64ce1d08afe3c613"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "YL57xq9U"
|
||||||
|
version = "kGdJ11Rt"
|
13
src/mods/jei.pw.toml
Normal file
13
src/mods/jei.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Just Enough Items"
|
||||||
|
filename = "jei-1.20.4-fabric-17.3.0.49.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/HPR5ThoH/jei-1.20.4-fabric-17.3.0.49.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "0c6b988703c0ced015c1a15712c624bf7cf29565"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "u6dRKJwZ"
|
||||||
|
version = "HPR5ThoH"
|
13
src/mods/just-enough-professions-jep.pw.toml
Normal file
13
src/mods/just-enough-professions-jep.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Just Enough Professions (JEP)"
|
||||||
|
filename = "JustEnoughProfessions-fabric-1.20.4-3.2.0.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/kB56GtWA/versions/DmBeuQ1I/JustEnoughProfessions-fabric-1.20.4-3.2.0.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "3eb2e922d912d2867046e0d885f7f0d78889de56"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "kB56GtWA"
|
||||||
|
version = "DmBeuQ1I"
|
13
src/mods/leaves-be-gone.pw.toml
Normal file
13
src/mods/leaves-be-gone.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Leaves Be Gone"
|
||||||
|
filename = "LeavesBeGone-v20.4.1-1.20.4-Fabric.jar"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/AVq17PqV/versions/vosgBua4/LeavesBeGone-v20.4.1-1.20.4-Fabric.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "5dcdd9d15899d5ba3a472ae259245041171d9d0a"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "AVq17PqV"
|
||||||
|
version = "vosgBua4"
|
13
src/mods/lithium.pw.toml
Normal file
13
src/mods/lithium.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Lithium"
|
||||||
|
filename = "lithium-fabric-mc1.20.4-0.12.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/nMhjKWVE/lithium-fabric-mc1.20.4-0.12.1.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "4a0744beb2246d93cb475d21a5a53faa556956e0"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "gvQqBUqZ"
|
||||||
|
version = "nMhjKWVE"
|
|
@ -1,5 +1,6 @@
|
||||||
name = "LuckPerms-Fabric-PlaceholderAPI-Hook"
|
name = "LuckPerms-Fabric-PlaceholderAPI-Hook"
|
||||||
filename = "LuckPerms-Fabric-PlaceholderAPI-Hook.jar"
|
filename = "LuckPerms-Fabric-PlaceholderAPI-Hook.jar"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://ci.lucko.me/job/LuckPermsPlaceholders/lastStableBuild/artifact/fabric-placeholderapi/build/libs/LuckPerms-Fabric-PlaceholderAPI-Hook.jar"
|
url = "https://ci.lucko.me/job/LuckPermsPlaceholders/lastStableBuild/artifact/fabric-placeholderapi/build/libs/LuckPerms-Fabric-PlaceholderAPI-Hook.jar"
|
||||||
|
|
13
src/mods/no-portals.pw.toml
Normal file
13
src/mods/no-portals.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "No Portals"
|
||||||
|
filename = "no-portals-1.20.4-1.1.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "171a459d2f5292c92305547b20c9dc9f99052e87"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 4945111
|
||||||
|
project-id = 782514
|
13
src/mods/ordered-player-list.pw.toml
Normal file
13
src/mods/ordered-player-list.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Ordered Player List"
|
||||||
|
filename = "orderedplayerlist-0.1.3+1.20.2.jar"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/IX99VLW9/versions/DL7rAiJr/orderedplayerlist-0.1.3%2B1.20.2.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "2902406910f397bcd8236d51b7b54f9f74c4ba5c"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "IX99VLW9"
|
||||||
|
version = "DL7rAiJr"
|
13
src/mods/paxi.pw.toml
Normal file
13
src/mods/paxi.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Paxi"
|
||||||
|
filename = "Paxi-1.20.4-Fabric-4.4.0.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/CU0PAyzb/versions/kOPN246o/Paxi-1.20.4-Fabric-4.4.0.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "629f2e79bcdb7b70e133055d4210e1ed68e7d744"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "CU0PAyzb"
|
||||||
|
version = "kOPN246o"
|
|
@ -1,6 +1,6 @@
|
||||||
name = "Polymer"
|
name = "Polymer"
|
||||||
filename = "polymer-bundled-0.7.6+1.20.4.jar"
|
filename = "polymer-bundled-0.7.6+1.20.4.jar"
|
||||||
side = "server"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/xGdtZczs/versions/q6smILYe/polymer-bundled-0.7.6%2B1.20.4.jar"
|
url = "https://cdn.modrinth.com/data/xGdtZczs/versions/q6smILYe/polymer-bundled-0.7.6%2B1.20.4.jar"
|
||||||
|
|
13
src/mods/puzzles-lib.pw.toml
Normal file
13
src/mods/puzzles-lib.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Puzzles Lib"
|
||||||
|
filename = "PuzzlesLib-v20.4.41-1.20.4-Fabric.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/QAGBst4M/versions/5AajzfKh/PuzzlesLib-v20.4.41-1.20.4-Fabric.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "57cb7287bd10358f6d1ed9a28f0d8aff037e10f5"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "QAGBst4M"
|
||||||
|
version = "5AajzfKh"
|
13
src/mods/resourcify.pw.toml
Normal file
13
src/mods/resourcify.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Resourcify"
|
||||||
|
filename = "Resourcify (1.20.2+-fabric)-1.3.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/RLzHAoZe/versions/DsiKhvUD/Resourcify%20%281.20.2%2B-fabric%29-1.3.1.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "469528f52f2dbd1ccd2d09fa2349084bf8b234a7"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "RLzHAoZe"
|
||||||
|
version = "DsiKhvUD"
|
13
src/mods/sodium.pw.toml
Normal file
13
src/mods/sodium.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Sodium"
|
||||||
|
filename = "sodium-fabric-0.5.8+mc1.20.4.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/AANobbMI/versions/4GyXKCLd/sodium-fabric-0.5.8%2Bmc1.20.4.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "4c38d7b01660a27a98406767c613b3f28b6c9dfe"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "AANobbMI"
|
||||||
|
version = "4GyXKCLd"
|
13
src/mods/spark.pw.toml
Normal file
13
src/mods/spark.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "spark"
|
||||||
|
filename = "spark-1.10.58-fabric.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/l6YH9Als/versions/FeV5OquF/spark-1.10.58-fabric.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "33bbc9f51ae33023edb264b8c4f4259f358703ad"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "l6YH9Als"
|
||||||
|
version = "FeV5OquF"
|
13
src/mods/vanilla-permissions.pw.toml
Normal file
13
src/mods/vanilla-permissions.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Vanilla Permissions"
|
||||||
|
filename = "vanilla-permissions-0.2.3+1.20.4.jar"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/fdZkP5Bb/versions/I9QawL7F/vanilla-permissions-0.2.3%2B1.20.4.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "08aa2d469313a0a0c63e84aedbf9b0c85c38765f"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "fdZkP5Bb"
|
||||||
|
version = "I9QawL7F"
|
13
src/mods/yungs-api.pw.toml
Normal file
13
src/mods/yungs-api.pw.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "YUNG's API"
|
||||||
|
filename = "YungsApi-1.20.4-Fabric-4.4.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Ua7DFN59/versions/RXxBbRs7/YungsApi-1.20.4-Fabric-4.4.2.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "a84f2d79543ac4ccebfd8884d6e7790d9badcfce"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Ua7DFN59"
|
||||||
|
version = "RXxBbRs7"
|
|
@ -1,13 +1,18 @@
|
||||||
name = "Azure Undead Modpack"
|
name = "Azure Undead Modpack"
|
||||||
author = "SeaswimmerTheFsh"
|
author = "SeaswimmerTheFsh"
|
||||||
version = "0.1.0"
|
version = "0.2.11"
|
||||||
pack-format = "packwiz:1.1.0"
|
pack-format = "packwiz:1.1.0"
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
file = "index.toml"
|
file = "index.toml"
|
||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
hash = "8f78b7afbf97b0d679ff2cc99bc798e4b1f9f8267cd0dbb50cd24c973a2ae245"
|
hash = "4c5eb2f47431e8eb3b4a3e76959a60c2a717079bbda466c77f55e03d79eb9d2f"
|
||||||
|
|
||||||
[versions]
|
[versions]
|
||||||
fabric = "0.15.7"
|
fabric = "0.15.7"
|
||||||
minecraft = "1.20.4"
|
minecraft = "1.20.4"
|
||||||
|
unsup = "0.2.3"
|
||||||
|
|
||||||
|
[options]
|
||||||
|
acceptable-game-versions = ["1.20.4"]
|
||||||
|
datapack-folder = "config/paxi/datapacks"
|
||||||
|
|
0
src/unsup.toml
Normal file
0
src/unsup.toml
Normal file
Loading…
Add table
Add a link
Reference in a new issue