Skip to content

Commit

Permalink
Mod updates & Add Extended AE
Browse files Browse the repository at this point in the history
  • Loading branch information
Electrolyte220 committed Nov 13, 2024
1 parent 1615ed1 commit f5d8c16
Show file tree
Hide file tree
Showing 15 changed files with 142 additions and 37 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- chat_heads-0.13.3-forge-1.20 -> chat_heads-0.13.4-forge-1.20
- modernfix-forge-5.19.4+mc1.20.1 -> modernfix-forge-5.19.5+mc1.20.1
- curios-forge-5.10.0+1.20.1 -> curios-forge-5.11.0+1.20.1
- ImmediatelyFast-Forge-1.2.21+1.20.4 -> ImmediatelyFast-Forge-1.3.1+1.20.4
- ImmediatelyFast-Forge-1.2.21+1.20.4 -> ImmediatelyFast-Forge-1.3.2+1.20.4
- Jade-1.20.1-Forge-11.12.1 -> Jade-1.20.1-Forge-11.12.2
- FarmersDelight-1.20.1-1.2.4 -> FarmersDelight-1.20.1-1.2.5
- sophisticatedbackpacks-1.20.1-3.20.11.1115 -> sophisticatedbackpacks-1.20.1-3.20.12.1126
Expand All @@ -22,6 +22,9 @@
- Lychee-1.20.1-forge-5.1.14 -> Lychee-1.20.1-Forge-5.1.15
- entityculling-forge-1.7.0-mc1.20.1 -> entityculling-forge-1.7.1-mc1.20.1
- Steam_Rails-1.6.6+forge-mc1.20.1 -> Steam_Rails-1.6.7+forge-mc1.20.1
- sophisticatedcore-1.20.1-0.6.34.718 -> sophisticatedcore-1.20.1-0.6.35.733
- sophisticatedstorage-1.20.1-0.10.45.912 -> sophisticatedstorage-1.20.1-0.10.46.930
- greate-0.0.29 -> greate-0.0.30
- sophisticatedcore-1.20.1-0.6.34.718 -> sophisticatedcore-1.20.1-0.7.2.756
- sophisticatedstorage-1.20.1-0.10.45.912 -> sophisticatedstorage-1.20.1-0.10.48.942
- greate-0.0.29 -> greate-0.0.31
- aether-1.20.1-1.5.0-neoforge.jar -> aether-1.20.1-1.5.1-neoforge.jar
- gtceu-1.20.1-1.4.6.jar -> gtceu-1.20.1-1.5.0.jar
- gtnn-1.1.4.jar -> gtnn-1.1.5.jar
4 changes: 4 additions & 0 deletions config/aether-common.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@
#Sets the Aether Ruined Portals data pack to be added to new worlds automatically
"Add Ruined Portals automatically" = false

[Modpack]
#Determines whether bosses should display a randomized name above their boss bar
"Randomize boss names" = true

82 changes: 73 additions & 9 deletions config/gtceu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,6 @@ machines:
# Default: "raw"
bedrockOreDropTagPrefix: raw

# WARNING: THIS IS NO LONGER SUPPORTED AND WILL BE REMOVED!
# This option only exists to provide backwards compatibility until the Processing Array will be removed in 1.3.0
# Default: false
doProcessingArray: false

# Makes nearly every GCYM Multiblock require blocks which set their maximum voltages.
# Default: false
enableTieredCasings: true
Expand All @@ -255,13 +250,17 @@ machines:
# Default: 50
ldFluidPipeMinDistance: 50

# Whether non owners can open a machine gui
# Whether ONLY owners can open a machine gui
# Default: false
machineOwnerGUI: true
onlyOwnerGUI: false

# Whether non owners can break a machine
# Whether ONLY owners can break a machine
# Default: false
machineOwnerBreak: true
onlyOwnerBreak: false

# Minimum op level to bypass the ownership checks
# Default: 2
ownerOPBypass: 2

# If High Tier (>UV-tier) GT content should be registered.
# Items and Machines enabled with this config will have missing recipes by default.
Expand Down Expand Up @@ -415,6 +414,10 @@ tools:
# Default: 16
sprayCanChainLength: 16

# Delay in ticks between each log being broken when tree felling
# Default: 2
treeFellingDelay: 2

