upd: pakku-lock
This commit is contained in:
95
.github/workflows/release.yml
vendored
95
.github/workflows/release.yml
vendored
@@ -2,8 +2,8 @@ name: Release
|
||||
run-name: "Release #${{ github.run_number }} by @${{ github.actor }}"
|
||||
|
||||
env:
|
||||
RELEASE_TYPE: "release"
|
||||
MC_VERSION: "1.20.1"
|
||||
RELEASE_TYPE: "beta"
|
||||
MINECRAFT_VERSION: "1.20.1"
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -24,7 +24,7 @@ jobs:
|
||||
changelog: ${{ steps.changelog.outputs.description }}
|
||||
diff: ${{ steps.lockfile.outputs.diff }}
|
||||
release_type: ${{ env.RELEASE_TYPE }}
|
||||
mc_version: ${{ env.MC_VERSION }}
|
||||
minecraft_version: ${{ env.MINECRAFT_VERSION }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
@@ -105,7 +105,7 @@ jobs:
|
||||
run: |
|
||||
echo "📃 Project Name=${{ steps.project_name.outputs.value }}" >> $GITHUB_STEP_SUMMARY
|
||||
echo "📃 Project Version=${{ steps.project_version.outputs.tag }}" >> $GITHUB_STEP_SUMMARY
|
||||
echo "📃 MC Versions=${{ env.MC_VERSION }}" >> $GITHUB_STEP_SUMMARY
|
||||
echo "📃 MC Versions=${{ env.MINECRAFT_VERSION }}" >> $GITHUB_STEP_SUMMARY
|
||||
echo "📃 Release Type=${{ env.RELEASE_TYPE }}" >> $GITHUB_STEP_SUMMARY
|
||||
echo "${{ steps.changelog.outputs.description }}" >> $GITHUB_STEP_SUMMARY
|
||||
echo "${{ steps.lockfile.outputs.diff }}" >> $GITHUB_STEP_SUMMARY
|
||||
@@ -123,7 +123,9 @@ jobs:
|
||||
run: |
|
||||
set +e
|
||||
|
||||
sed -i -e "s/DEV/${{ needs.info.outputs.project_version }}/g" pakku.json
|
||||
VERSION=${{ needs.info.outputs.project_version }}
|
||||
sed -i -e "s/DEV/${VERSION}/g" pakku.json
|
||||
sed -i -e "s/DEV/${VERSION}/g" config/fancymenu/customization/gui_main_menu.txt
|
||||
|
||||
- name: Cache pakku
|
||||
uses: actions/cache@v4.1.2
|
||||
@@ -174,7 +176,9 @@ jobs:
|
||||
run: |
|
||||
set +e
|
||||
|
||||
sed -i -e "s/DEV/${{ needs.info.outputs.project_version }}/g" pakku.json
|
||||
VERSION=${{ needs.info.outputs.project_version }}
|
||||
sed -i -e "s/DEV/${VERSION}/g" pakku.json
|
||||
sed -i -e "s/DEV/${VERSION}/g" config/fancymenu/customization/gui_main_menu.txt
|
||||
|
||||
- name: Cache pakku
|
||||
uses: actions/cache@v4.1.2
|
||||
@@ -214,6 +218,11 @@ jobs:
|
||||
run: |
|
||||
set +e
|
||||
|
||||
VERSION=${{ needs.info.outputs.project_version }}
|
||||
sed -i -e "s/DEV/${VERSION}/g" pakku.json
|
||||
sed -i -e "s/DEV/${VERSION}/g" config/fancymenu/customization/gui_main_menu.txt
|
||||
sed -i -e "s/DEV/${VERSION}/g" .pakku/multimc-overrides/instance.cfg
|
||||
|
||||
- name: Cache pakku
|
||||
uses: actions/cache@v4.1.2
|
||||
with:
|
||||
@@ -281,45 +290,45 @@ jobs:
|
||||
modpack-server-path: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-serverpack.zip
|
||||
changelog: ${{ needs.info.outputs.changelog }}
|
||||
changelog-format: markdown
|
||||
game-version: ${{ needs.info.outputs.mc_version }}
|
||||
game-version: ${{ needs.info.outputs.minecraft_version }}
|
||||
release-type: ${{ needs.info.outputs.release_type }}
|
||||
|
||||
release-modrinth:
|
||||
name: Deploy to Modrinth
|
||||
needs: [info, build-modpack, build-server]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check if MODRINTH_API_TOKEN exist
|
||||
shell: bash
|
||||
run: |
|
||||
if [ "${{ secrets.MODRINTH_API_TOKEN }}" == '' ]; then
|
||||
echo '::error::No value found for secret key `MODRINTH_API_TOKEN`. See https://docs.github.com/en/ actionssecurity-guides/ encrypted-secrets#creating-encrypted-secrets-for-a-repository' && exit 1
|
||||
fi
|
||||
# release-modrinth:
|
||||
# name: Deploy to Modrinth
|
||||
# needs: [info, build-modpack, build-server]
|
||||
# runs-on: ubuntu-latest
|
||||
# steps:
|
||||
# - name: Check if MODRINTH_API_TOKEN exist
|
||||
# shell: bash
|
||||
# run: |
|
||||
# if [ "${{ secrets.MODRINTH_API_TOKEN }}" == '' ]; then
|
||||
# echo '::error::No value found for secret key `MODRINTH_API_TOKEN`. See https://docs.github.com/en/ actionssecurity-guides/ encrypted-secrets#creating-encrypted-secrets-for-a-repository' && exit 1
|
||||
# fi
|
||||
|
||||
- name: Download artifact modrinth
|
||||
uses: actions/download-artifact@v4.1.8
|
||||
with:
|
||||
name: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-modrinth
|
||||
# - name: Download artifact modrinth
|
||||
# uses: actions/download-artifact@v4.1.8
|
||||
# with:
|
||||
# name: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-modrinth
|
||||
|
||||
- name: Download artifact server
|
||||
uses: actions/download-artifact@v4.1.8
|
||||
with:
|
||||
name: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-serverpack
|
||||
# - name: Download artifact server
|
||||
# uses: actions/download-artifact@v4.1.8
|
||||
# with:
|
||||
# name: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-serverpack
|
||||
|
||||
- name: Upload Modrinth
|
||||
id: cf_release
|
||||
uses: Xikaro/upload-curseforge-modpack-action@1.1.1
|
||||
with:
|
||||
api-token: ${{ secrets.MODRINTH_API_TOKEN }}
|
||||
project-id: ${{ vars.MODRINTH_MODPACK_ID }}
|
||||
modpack-path: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-modrinth.mrpack
|
||||
modpack-server-path: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-serverpack.zip
|
||||
changelog: ${{ needs.info.outputs.changelog }}
|
||||
changelog-format: markdown
|
||||
game-version: ${{ needs.info.outputs.mc_version }}
|
||||
display-name: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}
|
||||
server-display-name: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-serverpack
|
||||
release-type: ${{ needs.info.outputs.release_type }}
|
||||
# - name: Upload Modrinth
|
||||
# id: cf_release
|
||||
# uses: Xikaro/upload-curseforge-modpack-action@1.1.1
|
||||
# with:
|
||||
# api-token: ${{ secrets.MODRINTH_API_TOKEN }}
|
||||
# project-id: ${{ vars.MODRINTH_MODPACK_ID }}
|
||||
# modpack-path: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-modrinth.mrpack
|
||||
# modpack-server-path: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-serverpack.zip
|
||||
# changelog: ${{ needs.info.outputs.changelog }}
|
||||
# changelog-format: markdown
|
||||
# game-version: ${{ needs.info.outputs.minecraft_version }}
|
||||
# display-name: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}
|
||||
# server-display-name: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-serverpack
|
||||
# release-type: ${{ needs.info.outputs.release_type }}
|
||||
|
||||
release-github:
|
||||
name: Deploy to GitHub
|
||||
@@ -355,7 +364,7 @@ jobs:
|
||||
${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-curseforge.zip
|
||||
${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-serverpack.zip
|
||||
${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-multimc.zip
|
||||
prerelease: false
|
||||
prerelease: ${{ env.RELEASE_TYPE != 'release' }}
|
||||
generate_release_notes: true
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
@@ -367,14 +376,14 @@ jobs:
|
||||
- name: Send Discord message
|
||||
uses: hugoalh/send-discord-webhook-ghaction@v7.0.2
|
||||
with:
|
||||
key: ${{ secrets.RELEASES_1_20 }}
|
||||
key: ${{ secrets.DISCORD_RELEASES }}
|
||||
username: "TerraFirmaGreg"
|
||||
avatar_url: "https://raw.githubusercontent.com/TerraFirmaGreg-Team/.github/main/branding/logo.png"
|
||||
content_links_no_embed: .+
|
||||
content: |
|
||||
**Release**: `${{ needs.info.outputs.project_version }}`
|
||||
**Release Type**: `${{ needs.info.outputs.release_type }}`
|
||||
**Game Version**: `${{ needs.info.outputs.mc_version }}`
|
||||
**Game Version**: `${{ needs.info.outputs.minecraft_version }}`
|
||||
[CurseForge](https://www.curseforge.com/minecraft/modpacks/terrafirmagreg/files/${{ needs.release-curseforge.outputs.id }}) • [GitHub](https://github.com/${{ github.repository }}/releases/tag/${{ needs.info.outputs.project_version }}) • [Issues](https://github.com/${{ github.repository }}/issues)
|
||||
|
||||
```markdown
|
||||
|
||||
8
.gitignore
vendored
8
.gitignore
vendored
@@ -94,4 +94,10 @@ optionsshaders.txt
|
||||
OpenComputersMod-*
|
||||
hei_bookmarks.ini
|
||||
|
||||
# Server data
|
||||
# Server data
|
||||
.pakku/server-overrides/libraries
|
||||
.pakku/server-overrides/config
|
||||
.pakku/server-overrides/defaultconfigs
|
||||
.pakku/server-overrides/kubejs
|
||||
.pakku/server-overrides/mods
|
||||
.pakku/server-overrides/user_jvm_args.txt
|
||||
@@ -1,72 +0,0 @@
|
||||
.git
|
||||
AmbientEnvironment*
|
||||
AmbientSounds*
|
||||
betterchat*
|
||||
betterfoliage*
|
||||
blur*
|
||||
BetterF3*
|
||||
BetterPingDisplay*
|
||||
BetterThirdPerson*
|
||||
BetterLineBreak*
|
||||
ChunkAnimator*
|
||||
CraftPresence*
|
||||
CustomLoadingScreen*
|
||||
CustomSkinLoader*
|
||||
cherishedworlds*
|
||||
clienttweaks*
|
||||
clientcrafting*
|
||||
CTM*
|
||||
Controlling*
|
||||
chat_heads*
|
||||
darkness-forge*
|
||||
defaultoptions*
|
||||
dynamiclights*
|
||||
DynamicSurroundings*
|
||||
drippyloadingscreen*
|
||||
entityculling*
|
||||
embeddium*
|
||||
embeddiumplus*
|
||||
gpumemleakfix*
|
||||
fancymenu*
|
||||
farsight*
|
||||
firstperson*
|
||||
FpsReducer*
|
||||
ftbbackups2*
|
||||
InventoryHUD*
|
||||
invhud*
|
||||
ItemPhysic Lite *
|
||||
ItemPhysicLite*
|
||||
no-report-button*
|
||||
notenoughanimations*
|
||||
Valkyrie*
|
||||
jetif*
|
||||
JEI-Utilities*
|
||||
keywizard*
|
||||
konkrete_forge*
|
||||
LegendaryTooltips*
|
||||
mod-director-launchwrapper*
|
||||
moreoverlays*
|
||||
MyServerIsCompatible*
|
||||
MouseTweaks*
|
||||
OptiFine*
|
||||
OptionsEnforcer*
|
||||
oculus*
|
||||
particleculling*
|
||||
placementpreview*
|
||||
phosphor*
|
||||
probejs*
|
||||
rubidium-extra*
|
||||
RenderLib*
|
||||
ResourceLoader*
|
||||
RealFirstPerson2*
|
||||
Rrls*
|
||||
simplelogin*
|
||||
SmoothFont*
|
||||
SoundFilters*
|
||||
Sound-Physics*
|
||||
Searchables*
|
||||
textrues_embeddium_options*
|
||||
tfctowerheat*
|
||||
thah*
|
||||
txloader*
|
||||
TFCVesselTooltip*
|
||||
@@ -1,775 +0,0 @@
|
||||
{
|
||||
"minecraft": {
|
||||
"version": "1.20.1",
|
||||
"modLoaders": [
|
||||
{
|
||||
"id": "forge-47.2.6",
|
||||
"primary": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"manifestType": "minecraftModpack",
|
||||
"manifestVersion": 1,
|
||||
"name": "TerraFirmaGreg-Modern",
|
||||
"version": "DEV",
|
||||
"author": "Exception, Xikaro",
|
||||
"projectID": 385053,
|
||||
"files": [
|
||||
{
|
||||
"projectID": 871755,
|
||||
"fileID": 5751145,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 333287,
|
||||
"fileID": 5729167,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 889915,
|
||||
"fileID": 5257897,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 367706,
|
||||
"fileID": 5340225,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 907856,
|
||||
"fileID": 5581360,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 916493,
|
||||
"fileID": 5574685,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 570017,
|
||||
"fileID": 5229844,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 351441,
|
||||
"fileID": 4613538,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 892005,
|
||||
"fileID": 5728075,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 670986,
|
||||
"fileID": 5093785,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 662156,
|
||||
"fileID": 4944918,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 255389,
|
||||
"fileID": 5370490,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 441647,
|
||||
"fileID": 5629578,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 266890,
|
||||
"fileID": 5647065,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 419699,
|
||||
"fileID": 5137938,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 931925,
|
||||
"fileID": 5342269,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 491890,
|
||||
"fileID": 5344499,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 961856,
|
||||
"fileID": 5107131,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 387638,
|
||||
"fileID": 4691333,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 240633,
|
||||
"fileID": 4655091,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 300331,
|
||||
"fileID": 4832944,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 513402,
|
||||
"fileID": 5394097,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 316582,
|
||||
"fileID": 5661478,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 280510,
|
||||
"fileID": 4911084,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 891816,
|
||||
"fileID": 5064623,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 254284,
|
||||
"fileID": 5739342,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 618298,
|
||||
"fileID": 5326245,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 714158,
|
||||
"fileID": 5316956,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 401648,
|
||||
"fileID": 4863626,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 237307,
|
||||
"fileID": 4600191,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 308240,
|
||||
"fileID": 5161389,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 470013,
|
||||
"fileID": 4923669,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 404465,
|
||||
"fileID": 5567591,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 1056812,
|
||||
"fileID": 5656688,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 570630,
|
||||
"fileID": 5404565,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 317780,
|
||||
"fileID": 5658224,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 1003785,
|
||||
"fileID": 5310649,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 256717,
|
||||
"fileID": 5278538,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 459929,
|
||||
"fileID": 5217955,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 627196,
|
||||
"fileID": 5090810,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 964322,
|
||||
"fileID": 5708354,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 324717,
|
||||
"fileID": 5493390,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 238222,
|
||||
"fileID": 5440261,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 495476,
|
||||
"fileID": 5707404,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 930207,
|
||||
"fileID": 5650506,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 938643,
|
||||
"fileID": 5109692,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 952386,
|
||||
"fileID": 5677386,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 422301,
|
||||
"fileID": 5296475,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 499980,
|
||||
"fileID": 5768751,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 257814,
|
||||
"fileID": 5743457,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 232131,
|
||||
"fileID": 4635878,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 922713,
|
||||
"fileID": 5366124,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 973588,
|
||||
"fileID": 5686125,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 688231,
|
||||
"fileID": 5331300,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 328085,
|
||||
"fileID": 4835191,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 326652,
|
||||
"fileID": 5470032,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 273744,
|
||||
"fileID": 5523168,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 309927,
|
||||
"fileID": 5680164,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 952112,
|
||||
"fileID": 5064493,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 663477,
|
||||
"fileID": 5746857,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 270441,
|
||||
"fileID": 5739352,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 354353,
|
||||
"fileID": 5666352,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 407206,
|
||||
"fileID": 5761157,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 975460,
|
||||
"fileID": 5653131,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 1017637,
|
||||
"fileID": 5338560,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 688367,
|
||||
"fileID": 5689932,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 439890,
|
||||
"fileID": 5473648,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 686911,
|
||||
"fileID": 5425036,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 429371,
|
||||
"fileID": 4884096,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 580555,
|
||||
"fileID": 5436769,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 982512,
|
||||
"fileID": 5551629,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 292038,
|
||||
"fileID": 4594106,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 622112,
|
||||
"fileID": 5320730,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 250398,
|
||||
"fileID": 4646682,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 916747,
|
||||
"fileID": 5644693,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 790626,
|
||||
"fileID": 5425647,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 454372,
|
||||
"fileID": 5102258,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 238086,
|
||||
"fileID": 5454840,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 289412,
|
||||
"fileID": 5543955,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 841001,
|
||||
"fileID": 5356968,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 823106,
|
||||
"fileID": 4906217,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 908741,
|
||||
"fileID": 5352230,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 416294,
|
||||
"fileID": 4944325,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 940350,
|
||||
"fileID": 5313702,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 282001,
|
||||
"fileID": 5714507,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 738663,
|
||||
"fileID": 5760231,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 627824,
|
||||
"fileID": 5685940,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 880630,
|
||||
"fileID": 5653236,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 820815,
|
||||
"fileID": 5046696,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 550678,
|
||||
"fileID": 4627738,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 438332,
|
||||
"fileID": 4715408,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 223794,
|
||||
"fileID": 5641282,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 429235,
|
||||
"fileID": 4810975,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 404468,
|
||||
"fileID": 5267190,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 459701,
|
||||
"fileID": 4766090,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 676136,
|
||||
"fileID": 5200949,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 260262,
|
||||
"fileID": 5393183,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 272335,
|
||||
"fileID": 5714571,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 297038,
|
||||
"fileID": 5608316,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 283644,
|
||||
"fileID": 5414631,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 622737,
|
||||
"fileID": 4834403,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 583345,
|
||||
"fileID": 4925840,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 245028,
|
||||
"fileID": 4891607,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 280294,
|
||||
"fileID": 4586784,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 880532,
|
||||
"fileID": 5331987,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 720848,
|
||||
"fileID": 4608859,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 233019,
|
||||
"fileID": 4578262,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 635427,
|
||||
"fileID": 4680832,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 581495,
|
||||
"fileID": 5299671,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 689467,
|
||||
"fileID": 5416166,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 251407,
|
||||
"fileID": 4751740,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 927874,
|
||||
"fileID": 5589123,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 947914,
|
||||
"fileID": 5381714,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 499096,
|
||||
"fileID": 5224988,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 890405,
|
||||
"fileID": 5369020,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 433760,
|
||||
"fileID": 5698665,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 410295,
|
||||
"fileID": 5028413,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 636608,
|
||||
"fileID": 5556895,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 551736,
|
||||
"fileID": 4731947,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 943925,
|
||||
"fileID": 4926070,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 858542,
|
||||
"fileID": 5284015,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 348521,
|
||||
"fileID": 5729105,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 492574,
|
||||
"fileID": 4580511,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 306770,
|
||||
"fileID": 4966125,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 314905,
|
||||
"fileID": 4596742,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 302973,
|
||||
"fileID": 5276689,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 899986,
|
||||
"fileID": 5125661,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 410811,
|
||||
"fileID": 4896152,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 357540,
|
||||
"fileID": 5639966,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 576589,
|
||||
"fileID": 5350440,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 663658,
|
||||
"fileID": 5326142,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 828656,
|
||||
"fileID": 4932788,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 511770,
|
||||
"fileID": 5117077,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 674852,
|
||||
"fileID": 5142065,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 957920,
|
||||
"fileID": 5226922,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 435044,
|
||||
"fileID": 4596768,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 431430,
|
||||
"fileID": 4731559,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 658722,
|
||||
"fileID": 4594978,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 844019,
|
||||
"fileID": 5645573,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 263420,
|
||||
"fileID": 5685657,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 667299,
|
||||
"fileID": 5424136,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 950924,
|
||||
"fileID": 4961778,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 233071,
|
||||
"fileID": 5623639,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 274259,
|
||||
"fileID": 4882500,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 453394,
|
||||
"fileID": 5280601,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 411045,
|
||||
"fileID": 4578649,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 633412,
|
||||
"fileID": 5016280,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 537533,
|
||||
"fileID": 5419927,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 531761,
|
||||
"fileID": 5644976,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 852668,
|
||||
"fileID": 4710223,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"projectID": 60089,
|
||||
"fileID": 5338457,
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"overrides": "overrides"
|
||||
}
|
||||
@@ -1,153 +0,0 @@
|
||||
<ul>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/exposure">Exposure (by mortuusars)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/first-person-model">First-person Model (Forge/Fabric) (by tr7zw)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-xmod-compat">FTB XMod Compat (by FTB)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/fancymenu">FancyMenu (by Keksuccino)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/recipe-essentials-forge-fabric">Recipe Essentials[Forge/Fabric] (by someaddon)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/astikor-carts-redux">AstikorCarts Redux (by jusipat)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/radium-reforged">Radium Reforged (by Asek3)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/pick-up-notifier">Pick Up Notifier [Forge & Fabric] (by Fuzs)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ex-pattern-provider">ExtendedAE (by GlodBlock)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/saturn">Saturn (by AbdElAziz333)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/barrels-2012">Barrels 2012 (by EERussianguy)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/enhancedvisuals">EnhancedVisuals (by CreativeMD)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/framedblocks">FramedBlocks (by XFactHD)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/playerrevive">PlayerRevive (by CreativeMD)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/architectury-api">Architectury API (Fabric/Forge/NeoForge) (by shedaniel)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/embeddiumplus">Embeddium++ (by SrRapero720)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/etched">Etched (by jackson)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ae2-network-analyser">AE2 Network Analyser (by GlodBlock)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/more-red">More Red (by Commoble)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/inventory-sorter">Inventory Sorter (by cpw)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/simply-light">Simply Light (by Flanks255)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/terrafirmagreg-core">TerraFirmaGreg Core (by Exception)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/corpse">Corpse (by henkelmax)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/attributefix">AttributeFix (by DarkhaxDev)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/texture-packs/improved-applied-energistics-2">Improved Applied Energistics 2 (ae2, ae 2) (by ILAORE)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ambientsounds">AmbientSounds 6 (by CreativeMD)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/sophisticated-core">Sophisticated Core (by P3pp3rF1y)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/firmaciv">Firma: Civilization (TFC) (by alekiponi)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/betterf3">BetterF3 (by cominixo)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cosmetic-armor-reworked">Cosmetic Armor Reworked (by LainMI)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cherished-worlds">Cherished Worlds (Fabric/Forge/NeoForge/Quilt) (by TheIllusiveC4)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/better-foliage-renewed">Better Foliage Renewed (by EERussianguy)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-library-forge">FTB Library (Forge) (by FTB)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/unilib">UniLib (by CDAGaming_)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/lootjs">LootJS: KubeJS Addon (by Lytho)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/xaeros-world-map">Xaero's World Map (by xaero96)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tfc-grooming-station">TFC Grooming Station (by LobsterJonn)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/clumps">Clumps (by Jaredlll08)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/applied-energistics-2-wireless-terminals">Applied Energistics 2 Wireless Terminals (by Mari_023)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/showcase-item">Showcase Item (by Ultramegaaa)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/texture-packs/gregtech-revival-32x">GregTech Revival 32x (by ILAORE)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/jade">Jade 🔍 (by Snownee)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/jei">Just Enough Items (JEI) (by mezz)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/puzzles-lib">Puzzles Lib [Forge & Fabric] (by Fuzs)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/noisium">Noisium (by Steveplays28)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/melody">Melody (by Keksuccino)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tfc-vessel-tooltip">TFC Vessel Tooltip (by HermitOwO)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/sophisticated-backpacks">Sophisticated Backpacks (by P3pp3rF1y)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/selene">Moonlight Lib (by MehVahdJukaar)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/creativecore">CreativeCore (by CreativeMD)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/default-options">Default Options (by BlayTheNinth)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/gcyr">Gregicality Rocketry (by screret)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/texture-packs/improved-create-32x">Improved Create 32x (by ILAORE)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/create-steam-n-rails">Create: Steam 'n' Rails (by IThundxr)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/create">Create (by simibubi)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cupboard">Cupboard (by someaddon)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/u-team-core">U Team Core (by HyCraftHD)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/curios">Curios API (Forge/NeoForge) (by TheIllusiveC4)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/texture-packs/ilaores-tfc-32x">ILAORE's TFC 32x (terrafirmacraft, terra firma craft) (by ILAORE)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/let-me-despawn">Let Me Despawn (by frikinjay)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/itemphysic-lite">ItemPhysic Lite (by CreativeMD)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/water-flasks">TFC Water Flasks (by gaelmare)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/chat-heads">Chat Heads (by dzwdz)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/pandalib">PandaLib (by ThePandaOliver)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tfc-electrical-appliances">TFC Electrical Appliances (by Vasakot)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/merequester">ME Requester (by Relentless)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/createaddition">Create Crafts & Additions (by MRHminer)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/immediatelyfast">ImmediatelyFast (by RaphiMC)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/kubejs-create">KubeJS Create (by LatvianModder)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/emi">EMI (by EmilyPloszaj)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ae2-import-export-card">AE2 Import Export Card (by Ultramegaaa)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/better-ping-display">Better Ping Display (by Quintinity)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/mega-cells">MEGA Cells (by ninety)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/controlling">Controlling (by Jaredlll08)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/octo-lib">OctoLib (by SSKirillSS)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/modernfix">ModernFix (by embeddedt)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib">SuperMartijn642's Core Lib (by SuperMartijn642)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/kubejs">KubeJS (by LatvianModder)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-quests-forge">FTB Quests (Forge) (by FTB)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/kubejs-tfc">KubeJS TFC (by NotEnoughMail)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/blur-forge">Blur (Forge) (by dimadencep)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/embeddium">Embeddium (by embeddedt)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/rhino">Rhino (by LatvianModder)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tfc-ambiental-second-edition">TFC Ambiental - Second edition (by LobsterJonn)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cc-tweaked">CC: Tweaked (by SquidDev)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/notenoughrecipebook">Not Enough Recipe Book [NERB] (by SSKirillSS)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/shimmer">Shimmer (by KilaBash)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/pandas-falling-trees">Panda's Falling Tree's (by ThePandaOliver)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tfc-casting-with-channels">TFC Casting with Channels! (by lJuanGB)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/too-fast">Too Fast (by Noobanidus)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-config-lib">SuperMartijn642's Config Lib (by SuperMartijn642)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/applied-energistics-2">Applied Energistics 2 (by thetechnici4n)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ferritecore">FerriteCore ((Neo)Forge) (by malte0811)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-teams-forge">FTB Teams (Forge) (by FTB)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/catalogue">Catalogue (by MrCrayfish)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/model-gap-fix">Model Gap Fix (by MehVahdJukaar)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tool-belt">Tool Belt (by gigaherz)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cucumber">Cucumber Library (by BlakeBr0)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/craftpresence">CraftPresence (by CDAGaming_)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/placebo">Placebo (by Shadows_of_Fire)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-backups-2">FTB Backups 2 (by FTB)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/jade-addons">Jade Addons (Forge) (by Snownee)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tumbleweed">Tumbleweed (by bconv)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/fps-reducer">FPS Reducer (by bre2el)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tfc-aged-alcohol">TFC Aged Alcohol (by HermitOwO)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/carpeted-stairs">Carpeted Stairs & Slabs (by MehVahdJukaar)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ai-improvements">AI Improvements (by QueenOfMissiles)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/yeetusexperimentus">Yeetus Experimentus (by Sunekaer)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/oculus">Oculus (by Asek3)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/packet-fixer">Packet Fixer (by TonimatasDEV)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/client-tweaks">Client Tweaks (by BlayTheNinth)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/treetap">Tree Tap (by LobsterJonn)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/create-connected">Create: Connected (by Lysine)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tfc-hot-or-not">TFC Hot or Not (by Verph)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/gregtechceu-modern">GregTechCEu Modern (by KilaBash)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/not-enough-animations">Not Enough Animations (by tr7zw)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/konkrete">Konkrete [Forge/NeoForge] (by Keksuccino)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/open-parties-and-claims">Open Parties and Claims (by xaero96)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/dynamiclights-reforged">Sodium/Embeddium Dynamic Lights (by Txni)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-filter-system">FTB Filter System (by FTB)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/searchables">Searchables (by Jaredlll08)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/cloth-config">Cloth Config API (Fabric/Forge/NeoForge) (by shedaniel)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/my-server-is-compatible">My Server Is Compatible (by focamacho)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/patchouli">Patchouli (by Vazkii)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-ranks-forge">FTB Ranks (Forge) (by FTB)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/terrafirmacraft">TerraFirmaCraft (by Dries007)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/tfc-tumbleweed">TFC Tumbleweed (by Verph)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ftb-essentials">FTB Essentials (Forge & Fabric) (by FTB)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/inventory-hud-forge">Inventory HUD+ (by dmitrylovin)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/polylib">PolyLib (by Official_CreeperHost)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/do-a-barrel-roll">Do a Barrel Roll (by enjarai)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/nan-health-fixer">NaN Health Fixer (by pOtAto__bOy)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/drippy-loading-screen">Drippy Loading Screen (by Keksuccino)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/additional-placements">Additional Placements (by firemerald)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/glodium">Glodium (by GlodBlock)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/better-third-person">Better Third Person (by Socolio)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/flickerfix">FlickerFix (by MutantGumdrop)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/no-report-button">No Report Button (by pices1237532)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/astikor-carts-tfc">Astikor Carts TFC (by Verph)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/xaeros-minimap">Xaero's Minimap (by xaero96)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/yacl">YetAnotherConfigLib (by isXander)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/corals-tfc">Corals TFC (by sir_Robson)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/crafting-tweaks">Crafting Tweaks (by BlayTheNinth)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/carry-on">Carry On (by Tschipp)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/firmalife">FirmaLife (by EERussianguy)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/get-it-together-drops">Get It Together, Drops! (by bl4ckscor3)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/smooth-boot-reloaded">Smooth Boot (Reloaded) (by AbdElAziz333)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/ksyxis">Ksyxis (by VidTu)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/balm">Balm (Forge Edition) (by BlayTheNinth)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/hang-glider">Hang Glider [Forge & Fabric] (by Fuzs)</a></li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/mouse-tweaks">Mouse Tweaks (by YaLTeR)</a></li>
|
||||
</ul>
|
||||
@@ -7,51 +7,52 @@
|
||||
- Create Picky Wheels
|
||||
- Decay 2012
|
||||
- Deep Resonance
|
||||
- DefaultSettings
|
||||
- Every Compat (Wood Good)
|
||||
- Forgiving World - Dimension Stacking[Forge/Fabric]
|
||||
- Icterine
|
||||
- Inventory Tweaks - ReFoxed
|
||||
- Load My F***ing Tags
|
||||
- McJtyLib
|
||||
- Petrol's Parts (Create add-on)
|
||||
- ProbeJS
|
||||
- RFTools Base
|
||||
- RFTools Builder
|
||||
- RFTools Control
|
||||
- RFTools Dimensions
|
||||
- RFTools Utility
|
||||
- Seamless Loading Screen
|
||||
- Sodium/Embeddium Extras
|
||||
- Sodium/Embeddium Options API
|
||||
- Sound Physics Remastered
|
||||
- Storage Drawers
|
||||
- TFC Barrels
|
||||
- TFC Canes
|
||||
- TFC Desire Paths
|
||||
- Visual Workbench [Forge & Fabric]
|
||||
- aleki's Nifty Ships
|
||||
- aleki's Ridiculously Simple Roofs
|
||||
|
||||
### Removed
|
||||
- Better Foliage Renewed
|
||||
- BetterF3
|
||||
- Carpeted Stairs & Slabs
|
||||
- Corals TFC
|
||||
- Default Options
|
||||
- Embeddium++
|
||||
- GregTech Revival 32x
|
||||
- ILAORE's TFC 32x (terrafirmacraft, terra firma craft)
|
||||
- Improved Applied Energistics 2 (ae2, ae 2)
|
||||
- Improved Create 32x
|
||||
- ImmediatelyFast
|
||||
- Inventory Sorter
|
||||
- Radium Reforged
|
||||
- Saturn
|
||||
- Shimmer
|
||||
- Simply Light
|
||||
- TerraFirmaGreg Core
|
||||
- TFC Hot or Not
|
||||
|
||||
### Updated
|
||||
- TFCAstikorCarts-1.20.1-1.1.8.2.jar -> TFCAstikorCarts-1.20.1-1.1.8.3.jar
|
||||
- chat_heads-0.13.3-forge-1.20.jar -> chat_heads-0.13.4-forge-1.20.jar
|
||||
- corpse-forge-1.20.1-1.0.14.jar -> corpse-forge-1.20.1-1.0.17.jar
|
||||
- CraftPresence-2.5.0+1.20.1-forge.jar -> CraftPresence-2.5.1+1.20.1-forge.jar
|
||||
- create-1.20.1-0.5.1.f.jar -> create-1.20.1-0.5.1.i.jar
|
||||
- createaddition-1.20.1-1.2.4c.jar -> createaddition-1.20.1-1.2.4e.jar
|
||||
- create_connected-0.8.2-mc1.20.1-all.jar -> create_connected-0.9.2-mc1.20.1-all.jar
|
||||
- Steam_Rails-1.6.4+forge-mc1.20.1.jar -> Steam_Rails-1.6.6+forge-mc1.20.1.jar
|
||||
- CreativeCore_FORGE_v2.12.15_mc1.20.1.jar -> CreativeCore_FORGE_v2.12.17_mc1.20.1.jar
|
||||
- CreativeCore_FORGE_v2.12.15_mc1.20.1.jar -> CreativeCore_FORGE_v2.12.20_mc1.20.1.jar
|
||||
- drippyloadingscreen_forge_3.0.1_MC_1.20.1.jar -> drippyloadingscreen_forge_3.0.9_MC_1.20.1.jar
|
||||
- emi-1.1.7+1.20.1+forge.jar -> emi-1.1.16+1.20.1+forge.jar
|
||||
- embeddium-0.3.19+mc1.20.1-all.jar -> embeddium-0.3.31+mc1.20.1.jar
|
||||
@@ -62,7 +63,6 @@
|
||||
- Firmalife-1.20.1-2.1.3.jar -> Firmalife-1.20.1-2.1.10.jar
|
||||
- gtceu-1.20.1-1.2.3.a.jar -> gtceu-1.20.1-1.4.6.jar
|
||||
- gcyr-1.20.1-0.1.8.jar -> gcyr-1.20.1-0.2.4.jar
|
||||
- ImmediatelyFast-Forge-1.2.18+1.20.4.jar -> ImmediatelyFast-Forge-1.2.21+1.20.4.jar
|
||||
- JadeAddons-1.20.1-forge-5.2.2.jar -> JadeAddons-1.20.1-Forge-5.3.1.jar
|
||||
- Jade-1.20.1-forge-11.9.4.jar -> Jade-1.20.1-Forge-11.12.1.jar
|
||||
- jei-1.20.1-forge-15.3.0.8.jar -> jei-1.20.1-forge-15.20.0.104.jar
|
||||
@@ -70,15 +70,15 @@
|
||||
- letmedespawn-forge-1.3.2b.jar -> letmedespawn-1.20.x-forge-1.4.4.jar
|
||||
- modernfix-forge-5.18.1+mc1.20.1.jar -> modernfix-forge-5.19.4+mc1.20.1.jar
|
||||
- moonlight-1.20-2.13.2-forge.jar -> moonlight-1.20-2.13.13-forge.jar
|
||||
- PlayerRevive_FORGE_v2.0.27_mc1.20.1.jar -> PlayerRevive_FORGE_v2.0.29_mc1.20.1.jar
|
||||
- PuzzlesLib-v8.1.23-1.20.1-Forge.jar -> PuzzlesLib-v8.1.24-1.20.1-Forge.jar
|
||||
- radium-mc1.20.1-0.12.3+git.50c5c33.jar -> radium-mc1.20.1-0.12.4+git.26c9d8e.jar
|
||||
- rhino-forge-2001.2.2-build.18.jar -> rhino-forge-2001.2.3-build.6.jar
|
||||
- dynamiclightsreforged-1.20.1_v1.6.0.jar -> sodiumdynamiclights-forge-1.0.9-1.20.1.jar
|
||||
- sophisticatedbackpacks-1.20.1-3.20.5.1044.jar -> sophisticatedbackpacks-1.20.1-3.20.11.1115.jar
|
||||
- sophisticatedcore-1.20.1-0.6.22.611.jar -> sophisticatedcore-1.20.1-0.6.34.718.jar
|
||||
- supermartijn642corelib-1.1.17-forge-mc1.20.1.jar -> supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar
|
||||
- tfcambiental-1.20.1-3.3.0.jar -> tfcambiental-1.20.1-3.3.1.jar
|
||||
- TFCHotOrNot-1.20.1-1.0.4.jar -> TFCHotOrNot-1.20.1-1.0.10.jar
|
||||
- TerraFirmaCraft-Forge-1.20.1-3.2.2.jar -> TerraFirmaCraft-Forge-1.20.1-3.2.7.jar
|
||||
- TerraFirmaGreg-Core-1.20.1-0.5.9.jar -> TFG-Core-Modern-0.6.0.jar
|
||||
- UniLib-1.0.2+1.20.1-forge.jar -> UniLib-1.0.3+1.20.1-forge.jar
|
||||
- Xaeros_Minimap_24.4.0_Forge_1.20.jar -> Xaeros_Minimap_24.5.0_Forge_1.20.jar
|
||||
|
||||
2
mods
2
mods
Submodule mods updated: 0d2374f19c...ef6da5b711
1224
pakku-lock.json
1224
pakku-lock.json
File diff suppressed because it is too large
Load Diff
173
pakku.json
173
pakku.json
@@ -18,11 +18,174 @@
|
||||
"client_overrides": [
|
||||
"resourcepacks"
|
||||
],
|
||||
"multimc_overrides": [
|
||||
"icon.png",
|
||||
"instance.cfg",
|
||||
"mmc-pack.json"
|
||||
],
|
||||
"projects": {
|
||||
"ambient-environment": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"ambientsounds": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"better-chat": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"better-foliage-renewed": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"betterf3": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"blur": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"better-ping-display": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"better-third-person": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"chunk-animator": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"craftpresence": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"better-loading-screen": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"controlling": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"dynamic-darkness": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"dynamic-lights": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"dynamic-surroundings": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"fancymenu": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"farsight": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"fps-reducer": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"inventory-hud-forge": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"itemphysic-lite": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"legendary-tooltips": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"konkrete": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"more-overlays": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"my-server-is-compatible": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"mouse-tweaks-unofficial": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"options-enforcer": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"particle-culling": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"placement-preview": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"real-first-person-render": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"valkyrie": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"wrapfix": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"sound-physics-remixin": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"tfc-towerheat": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"tfc-toohotaroundhere": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"keybind-description-fix": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"better-quest-pop-up": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"ctm": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"simple-login": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"cherished-worlds": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"jetif": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"client-tweaks": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"chat-heads": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"drippy-loading-screen": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"embeddium": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"first-person-model": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"ftb-backups-2": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"no-report-button": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"not-enough-animations": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"mouse-tweaks": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"oculus": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"sound-physics-remastered": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"searchables": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"tfc-vessel-tooltip": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"sodium-options-api": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"magnesium-extras": {
|
||||
"side": "CLIENT"
|
||||
},
|
||||
"dynamiclights-reforged": {
|
||||
"side": "CLIENT"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user