# NanoSaber Options
nanoSaber:
# The additional damage added when the NanoSaber is powered.
Expand Down Expand Up @@ -517,6 +520,63 @@ compat:
# Default: 1.0AE/t
meHatchEnergyUsage: 1.0

# Config options regarding GTCEu compatibility with minimap mods
minimap:
# The radius, in blocks, that picking up a surface rock will search for veins in.
# -1 to disable.
# Default: 24
surfaceRockProspectRange: 24

# The radius, in blocks, that clicking an ore block will search for veins in.
# -1 to disable
# Default: 24
oreBlockProspectRange: 24

# The map scale at which displayed ores will stop scaling.
oreScaleStop: 1.0

# The size, in pixels, of ore icons on the map
oreIconSize: 32

# The string prepending ore names in the ore vein tooltip
oreNamePrefix: -

# The color to draw a box around the ore icon with.
# Accepts either an ARGB hex color prefixed with # or the string 'material' to use the ore's material color
borderColor: #00000000

# Which part of the screen to anchor buttons to
# Default: "BOTTOM_LEFT"
# Allowed values:
# - TOP_LEFT
# - TOP_CENTER
# - TOP_RIGHT
# - RIGHT_CENTER
# - BOTTOM_RIGHT
# - BOTTOM_CENTER
# - BOTTOM_LEFT
# - LEFT_CENTER
buttonAnchor: BOTTOM_LEFT

# Which direction the buttons will go
# Default: "HORIZONTAL"
# Allowed values:
# - VERTICAL
# - HORIZONTAL
direction: HORIZONTAL

# How horizontally far away from the anchor to place the buttons
# Default: 20
xOffset: 20

# How vertically far away from the anchor to place the buttons
# Default: 0
yOffset: 0

# Whether to put buttons on a separate toolbar on the right instead of the map type toolbar in JourneyMap.
# Default: true
rightToolbar: true

# Whether to hide facades of all blocks in JEI and creative search menu.
# Default: true
hideFacadesInJEI: true
Expand Down Expand Up @@ -546,6 +606,10 @@ dev:
# Default: false (no placement printout in debug.log)
debugWorldgen: false

# Generate ores in superflat worlds?
# Default: false
doSuperflatOres: false

# Dump all registered GT recipes?
# Default: false
dumpRecipes: false
Expand Down
8 changes: 8 additions & 0 deletions index.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1647,6 +1647,10 @@ metafile = true
file = "mods/entityculling.pw.toml"
metafile = true

[[files]]
file = "mods/ex-pattern-provider.pw.toml"
metafile = true

[[files]]
file = "mods/expanded-ecosphere.pw.toml"
metafile = true
Expand Down Expand Up @@ -1686,6 +1690,10 @@ file = "mods/gbthcore-1.0.0.jar"
file = "mods/geckolib.pw.toml"
metafile = true

[[files]]
file = "mods/glodium.pw.toml"
metafile = true

[[files]]
file = "mods/greate.pw.toml"
metafile = true
Expand Down
6 changes: 3 additions & 3 deletions mods/aether.pw.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name = "The Aether"
filename = "aether-1.20.1-1.5.0-neoforge.jar"
filename = "aether-1.20.1-1.5.1-neoforge.jar"
side = "both"

[download]
hash-format = "sha1"
hash = "5f4867bb8e593b514f07ba547282628f5313a446"
hash = "21e6846f6a0c5598a871f728d19191d46db22e6f"
mode = "metadata:curseforge"

[update]
[update.curseforge]
file-id = 5786709
file-id = 5889509
project-id = 255308
13 changes: 13 additions & 0 deletions mods/ex-pattern-provider.pw.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name = "ExtendedAE"
filename = "ExtendedAE-1.20-1.2.1-forge.jar"
side = "both"

[download]
hash-format = "sha1"
hash = "34ab7c4e6ae304539d06e0c85eaf50de2292e235"
mode = "metadata:curseforge"

[update]
[update.curseforge]
file-id = 5867594
project-id = 892005
Binary file modified mods/gbthcore-1.0.0.jar
Binary file not shown.
13 changes: 13 additions & 0 deletions mods/glodium.pw.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name = "Glodium"
filename = "Glodium-1.20-1.5-forge.jar"
side = "both"

[download]
hash-format = "sha1"
hash = "c7534db3248adfcf39a6158b423dfc9bfc99a378"
mode = "metadata:curseforge"

[update]
[update.curseforge]
file-id = 5226922
project-id = 957920
8 changes: 4 additions & 4 deletions mods/greate.pw.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name = "Greate"
filename = "greate-0.0.30.jar"
filename = "greate-0.0.31.jar"
side = "both"

[download]
url = "https://cdn.modrinth.com/data/8wDcQuht/versions/64i6iRir/greate-0.0.30.jar"
url = "https://cdn.modrinth.com/data/8wDcQuht/versions/YCeKXP5l/greate-0.0.31.jar"
hash-format = "sha1"
hash = "8ca3c9bf98ebe24681642929d72a1f18860a253d"
hash = "e2a12ce94bc6088760c79db071b1d4f6c166a139"

[update]
[update.modrinth]
mod-id = "8wDcQuht"
version = "64i6iRir"
version = "YCeKXP5l"
6 changes: 3 additions & 3 deletions mods/gregtechceu-modern.pw.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name = "GregTechCEu Modern"
filename = "gtceu-1.20.1-1.4.6.jar"
filename = "gtceu-1.20.1-1.5.0.jar"
side = "both"

[download]
hash-format = "sha1"
hash = "e3b681eef83f7c6440f0711e2e35fdca447d60ff"
hash = "7e1f466a21b56f6239af36dce6b1ebb9c902c24e"
mode = "metadata:curseforge"

[update]
[update.curseforge]
file-id = 5812598
file-id = 5899003
project-id = 890405
6 changes: 3 additions & 3 deletions mods/gt.pw.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name = "GT--"
filename = "gtnn-1.1.4.jar"
filename = "gtnn-1.1.5.jar"
side = "both"

[download]
hash-format = "sha1"
hash = "f9d6f81f9646ecef1f2c9a863409b89f3373378b"
hash = "99de86f2461e7d05183cd340b086cb65a0073f88"
mode = "metadata:curseforge"

[update]
[update.curseforge]
file-id = 5823705
file-id = 5900164
project-id = 985872
6 changes: 3 additions & 3 deletions mods/immediatelyfast.pw.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name = "ImmediatelyFast"
filename = "ImmediatelyFast-Forge-1.3.1+1.20.4.jar"
filename = "ImmediatelyFast-Forge-1.3.2+1.20.4.jar"
side = "both"

[download]
hash-format = "sha1"
hash = "af05a28a91d4552ed830ad43ce38a3ada4d9f314"
hash = "2e43a4db04253ebac32f7eaf92ab40ea8e4a1457"
mode = "metadata:curseforge"

[update]
[update.curseforge]
file-id = 5861158
file-id = 5894645
project-id = 686911
6 changes: 3 additions & 3 deletions mods/sophisticated-core.pw.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name = "Sophisticated Core"
filename = "sophisticatedcore-1.20.1-0.6.35.733.jar"
filename = "sophisticatedcore-1.20.1-0.7.2.756.jar"
side = "both"

[download]
hash-format = "sha1"
hash = "5a91d1475b674e93f2e7ad69e634a56d6ee682e0"
hash = "c8a1fc8537066d4988b0134ef9e69abc5dad79da"
mode = "metadata:curseforge"

[update]
[update.curseforge]
file-id = 5871829
file-id = 5899399
project-id = 618298
6 changes: 3 additions & 3 deletions mods/sophisticated-storage.pw.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name = "Sophisticated Storage"
filename = "sophisticatedstorage-1.20.1-0.10.46.930.jar"
filename = "sophisticatedstorage-1.20.1-0.10.48.942.jar"
side = "both"

[download]
hash-format = "sha1"
hash = "c4eb7b5455b1e094a596cfe20ca8c033c65f5df5"
hash = "69901385d09eaecb9131c2789dce54690547e46a"
mode = "metadata:curseforge"

[update]
[update.curseforge]
file-id = 5881223
file-id = 5890613
project-id = 619320
4 changes: 2 additions & 2 deletions resourcepacks/computercreate.pw.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ side = "both"

[download]
hash-format = "sha1"
hash = "bdcb15d6812166e3dce1ec43d3f37bbe91b60e5a"
hash = "d4575dd5a56502dba3aac9e6ab60747b27d8caf9"
mode = "metadata:curseforge"

[update]
[update.curseforge]
file-id = 5204948
file-id = 5643693
project-id = 603936

0 comments on commit f5d8c16

Please sign in to comment.