Skip to content
Snippets Groups Projects
Commit 5e13da4f authored by Griefed's avatar Griefed :joystick:
Browse files

Merge branch 'develop' into 'main'

Multiple clientside-mods additions

See merge request !638
parents adcd5c42 dddde838
No related branches found
No related tags found
1 merge request!638Multiple clientside-mods additions
Pipeline #9221 passed
...@@ -155,6 +155,7 @@ replay_pid* ...@@ -155,6 +155,7 @@ replay_pid*
# General # General
.AppleDouble .AppleDouble
.LSOverride .LSOverride
.DS_Store
# Icon must end with two \r # Icon must end with two \r
Icon Icon
...@@ -370,6 +371,7 @@ serverpackcreator-web-frontend/.quasar/ ...@@ -370,6 +371,7 @@ serverpackcreator-web-frontend/.quasar/
serverpackcreator-web-frontend/dist/ serverpackcreator-web-frontend/dist/
serverpackcreator-web-frontend/node_modules/ serverpackcreator-web-frontend/node_modules/
serverpackcreator-web-frontend/node/ serverpackcreator-web-frontend/node/
serverpackcreator-web-frontend/.frontend-gradle-plugin
serverpackcreator-app/serverpackcreator.db serverpackcreator-app/serverpackcreator.db
docker-compose-dev.yml docker-compose-dev.yml
......
import org.siouan.frontendgradleplugin.infrastructure.gradle.RunNpm import org.siouan.frontendgradleplugin.infrastructure.gradle.RunNpmTaskType
plugins { plugins {
id("org.siouan.frontend-jdk21") id("org.siouan.frontend-jdk21")
...@@ -11,27 +11,26 @@ repositories { ...@@ -11,27 +11,26 @@ repositories {
frontend { frontend {
packageJsonDirectory.set(project.layout.projectDirectory.asFile) packageJsonDirectory.set(project.layout.projectDirectory.asFile)
nodeVersion.set("18.20.2") nodeVersion.set("20.18.3")
nodeInstallDirectory.set(project.layout.projectDirectory.dir("node")) nodeInstallDirectory.set(project.layout.projectDirectory.dir("node"))
cleanScript.set("run clean")
assembleScript.set("run build") assembleScript.set("run build")
// Print the architecture we are running on. // Print the architecture we are running on.
println(String.format("I am running on: %s", System.getProperty("os.arch"))) println(String.format("I am running on: %s", System.getProperty("os.arch")))
// If we are running on arm, specify Node path pattern so arm-builds succeed.
if (System.getProperty("os.arch").equals("arm")) {
nodeDistributionUrlPathPattern.set("vVERSION/node-vVERSION-linux-armv7l.TYPE")
} else if (System.getProperty("os.arch").equals("aarch64")) {
nodeDistributionUrlPathPattern.set("vVERSION/node-vVERSION-linux-arm64.TYPE")
}
verboseModeEnabled.set(true) verboseModeEnabled.set(true)
} }
tasks.register("installQuasar", RunNpm::class) { tasks.register("installQuasar", RunNpmTaskType::class) {
script.set("install -g @quasar/cli") dependsOn("installCorepackLatest")
args.set("install -g @quasar/cli")
}
//Temporary intermediate task to prevent https://github.com/nodejs/corepack/issues/612#issuecomment-2631491212
//TODO Remove once the error, which caused this task to exist in the first place, is fixed in NodeJS/Corepack
tasks.register("installCorepackLatest", RunNpmTaskType::class) {
args.set("install --global corepack@latest")
} }
tasks.getByName("installNode").finalizedBy( tasks.getByName("installNode").finalizedBy(
......
...@@ -22,7 +22,7 @@ dokka = "1.9.20" ...@@ -22,7 +22,7 @@ dokka = "1.9.20"
licenseReport = "2.9" licenseReport = "2.9"
# https://plugins.gradle.org/plugin/org.siouan.frontend-jdk11 # https://plugins.gradle.org/plugin/org.siouan.frontend-jdk11
frontendPlugin = "8.1.0" frontendPlugin = "10.0.0"
# https://plugins.gradle.org/plugin/com.install4j.gradle # https://plugins.gradle.org/plugin/com.install4j.gradle
install4j = "11.0.0.1" install4j = "11.0.0.1"
......
...@@ -148,7 +148,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -148,7 +148,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
private var fallbackModsWhitelist = TreeSet( private var fallbackModsWhitelist = TreeSet(
listOf( listOf(
"Ping-Wheel-" "Ping-Wheel-",
"appleskin-"
) )
) )
...@@ -177,17 +178,16 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -177,17 +178,16 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
"BetterF3-", //https://www.curseforge.com/minecraft/mc-mods/betterf3 "BetterF3-", //https://www.curseforge.com/minecraft/mc-mods/betterf3
"BetterFog-", //https://www.curseforge.com/minecraft/mc-mods/better-fog "BetterFog-", //https://www.curseforge.com/minecraft/mc-mods/better-fog
"BetterFoliage-", //https://www.curseforge.com/minecraft/mc-mods/better-foliage "BetterFoliage-", //https://www.curseforge.com/minecraft/mc-mods/better-foliage
"BetterGrassify-", //https://www.curseforge.com/minecraft/mc-mods/bettergrassify
"BetterPingDisplay-", //https://www.curseforge.com/minecraft/mc-mods/better-ping-display "BetterPingDisplay-", //https://www.curseforge.com/minecraft/mc-mods/better-ping-display
"BetterPlacement-", //https://www.curseforge.com/minecraft/mc-mods/better-placement "BetterPlacement-", //https://www.curseforge.com/minecraft/mc-mods/better-placement
"BetterTaskbar-", //https://www.curseforge.com/minecraft/mc-mods/better-taskbar "BetterTaskbar-", //https://www.curseforge.com/minecraft/mc-mods/better-taskbar
"BetterThirdPerson", //https://www.curseforge.com/minecraft/mc-mods/better-third-person "BetterThirdPerson", //https://www.curseforge.com/minecraft/mc-mods/better-third-person
"BetterTitleScreen-", //https://www.curseforge.com/minecraft/mc-mods/better-title-screen "BetterTitleScreen-", //https://www.curseforge.com/minecraft/mc-mods/better-title-screen
"Blur-", //https://www.curseforge.com/minecraft/mc-mods/blur "Blur-", //https://www.curseforge.com/minecraft/mc-mods/blur
"BoccHUD-", //https://modrinth.com/mod/bocchud/
"BorderlessWindow-", //https://www.curseforge.com/minecraft/mc-mods/borderless "BorderlessWindow-", //https://www.curseforge.com/minecraft/mc-mods/borderless
"CTM-", //https://www.curseforge.com/minecraft/mc-mods/ctm "CTM-", //https://www.curseforge.com/minecraft/mc-mods/ctm
"Chat Ping ", //https://www.curseforge.com/minecraft/mc-mods/chatping "Chat Ping ", //https://www.curseforge.com/minecraft/mc-mods/chatping
"CheatDetector-", //https://www.curseforge.com/minecraft/mc-mods/cheatdetector
"ChunkAnimator-", //https://www.curseforge.com/minecraft/mc-mods/chunk-animator "ChunkAnimator-", //https://www.curseforge.com/minecraft/mc-mods/chunk-animator
"Clear-Water-", //https://www.curseforge.com/minecraft/mc-mods/clear-water "Clear-Water-", //https://www.curseforge.com/minecraft/mc-mods/clear-water
"ClientTweaks_", //https://www.curseforge.com/minecraft/mc-mods/client-tweaks "ClientTweaks_", //https://www.curseforge.com/minecraft/mc-mods/client-tweaks
...@@ -226,6 +226,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -226,6 +226,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
"FirstPersonMod", //https://www.curseforge.com/minecraft/mc-mods/first-person-model "FirstPersonMod", //https://www.curseforge.com/minecraft/mc-mods/first-person-model
"FogTweaker-", //https://www.curseforge.com/minecraft/mc-mods/fog-tweaker "FogTweaker-", //https://www.curseforge.com/minecraft/mc-mods/fog-tweaker
"ForgeCustomCursorMod-", //https://www.curseforge.com/minecraft/mc-mods/cursor-mod "ForgeCustomCursorMod-", //https://www.curseforge.com/minecraft/mc-mods/cursor-mod
"Forgematica-", //https://www.curseforge.com/minecraft/mc-mods/forgematica
"FpsReducer-", //https://www.curseforge.com/minecraft/mc-mods/fps-reducer "FpsReducer-", //https://www.curseforge.com/minecraft/mc-mods/fps-reducer
"FpsReducer2-", //https://www.curseforge.com/minecraft/mc-mods/fps-reducer "FpsReducer2-", //https://www.curseforge.com/minecraft/mc-mods/fps-reducer
"FullscreenWindowed-", //https://www.curseforge.com/minecraft/mc-mods/fullscreen-windowed-borderless-for-minecraft "FullscreenWindowed-", //https://www.curseforge.com/minecraft/mc-mods/fullscreen-windowed-borderless-for-minecraft
...@@ -254,6 +255,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -254,6 +255,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
"LegendaryTooltips", //https://www.curseforge.com/minecraft/mc-mods/legendary-tooltips "LegendaryTooltips", //https://www.curseforge.com/minecraft/mc-mods/legendary-tooltips
"LegendaryTooltips-", //https://www.curseforge.com/minecraft/mc-mods/legendary-tooltips "LegendaryTooltips-", //https://www.curseforge.com/minecraft/mc-mods/legendary-tooltips
"LightOverlay-", //https://www.curseforge.com/minecraft/mc-mods/light-level-overlay-display "LightOverlay-", //https://www.curseforge.com/minecraft/mc-mods/light-level-overlay-display
"MaFgLib-", //https://modrinth.com/mod/mafglib
"MinecraftCapes ", //https://www.curseforge.com/minecraft/mc-mods/minecraftcapes-mod "MinecraftCapes ", //https://www.curseforge.com/minecraft/mc-mods/minecraftcapes-mod
"MineMenu-", //https://www.curseforge.com/minecraft/mc-mods/minemenu "MineMenu-", //https://www.curseforge.com/minecraft/mc-mods/minemenu
"MoBends", //https://www.curseforge.com/minecraft/mc-mods/mo-bends "MoBends", //https://www.curseforge.com/minecraft/mc-mods/mo-bends
...@@ -310,6 +312,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -310,6 +312,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
"YungsMenuTweaks-", //https://www.curseforge.com/minecraft/mc-mods/yungs-menu-tweaks "YungsMenuTweaks-", //https://www.curseforge.com/minecraft/mc-mods/yungs-menu-tweaks
"[1.12.2]DamageIndicatorsMod-", //https://www.curseforge.com/minecraft/mc-mods/damage-indicators-mod "[1.12.2]DamageIndicatorsMod-", //https://www.curseforge.com/minecraft/mc-mods/damage-indicators-mod
"[1.12.2]bspkrscore-", //https://www.curseforge.com/minecraft/mc-mods/bspkrscore "[1.12.2]bspkrscore-", //https://www.curseforge.com/minecraft/mc-mods/bspkrscore
"ahznbstools-", //https://www.curseforge.com/minecraft/mc-mods/ahznbs-tools/
"antighost-", //https://www.curseforge.com/minecraft/mc-mods/antighost "antighost-", //https://www.curseforge.com/minecraft/mc-mods/antighost
"anviltooltipmod-", //https://www.curseforge.com/minecraft/mc-mods/anvil-tooltip-mod "anviltooltipmod-", //https://www.curseforge.com/minecraft/mc-mods/anvil-tooltip-mod
"armorchroma-", //https://www.curseforge.com/minecraft/mc-mods/armor-chroma "armorchroma-", //https://www.curseforge.com/minecraft/mc-mods/armor-chroma
...@@ -335,13 +338,13 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -335,13 +338,13 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
"catalogue-", //https://www.curseforge.com/minecraft/mc-mods/catalogue "catalogue-", //https://www.curseforge.com/minecraft/mc-mods/catalogue
"cave_dust-", //https://www.curseforge.com/minecraft/mc-mods/cave-dust "cave_dust-", //https://www.curseforge.com/minecraft/mc-mods/cave-dust
"cfwinfo-", //https://www.curseforge.com/minecraft/mc-mods/create-fuel-and-water-information "cfwinfo-", //https://www.curseforge.com/minecraft/mc-mods/create-fuel-and-water-information
"chestsearchbar-", //https://www.curseforge.com/minecraft/mc-mods/chest-search-bar
"charmonium-", //https://www.curseforge.com/minecraft/mc-mods/charmonium "charmonium-", //https://www.curseforge.com/minecraft/mc-mods/charmonium
"chat_heads-", //https://www.curseforge.com/minecraft/mc-mods/chat-heads "chat_heads-", //https://www.curseforge.com/minecraft/mc-mods/chat-heads
"cherishedworlds-", //https://www.curseforge.com/minecraft/mc-mods/cherished-worlds "cherishedworlds-", //https://www.curseforge.com/minecraft/mc-mods/cherished-worlds
"cirback-1.0-", //Gone? Reduces to atoms? "cirback-1.0-", //Gone? Reduces to atoms?
"citresewn-", //https://www.curseforge.com/minecraft/mc-mods/forge-cit "citresewn-", //https://www.curseforge.com/minecraft/mc-mods/forge-cit
"classicbar-", //https://www.curseforge.com/minecraft/mc-mods/classic-bars "classicbar-", //https://www.curseforge.com/minecraft/mc-mods/classic-bars
"clickadv-", //https://www.curseforge.com/minecraft/mc-mods/clickable-advancements
"clienttweaks-", //https://www.curseforge.com/minecraft/mc-mods/client-tweaks "clienttweaks-", //https://www.curseforge.com/minecraft/mc-mods/client-tweaks
"combat_music-", //https://www.curseforge.com/minecraft/mc-mods/combat-music "combat_music-", //https://www.curseforge.com/minecraft/mc-mods/combat-music
"configured-neoforge-", //https://www.curseforge.com/minecraft/mc-mods/configured "configured-neoforge-", //https://www.curseforge.com/minecraft/mc-mods/configured
...@@ -391,6 +394,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -391,6 +394,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
"forgemod_VoxelMap-", //https://www.curseforge.com/minecraft/mc-mods/voxelmap "forgemod_VoxelMap-", //https://www.curseforge.com/minecraft/mc-mods/voxelmap
"freecam-", //https://www.curseforge.com/minecraft/mc-mods/free-cam "freecam-", //https://www.curseforge.com/minecraft/mc-mods/free-cam
"freelook-", //https://www.curseforge.com/minecraft/mc-mods/freelook "freelook-", //https://www.curseforge.com/minecraft/mc-mods/freelook
"ftbpromoter-", //https://www.curseforge.com/minecraft/mc-mods/ftb-promoter/
"galacticraft-rpc-", //https://www.curseforge.com/minecraft/mc-mods/galacticraft-rpc "galacticraft-rpc-", //https://www.curseforge.com/minecraft/mc-mods/galacticraft-rpc
"gamestagesviewer-", //https://www.curseforge.com/minecraft/mc-mods/game-stages-viewer "gamestagesviewer-", //https://www.curseforge.com/minecraft/mc-mods/game-stages-viewer
"gpumemleakfix-", //https://www.curseforge.com/minecraft/mc-mods/fix-gpu-memory-leak "gpumemleakfix-", //https://www.curseforge.com/minecraft/mc-mods/fix-gpu-memory-leak
...@@ -486,6 +490,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -486,6 +490,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
"smoothboot-", //https://www.curseforge.com/minecraft/mc-mods/smoothboot "smoothboot-", //https://www.curseforge.com/minecraft/mc-mods/smoothboot
"smoothfocus-", //https://www.curseforge.com/minecraft/mc-mods/smoothfocus "smoothfocus-", //https://www.curseforge.com/minecraft/mc-mods/smoothfocus
"sodium-fabric-", //https://www.curseforge.com/minecraft/mc-mods/sodium "sodium-fabric-", //https://www.curseforge.com/minecraft/mc-mods/sodium
"sodium-shader-support-", //https://modrinth.com/mod/sodium-shader-support/
"sodiumcoreshadersupport-", //https://www.curseforge.com/minecraft/mc-mods/sodium-core-shader-support
"sodiumdynamiclights-", //https://www.curseforge.com/minecraft/mc-mods/dynamiclights-reforged "sodiumdynamiclights-", //https://www.curseforge.com/minecraft/mc-mods/dynamiclights-reforged
"sodiumleafculling-", //https://www.curseforge.com/minecraft/mc-mods/sodium-leaf-culling "sodiumleafculling-", //https://www.curseforge.com/minecraft/mc-mods/sodium-leaf-culling
"sodiumoptionsapi-", //https://www.curseforge.com/minecraft/mc-mods/sodium-options-api "sodiumoptionsapi-", //https://www.curseforge.com/minecraft/mc-mods/sodium-options-api
...@@ -648,7 +654,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -648,7 +654,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
@Suppress("MemberVisibilityCanBePrivate") @Suppress("MemberVisibilityCanBePrivate")
val trueFalseRegex = "^(true|false)$".toRegex() val trueFalseRegex = "^(true|false)$".toRegex()
val preReleaseRegex = ".*(alpha|beta|dev).*".toRegex() @Suppress("MemberVisibilityCanBePrivate")
val alphaBetaRegex = "^(.*alpha.*|.*beta.*)$".toRegex()
@Suppress("MemberVisibilityCanBePrivate") @Suppress("MemberVisibilityCanBePrivate")
val serverPacksRegex = "^(?:\\./)?server-packs$".toRegex() val serverPacksRegex = "^(?:\\./)?server-packs$".toRegex()
...@@ -777,7 +784,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -777,7 +784,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
val preRelease: Boolean val preRelease: Boolean
get() { get() {
return apiVersion.matches(preReleaseRegex) return apiVersion.matches(alphaBetaRegex)
} }
val configVersion: String = if (preRelease || devBuild) { val configVersion: String = if (preRelease || devBuild) {
...@@ -786,6 +793,14 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -786,6 +793,14 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
"4" "4"
} }
/**
* Only the first call to this property will return true if this is the first time ServerPackCreator is being run
* on a given host. Any subsequent call will return false. Handle with care!
*
* @author Griefed
*/
val firstRun: Boolean
var logLevel = "INFO" var logLevel = "INFO"
get() { get() {
field = acquireProperty(pLogLevel, "INFO").uppercase() field = acquireProperty(pLogLevel, "INFO").uppercase()
...@@ -2622,7 +2637,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -2622,7 +2637,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
} }
} }
if (fallbackUpdated) { if (fallbackUpdated) {
saveProperties(serverPackCreatorPropertiesFile) saveProperties(File(homeDirectory, serverPackCreatorProperties).absoluteFile)
} }
return fallbackUpdated return fallbackUpdated
} }
...@@ -2779,6 +2794,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -2779,6 +2794,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
setLoggingLevel(logLevel) setLoggingLevel(logLevel)
} }
firstRun = getBoolProperty("de.griefed.serverpackcreator.firstrun", true)
setBoolProperty("de.griefed.serverpackcreator.firstrun", false)
logsDirectory.create(createFileOrDir = true, asDirectory = true) logsDirectory.create(createFileOrDir = true, asDirectory = true)
serverFilesDirectory.create(createFileOrDir = true, asDirectory = true) serverFilesDirectory.create(createFileOrDir = true, asDirectory = true)
propertiesDirectory.create(createFileOrDir = true, asDirectory = true) propertiesDirectory.create(createFileOrDir = true, asDirectory = true)
...@@ -2794,7 +2811,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) ...@@ -2794,7 +2811,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
minecraftServerManifestsDirectory.create(createFileOrDir = true, asDirectory = true) minecraftServerManifestsDirectory.create(createFileOrDir = true, asDirectory = true)
installerCacheDirectory.create(createFileOrDir = true, asDirectory = true) installerCacheDirectory.create(createFileOrDir = true, asDirectory = true)
printSettings() printSettings()
saveProperties(serverPackCreatorPropertiesFile) saveProperties(File(homeDirectory, serverPackCreatorProperties).absoluteFile)
} }
private fun setLoggingLevel(level: String) { private fun setLoggingLevel(level: String) {
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
de.griefed.serverpackcreator.versioncheck.prerelease=false de.griefed.serverpackcreator.versioncheck.prerelease=false
de.griefed.serverpackcreator.language=en_GB de.griefed.serverpackcreator.language=en_GB
de.griefed.serverpackcreator.configuration.fallback.updateurl=https://raw.githubusercontent.com/Griefed/ServerPackCreator/main/serverpackcreator-api/src/main/resources/serverpackcreator.properties de.griefed.serverpackcreator.configuration.fallback.updateurl=https://raw.githubusercontent.com/Griefed/ServerPackCreator/main/serverpackcreator-api/src/main/resources/serverpackcreator.properties
de.griefed.serverpackcreator.configuration.fallbackmodslist=3dskinlayers-,Absolutely-Not-A-Zoom-Mod-,AdvancedChat-,AdvancedChatCore-,AdvancedChatHUD-,AdvancedCompas-,Ambience,AmbientEnvironment-,AmbientSounds_,AnimaticaReforged-,AreYouBlind-,Armor Status HUD-,ArmorSoundTweak-,BH-Menu-,Batty's Coordinates PLUS Mod,BetterAdvancements-,BetterAnimationsCollection-,BetterModsButton-,BetterDarkMode-,BetterF3-,BetterFog-,BetterFoliage-,BetterGrassify-,BetterPingDisplay-,BetterPlacement-,BetterTaskbar-,BetterThirdPerson,BetterTitleScreen-,Blur-,BorderlessWindow-,CTM-,Chat Ping ,CheatDetector-,ChunkAnimator-,Clear-Water-,ClientTweaks_,CompletionistsIndex-,Controller Support-,Controlling-,CraftPresence-,CullLessLeaves-,CustomCursorMod-,CustomMainMenu-,DefaultOptions_,DefaultSettings-,DeleteWorldsToTrash-,DetailArmorBar-,Ding-,DistantHorizons-,DripSounds-,Durability101-,DurabilityNotifier-,DynamicSurroundings-,DynamicSurroundingsHuds-,EasyLAN-,EffectsLeft-,EiraMoticons_,EnchantmentDescriptions-,EnhancedVisuals_,EquipmentCompare-,EuphoriaPatcher-,FPS-Monitor-,FabricCustomCursorMod-,FadingNightVision-,Fallingleaves-,FancySpawnEggs,FancyVideo-API-,farsight-,FirstPersonMod,FogTweaker-,ForgeCustomCursorMod-,FpsReducer-,FpsReducer2-,FullscreenWindowed-,GameMenuModOption-,HealthOverlay-,HeldItemTooltips-,HorseStatsMod-,ImmediatelyFast-,ImmediatelyFastReforged-,InventoryEssentials_,InventoryHud_,InventorySpam-,InventoryTweaks-,ItemBorders-,ItemLocks-,ItemPhysicLite_,ItemStitchingFix-,JBRA-Client-,JustEnoughCalculation-,JustEnoughEffects-,JustEnoughProfessions-,KeepTheResourcePack-,LeaveMyBarsAlone-,LLOverlayReloaded-,LOTRDRP-,LegendaryTooltips,LegendaryTooltips-,LightOverlay-,MinecraftCapes,MineMenu-,MoBends,ModernUI-,MouseTweaks-,MyServerIsCompatible-,Neat,Neat-,NekosEnchantedBooks-,NoAutoJump-,NoFog-,Notes-,NotifMod-,OldJavaWarning-,OptiFine,OptiFine_,OptiForge,OptiForge-,OverflowingBars-,PackMenu-,PackModeMenu-,PickUpNotifier-,Ping-,PingHUD-,PresenceFootsteps-,RPG-HUD-,ReAuth-,Reforgium-,ResourceLoader-,ResourcePackOrganizer,Ryoamiclights-,RyoamicLights-,ShoulderSurfing-,ShulkerTooltip-,SimpleDiscordRichPresence-,SimpleWorldTimer-,SoundFilters-,Sounds-,SpawnerFix-,StylishEffects-,TextruesRubidiumOptions-,TRansliterationLib-,TipTheScales-,Tips-,Toast Control-,Toast-Control-,ToastControl-,TravelersTitles-,VoidFog-,VR-Combat_,WindowedFullscreen-,WorldNameRandomizer-,YeetusExperimentus-,YungsMenuTweaks-,[1.12.2]DamageIndicatorsMod-,[1.12.2]bspkrscore-,antighost-,anviltooltipmod-,armorchroma-,armorpointspp-,auditory-,authme-,auto-reconnect-,autojoin-,autoreconnect-,axolotl-item-fix-,backtools-,bannerunlimited-,beddium-,beenfo-,better-clouds-,better-recipe-book-,betterbiomeblend-,bhmenu-,blinkload-,blur-,borderless-mining-,cat_jam-,catalogue-,cave_dust-,cfwinfo-,charmonium-,chat_heads-,cherishedworlds-,cirback-1.0-,citresewn-,classicbar-,clickadv-,clienttweaks-,combat_music-,configured-fabric-,configured-forge-,configured-neoforge-,connectedness-,controllable-,crash_assistant-,cullleaves-,cullparticles-,custom-crosshair-mod-,customdiscordrpc-,darkness-,dashloader-,defaultoptions-,desiredservers-,discordrpc-,drippyloadingscreen-,drippyloadingscreen_,durabilitytooltip-,dynamic-fps-,dynamic-music-,dynamiclights-,dynamiclightsreforged-,dynmus-,e4mc-,effective-,eggtab-,eguilib-,eiramoticons-,embeddium-,enchantment-lore-,entity-texture-features-,entityculling-,essential_,exhaustedstamina-,extremesoundmuffler-,fabricemotes-,fancymenu_,fancymenu_video_extension,fast-ip-ping-,firstperson-,flerovium-,flickerfix-,fm_audio_extension_,fabricmod_VoxelMap-,forgemod_VoxelMap-,freecam-,freelook-,galacticraft-rpc-,gamestagesviewer-,gpumemleakfix-,grid-,helium-,hiddenrecipebook_,hiddenrecipebook-,ijmtweaks-,immersivemessages-,immersivetips-,infinitemusic-,inventoryhud.,inventoryprofiles,invtweaks-,itemzoom,itlt-,jeed-,jehc-,jeiintegration_,jumpoverfences-,just-enough-harvestcraft-,justenoughbeacons-,justenoughdrags-,justzoom_,keymap-,keywizard-,lazurite-,lazydfu-,lib39-,light-overlay-,lightfallclient-,lightspeed-,loadmyresources_,lock_minecart_view-,lootbeams-,lwl-,macos-input-fixes-,magnesium_extras-,maptooltip-,massunbind,mcbindtype-,mcwifipnp-,medievalmusic-,memoryusagescreen-,mightyarchitect-,mindful-eating-,minetogether-,mobplusplus-,modcredits-,modernworldcreation_,modnametooltip-,modnametooltip_,moreoverlays-,mousewheelie-,movement-vision-,multihotbar-,music-duration-reducer-,musicdr-,neiRecipeHandlers-,ngrok-lan-expose-mod-,no_nv_flash-,nopotionshift_,notenoughanimations-,oculus-,ornaments-,overloadedarmorbar-,panorama-,paperdoll-,physics-mod-,phosphor-,preciseblockplacing-,radon-,realm-of-lost-souls-,rebind_narrator-,rebind-narrator-,rebindnarrator-,rebrand-,reforgium-,relictium-,replanter-,rrls-,rubidium-,rubidium_extras-,screenshot-to-clipboard-,servercountryflags-,shutupexperimentalsettings-,shutupmodelloader-,signtools-,simple-rpc-,simpleautorun-,smartcursor-,smarthud-,smoothboot-,smoothfocus-,sodium-fabric-,sodiumoptionsapi-,sodiumdynamiclights-,sodiumleafculling-,sodiumoptionsmodcompat-,sounddeviceoptions-,soundreloader-,spoticraft-,skinlayers3d-forge,textrues_embeddium_options-,tconplanner-,timestamps-,tooltipscroller-,torchoptimizer-,torohealth-,totaldarkness,toughnessbar-,watermedia-,whats-that-slot-forge-,wisla-,xenon-,xlifeheartcolors-,yisthereautojump- de.griefed.serverpackcreator.configuration.fallbackmodslist=3dskinlayers-,Absolutely-Not-A-Zoom-Mod-,AdvancedChat-,AdvancedChatCore-,AdvancedChatHUD-,AdvancedCompas-,Ambience,AmbientEnvironment-,AmbientSounds_,AnimaticaReforged-,AreYouBlind-,Armor Status HUD-,ArmorSoundTweak-,BH-Menu-,Batty's Coordinates PLUS Mod,BetterAdvancements-,BetterAnimationsCollection-,BetterModsButton-,BetterDarkMode-,BetterF3-,BetterFog-,BetterFoliage-,BetterGrassify-,BetterPingDisplay-,BetterPlacement-,BetterTaskbar-,BetterThirdPerson,BetterTitleScreen-,Blur-,BoccHUD-,BorderlessWindow-,CTM-,Chat Ping ,CheatDetector-,ChunkAnimator-,Clear-Water-,ClientTweaks_,CompletionistsIndex-,Controller Support-,Controlling-,CraftPresence-,CullLessLeaves-,CustomCursorMod-,CustomMainMenu-,DefaultOptions_,DefaultSettings-,DeleteWorldsToTrash-,DetailArmorBar-,Ding-,DistantHorizons-,DripSounds-,Durability101-,DurabilityNotifier-,DynamicSurroundings-,DynamicSurroundingsHuds-,EasyLAN-,EffectsLeft-,EiraMoticons_,EnchantmentDescriptions-,EnhancedVisuals_,EquipmentCompare-,EuphoriaPatcher-,FPS-Monitor-,FabricCustomCursorMod-,FadingNightVision-,Fallingleaves-,FancySpawnEggs,FancyVideo-API-,farsight-,FirstPersonMod,FogTweaker-,ForgeCustomCursorMod-,FpsReducer-,FpsReducer2-,FullscreenWindowed-,GameMenuModOption-,HealthOverlay-,HeldItemTooltips-,HorseStatsMod-,ImmediatelyFast-,ImmediatelyFastReforged-,InventoryEssentials_,InventoryHud_,InventorySpam-,InventoryTweaks-,ItemBorders-,ItemLocks-,ItemPhysicLite_,ItemStitchingFix-,JBRA-Client-,JustEnoughCalculation-,JustEnoughEffects-,JustEnoughProfessions-,KeepTheResourcePack-,LeaveMyBarsAlone-,LLOverlayReloaded-,LOTRDRP-,LegendaryTooltips,LegendaryTooltips-,LightOverlay-,MaFgLib-,MinecraftCapes,MineMenu-,MoBends,ModernUI-,MouseTweaks-,MyServerIsCompatible-,Neat,Neat-,NekosEnchantedBooks-,NoAutoJump-,NoFog-,Notes-,NotifMod-,OldJavaWarning-,OptiFine,OptiFine_,OptiForge,OptiForge-,OverflowingBars-,PackMenu-,PackModeMenu-,PickUpNotifier-,Ping-,PingHUD-,PresenceFootsteps-,RPG-HUD-,ReAuth-,Reforgium-,ResourceLoader-,ResourcePackOrganizer,Ryoamiclights-,RyoamicLights-,ShoulderSurfing-,ShulkerTooltip-,SimpleDiscordRichPresence-,SimpleWorldTimer-,SoundFilters-,Sounds-,SpawnerFix-,StylishEffects-,TextruesRubidiumOptions-,TRansliterationLib-,TipTheScales-,Tips-,Toast Control-,Toast-Control-,ToastControl-,TravelersTitles-,VoidFog-,VR-Combat_,WindowedFullscreen-,WorldNameRandomizer-,YeetusExperimentus-,YungsMenuTweaks-,[1.12.2]DamageIndicatorsMod-,[1.12.2]bspkrscore-,antighost-,anviltooltipmod-,armorchroma-,armorpointspp-,auditory-,authme-,auto-reconnect-,autojoin-,autoreconnect-,axolotl-item-fix-,backtools-,bannerunlimited-,beddium-,beenfo-,better-clouds-,better-recipe-book-,betterbiomeblend-,bhmenu-,blinkload-,blur-,borderless-mining-,cat_jam-,catalogue-,cave_dust-,cfwinfo-,chestsearchbar-,citresewn-,charmonium-,chat_heads-,cherishedworlds-,cirback-1.0-,citresewn-,classicbar-,clienttweaks-,combat_music-,configured-fabric-,configured-forge-,configured-neoforge-,connectedness-,controllable-,crash_assistant-,cullleaves-,cullparticles-,custom-crosshair-mod-,customdiscordrpc-,darkness-,dashloader-,defaultoptions-,desiredservers-,discordrpc-,drippyloadingscreen-,drippyloadingscreen_,durabilitytooltip-,dynamic-fps-,dynamic-music-,dynamiclights-,dynamiclightsreforged-,dynmus-,e4mc-,effective-,eggtab-,eguilib-,eiramoticons-,embeddium-,enchantment-lore-,entity-texture-features-,entityculling-,essential_,exhaustedstamina-,extremesoundmuffler-,fabricemotes-,fancymenu_,fancymenu_video_extension,fast-ip-ping-,firstperson-,flerovium-,flickerfix-,fm_audio_extension_,fabricmod_VoxelMap-,forgemod_VoxelMap-,freecam-,freelook-,ftbpromoter-,galacticraft-rpc-,gamestagesviewer-,gpumemleakfix-,grid-,helium-,hiddenrecipebook_,hiddenrecipebook-,ijmtweaks-,immersivemessages-,immersivetips-,infinitemusic-,inventoryhud.,inventoryprofiles,invtweaks-,itemzoom,itlt-,jeed-,jehc-,jeiintegration_,jumpoverfences-,just-enough-harvestcraft-,justenoughbeacons-,justenoughdrags-,justzoom_,keymap-,keywizard-,lazurite-,lazydfu-,lib39-,light-overlay-,lightfallclient-,lightspeed-,loadmyresources_,lock_minecart_view-,lootbeams-,lwl-,macos-input-fixes-,magnesium_extras-,maptooltip-,massunbind,mcbindtype-,mcwifipnp-,medievalmusic-,memoryusagescreen-,mightyarchitect-,mindful-eating-,minetogether-,mobplusplus-,modcredits-,modernworldcreation_,modnametooltip-,modnametooltip_,moreoverlays-,mousewheelie-,movement-vision-,multihotbar-,music-duration-reducer-,musicdr-,neiRecipeHandlers-,ngrok-lan-expose-mod-,no_nv_flash-,nopotionshift_,notenoughanimations-,oculus-,ornaments-,overloadedarmorbar-,panorama-,paperdoll-,physics-mod-,phosphor-,preciseblockplacing-,radon-,realm-of-lost-souls-,rebind_narrator-,rebind-narrator-,rebindnarrator-,rebrand-,reforgium-,relictium-,replanter-,rrls-,rubidium-,rubidium_extras-,screenshot-to-clipboard-,servercountryflags-,shutupexperimentalsettings-,shutupmodelloader-,signtools-,simple-rpc-,simpleautorun-,smartcursor-,smarthud-,smoothboot-,smoothfocus-,sodium-fabric-,sodium-shader-support-,sodiumcoreshadersupport-,sodiumoptionsapi-,sodiumdynamiclights-,sodiumleafculling-,sodiumoptionsmodcompat-,sounddeviceoptions-,soundreloader-,spoticraft-,skinlayers3d-forge,textrues_embeddium_options-,tconplanner-,timestamps-,tooltipscroller-,torchoptimizer-,torohealth-,totaldarkness,toughnessbar-,watermedia-,whats-that-slot-forge-,wisla-,xenon-,xlifeheartcolors-,yisthereautojump-
de.griefed.serverpackcreator.configuration.modswhitelist=Ping-Wheel- de.griefed.serverpackcreator.configuration.modswhitelist=Ping-Wheel-,appleskin-
de.griefed.serverpackcreator.configuration.hastebinserver=https://haste.zneix.eu/documents de.griefed.serverpackcreator.configuration.hastebinserver=https://haste.zneix.eu/documents
de.griefed.serverpackcreator.configuration.aikar=-Xms4G -Xmx4G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1 -Dusing.aikars.flags=https://mcflags.emc.gs -Daikars.new.flags=true de.griefed.serverpackcreator.configuration.aikar=-Xms4G -Xmx4G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1 -Dusing.aikars.flags=https://mcflags.emc.gs -Daikars.new.flags=true
de.griefed.serverpackcreator.serverpack.autodiscovery.enabled=true de.griefed.serverpackcreator.serverpack.autodiscovery.enabled=true
......
#For details about each property, see https://help.serverpackcreator.de/settings-and-configs.html #For details about each property, see https://help.serverpackcreator.de/settings-and-configs.html
#Sun Sep 22 18:07:44 CEST 2024 #Tue Feb 11 21:25:30 CET 2025
de.griefed.serverpackcreator.configuration.aikar=-Xms4G -Xmx4G -XX\:+UseG1GC -XX\:+ParallelRefProcEnabled -XX\:MaxGCPauseMillis\=200 -XX\:+UnlockExperimentalVMOptions -XX\:+DisableExplicitGC -XX\:+AlwaysPreTouch -XX\:G1NewSizePercent\=30 -XX\:G1MaxNewSizePercent\=40 -XX\:G1HeapRegionSize\=8M -XX\:G1ReservePercent\=20 -XX\:G1HeapWastePercent\=5 -XX\:G1MixedGCCountTarget\=4 -XX\:InitiatingHeapOccupancyPercent\=15 -XX\:G1MixedGCLiveThresholdPercent\=90 -XX\:G1RSetUpdatingPauseTimePercent\=5 -XX\:SurvivorRatio\=32 -XX\:+PerfDisableSharedMem -XX\:MaxTenuringThreshold\=1 -Dusing.aikars.flags\=https\://mcflags.emc.gs -Daikars.new.flags\=true de.griefed.serverpackcreator.configuration.aikar=-Xms4G -Xmx4G -XX\:+UseG1GC -XX\:+ParallelRefProcEnabled -XX\:MaxGCPauseMillis\=200 -XX\:+UnlockExperimentalVMOptions -XX\:+DisableExplicitGC -XX\:+AlwaysPreTouch -XX\:G1NewSizePercent\=30 -XX\:G1MaxNewSizePercent\=40 -XX\:G1HeapRegionSize\=8M -XX\:G1ReservePercent\=20 -XX\:G1HeapWastePercent\=5 -XX\:G1MixedGCCountTarget\=4 -XX\:InitiatingHeapOccupancyPercent\=15 -XX\:G1MixedGCLiveThresholdPercent\=90 -XX\:G1RSetUpdatingPauseTimePercent\=5 -XX\:SurvivorRatio\=32 -XX\:+PerfDisableSharedMem -XX\:MaxTenuringThreshold\=1 -Dusing.aikars.flags\=https\://mcflags.emc.gs -Daikars.new.flags\=true
de.griefed.serverpackcreator.configuration.directories.mustinclude=mods,config,kubejs,defaultconfigs,scripts de.griefed.serverpackcreator.configuration.directories.mustinclude=mods,config,kubejs,defaultconfigs,scripts
de.griefed.serverpackcreator.configuration.directories.shouldexclude=overrides,packmenu,resourcepacks,server_pack,fancymenu,libraries,downloads,logs,profileImage,resourcepacks,screenshots,shaderpacks,tv-cache,asm de.griefed.serverpackcreator.configuration.directories.shouldexclude=overrides,packmenu,resourcepacks,server_pack,fancymenu,libraries,downloads,logs,profileImage,resourcepacks,screenshots,shaderpacks,tv-cache,asm
de.griefed.serverpackcreator.configuration.fallback.updateurl=https\://raw.githubusercontent.com/Griefed/ServerPackCreator/main/serverpackcreator-api/src/main/resources/serverpackcreator.properties de.griefed.serverpackcreator.configuration.fallback.updateurl=https\://raw.githubusercontent.com/Griefed/ServerPackCreator/main/serverpackcreator-api/src/main/resources/serverpackcreator.properties
de.griefed.serverpackcreator.configuration.fallbackmodslist=3dskinlayers-,Absolutely-Not-A-Zoom-Mod-,AdvancedChat-,AdvancedChatCore-,AdvancedChatHUD-,AdvancedCompas-,Ambience,AmbientEnvironment-,AmbientSounds_,AnimaticaReforged-,AreYouBlind-,Armor Status HUD-,ArmorSoundTweak-,BH-Menu-,Batty's Coordinates PLUS Mod,BetterAdvancements-,BetterAnimationsCollection-,BetterDarkMode-,BetterF3-,BetterFog-,BetterFoliage-,BetterModsButton-,BetterPingDisplay-,BetterPlacement-,BetterTaskbar-,BetterThirdPerson,BetterTitleScreen-,Blur-,BorderlessWindow-,CTM-,Chat Ping ,ChunkAnimator-,Clear-Water-,ClientTweaks_,CompletionistsIndex-,Controller Support-,Controlling-,CraftPresence-,CullLessLeaves-,CustomCursorMod-,CustomMainMenu-,DefaultOptions_,DefaultSettings-,DeleteWorldsToTrash-,DetailArmorBar-,Ding-,DistantHorizons-,DripSounds-,Durability101-,DurabilityNotifier-,DynamicSurroundings-,DynamicSurroundingsHuds-,EasyLAN-,EffectsLeft-,EiraMoticons_,EnchantmentDescriptions-,EnhancedVisuals_,EquipmentCompare-,EuphoriaPatcher-,FPS-Monitor-,FabricCustomCursorMod-,FadingNightVision-,Fallingleaves-,FancySpawnEggs,FancyVideo-API-,FirstPersonMod,FogTweaker-,ForgeCustomCursorMod-,FpsReducer-,FpsReducer2-,FullscreenWindowed-,GameMenuModOption-,HealthOverlay-,HeldItemTooltips-,HorseStatsMod-,ImmediatelyFast-,ImmediatelyFastReforged-,InventoryEssentials_,InventoryHud_,InventorySpam-,InventoryTweaks-,ItemBorders-,ItemLocks-,ItemPhysicLite_,ItemStitchingFix-,JBRA-Client-,JustEnoughCalculation-,JustEnoughEffects-,JustEnoughProfessions-,LLOverlayReloaded-,LOTRDRP-,LeaveMyBarsAlone-,LegendaryTooltips,LegendaryTooltips-,LightOverlay-,MineMenu-,MinecraftCapes,MinecraftCapes ,MoBends,ModernUI-,MouseTweaks-,MyServerIsCompatible-,Neat,Neat ,Neat-,NekosEnchantedBooks-,NoAutoJump-,NoFog-,Notes-,NotifMod-,OldJavaWarning-,OptiFine,OptiFine_,OptiForge,OptiForge-,OverflowingBars-,PackMenu-,PackModeMenu-,PickUpNotifier-,Ping-,PingHUD-,PresenceFootsteps-,RPG-HUD-,ReAuth-,Reforgium-,ResourceLoader-,ResourcePackOrganizer,RyoamicLights-,Ryoamiclights-,ShoulderSurfing-,ShulkerTooltip-,SimpleDiscordRichPresence-,SimpleWorldTimer-,SoundFilters-,SpawnerFix-,StylishEffects-,TRansliterationLib-,TextruesRubidiumOptions-,TipTheScales-,Tips-,Toast Control-,Toast-Control-,ToastControl-,TravelersTitles-,VR-Combat_,VoidFog-,WindowedFullscreen-,WorldNameRandomizer-,YeetusExperimentus-,YungsMenuTweaks-,[1.12.2]DamageIndicatorsMod-,[1.12.2]bspkrscore-,antighost-,anviltooltipmod-,armorchroma-,armorpointspp-,auditory-,authme-,auto-reconnect-,autojoin-,autoreconnect-,axolotl-item-fix-,backtools-,bannerunlimited-,beenfo-,better-clouds-,better-recipe-book-,betterbiomeblend-,bhmenu-,blur-,borderless-mining-,cat_jam-,catalogue-,cfwinfo-,charmonium-,chat_heads-,cherishedworlds-,cirback-1.0-,classicbar-,clickadv-,clienttweaks-,combat_music-,connectedness-,controllable-,cullleaves-,cullparticles-,custom-crosshair-mod-,customdiscordrpc-,darkness-,dashloader-,defaultoptions-,desiredservers-,discordrpc-,drippyloadingscreen-,drippyloadingscreen_,durabilitytooltip-,dynamic-fps-,dynamic-music-,dynamiclights-,dynamiclightsreforged-,dynmus-,e4mc-,effective-,eggtab-,eguilib-,eiramoticons-,embeddium-,enchantment-lore-,entity-texture-features-,entityculling-,essential_,exhaustedstamina-,extremesoundmuffler-,fabricemotes-,fabricmod_VoxelMap-,fancymenu_,fancymenu_video_extension,farsight-,fast-ip-ping-,firstperson-,flickerfix-,fm_audio_extension_,forgemod_VoxelMap-,freecam-,freelook-,galacticraft-rpc-,gamestagesviewer-,gpumemleakfix-,grid-,helium-,hiddenrecipebook-,hiddenrecipebook_,infinitemusic-,inventoryhud.,inventoryprofiles,invtweaks-,itemzoom,itlt-,jeed-,jehc-,jeiintegration_,jumpoverfences-,just-enough-harvestcraft-,justenoughbeacons-,justenoughdrags-,justzoom_,keymap-,keywizard-,lazurite-,lazydfu-,lib39-,light-overlay-,lightfallclient-,lightspeed-,loadmyresources_,lock_minecart_view-,lootbeams-,lwl-,macos-input-fixes-,magnesium_extras-,maptooltip-,massunbind,mcbindtype-,mcwifipnp-,medievalmusic-,memoryusagescreen-,mightyarchitect-,mindful-eating-,minetogether-,mobplusplus-,modcredits-,modernworldcreation_,modnametooltip-,modnametooltip_,moreoverlays-,mousewheelie-,movement-vision-,multihotbar-,music-duration-reducer-,musicdr-,neiRecipeHandlers-,ngrok-lan-expose-mod-,no_nv_flash-,nopotionshift_,notenoughanimations-,oculus-,ornaments-,overloadedarmorbar-,panorama-,paperdoll-,phosphor-,physics-mod-,preciseblockplacing-,radon-,realm-of-lost-souls-,rebind-narrator-,rebind_narrator-,rebindnarrator-,rebrand-,reforgium-,replanter-,rrls-,rubidium-,rubidium_extras-,screenshot-to-clipboard-,servercountryflags-,shutupexperimentalsettings-,shutupmodelloader-,signtools-,simple-rpc-,simpleautorun-,skinlayers3d-forge,smartcursor-,smarthud-,smoothboot-,smoothfocus-,sodium-fabric-,sodiumdynamiclights-,sounddeviceoptions-,soundreloader-,spoticraft-,tconplanner-,textrues_embeddium_options-,timestamps-,tooltipscroller-,torchoptimizer-,torohealth-,totaldarkness,toughnessbar-,watermedia-,whats-that-slot-forge-,wisla-,xenon-,xlifeheartcolors-,yisthereautojump- de.griefed.serverpackcreator.configuration.fallbackmodslist=3dskinlayers-,Absolutely-Not-A-Zoom-Mod-,AdvancedChat-,AdvancedChatCore-,AdvancedChatHUD-,AdvancedCompas-,Ambience,AmbientEnvironment-,AmbientSounds_,AnimaticaReforged-,AreYouBlind-,Armor Status HUD-,ArmorSoundTweak-,BH-Menu-,Batty's Coordinates PLUS Mod,BetterAdvancements-,BetterAnimationsCollection-,BetterDarkMode-,BetterF3-,BetterFog-,BetterFoliage-,BetterGrassify-,BetterModsButton-,BetterPingDisplay-,BetterPlacement-,BetterTaskbar-,BetterThirdPerson,BetterTitleScreen-,Blur-,BoccHUD-,BorderlessWindow-,CTM-,Chat Ping ,CheatDetector-,ChunkAnimator-,Clear-Water-,ClientTweaks_,CompletionistsIndex-,Controller Support-,Controlling-,CraftPresence-,CullLessLeaves-,CustomCursorMod-,CustomMainMenu-,DefaultOptions_,DefaultSettings-,DeleteWorldsToTrash-,DetailArmorBar-,Ding-,DistantHorizons-,DripSounds-,Durability101-,DurabilityNotifier-,DynamicSurroundings-,DynamicSurroundingsHuds-,EasyLAN-,EffectsLeft-,EiraMoticons_,EnchantmentDescriptions-,EnhancedVisuals_,EquipmentCompare-,EuphoriaPatcher-,FPS-Monitor-,FabricCustomCursorMod-,FadingNightVision-,Fallingleaves-,FancySpawnEggs,FancyVideo-API-,FirstPersonMod,FogTweaker-,ForgeCustomCursorMod-,Forgematica-,FpsReducer-,FpsReducer2-,FullscreenWindowed-,GameMenuModOption-,HealthOverlay-,HeldItemTooltips-,HorseStatsMod-,ImmediatelyFast-,ImmediatelyFastReforged-,InventoryEssentials_,InventoryHud_,InventorySpam-,InventoryTweaks-,ItemBorders-,ItemLocks-,ItemPhysicLite_,ItemStitchingFix-,JBRA-Client-,JustEnoughCalculation-,JustEnoughEffects-,JustEnoughProfessions-,KeepTheResourcePack-,LLOverlayReloaded-,LOTRDRP-,LeaveMyBarsAlone-,LegendaryTooltips,LegendaryTooltips-,LightOverlay-,MaFgLib-,MineMenu-,MinecraftCapes,MinecraftCapes ,MoBends,ModernUI-,MouseTweaks-,MyServerIsCompatible-,Neat,Neat ,Neat-,NekosEnchantedBooks-,NoAutoJump-,NoFog-,Notes-,NotifMod-,OldJavaWarning-,OptiFine,OptiFine_,OptiForge,OptiForge-,OverflowingBars-,PackMenu-,PackModeMenu-,PickUpNotifier-,Ping-,PingHUD-,PresenceFootsteps-,RPG-HUD-,ReAuth-,Reforgium-,ResourceLoader-,ResourcePackOrganizer,RyoamicLights-,Ryoamiclights-,ShoulderSurfing-,ShulkerTooltip-,SimpleDiscordRichPresence-,SimpleWorldTimer-,SoundFilters-,Sounds-,SpawnerFix-,StylishEffects-,TRansliterationLib-,TextruesRubidiumOptions-,TipTheScales-,Tips-,Toast Control-,Toast-Control-,ToastControl-,TravelersTitles-,VR-Combat_,VoidFog-,WindowedFullscreen-,WorldNameRandomizer-,YeetusExperimentus-,YungsMenuTweaks-,[1.12.2]DamageIndicatorsMod-,[1.12.2]bspkrscore-,ahznbstools-,antighost-,anviltooltipmod-,armorchroma-,armorpointspp-,auditory-,authme-,auto-reconnect-,autojoin-,autoreconnect-,axolotl-item-fix-,backtools-,bannerunlimited-,beddium-,beenfo-,better-clouds-,better-recipe-book-,betterbiomeblend-,bhmenu-,blinkload-,blur-,borderless-mining-,cat_jam-,catalogue-,cave_dust-,cfwinfo-,charmonium-,chat_heads-,cherishedworlds-,chestsearchbar-,cirback-1.0-,citresewn-,classicbar-,clickadv-,clienttweaks-,combat_music-,configured-fabric-,configured-forge-,configured-neoforge-,connectedness-,controllable-,crash_assistant-,cullleaves-,cullparticles-,custom-crosshair-mod-,customdiscordrpc-,darkness-,dashloader-,defaultoptions-,desiredservers-,discordrpc-,drippyloadingscreen-,drippyloadingscreen_,durabilitytooltip-,dynamic-fps-,dynamic-music-,dynamiclights-,dynamiclightsreforged-,dynmus-,e4mc-,effective-,eggtab-,eguilib-,eiramoticons-,embeddium-,enchantment-lore-,entity-texture-features-,entityculling-,essential_,exhaustedstamina-,extremesoundmuffler-,fabricemotes-,fabricmod_VoxelMap-,fancymenu_,fancymenu_video_extension,farsight-,fast-ip-ping-,firstperson-,flerovium-,flickerfix-,fm_audio_extension_,forgemod_VoxelMap-,freecam-,freelook-,galacticraft-rpc-,gamestagesviewer-,gpumemleakfix-,grid-,helium-,hiddenrecipebook-,hiddenrecipebook_,ijmtweaks-,immersivemessages-,immersivetips-,infinitemusic-,inventoryhud.,inventoryprofiles,invtweaks-,itemzoom,itlt-,jeed-,jehc-,jeiintegration_,jumpoverfences-,just-enough-harvestcraft-,justenoughbeacons-,justenoughdrags-,justzoom_,keymap-,keywizard-,lazurite-,lazydfu-,lib39-,light-overlay-,lightfallclient-,lightspeed-,loadmyresources_,lock_minecart_view-,lootbeams-,lwl-,macos-input-fixes-,magnesium_extras-,maptooltip-,massunbind,mcbindtype-,mcwifipnp-,medievalmusic-,memoryusagescreen-,mightyarchitect-,mindful-eating-,minetogether-,mobplusplus-,modcredits-,modernworldcreation_,modnametooltip-,modnametooltip_,moreoverlays-,mousewheelie-,movement-vision-,multihotbar-,music-duration-reducer-,musicdr-,neiRecipeHandlers-,ngrok-lan-expose-mod-,no_nv_flash-,nopotionshift_,notenoughanimations-,oculus-,ornaments-,overloadedarmorbar-,panorama-,paperdoll-,phosphor-,physics-mod-,preciseblockplacing-,radon-,realm-of-lost-souls-,rebind-narrator-,rebind_narrator-,rebindnarrator-,rebrand-,reforgium-,relictium-,replanter-,rrls-,rubidium-,rubidium_extras-,screenshot-to-clipboard-,servercountryflags-,shutupexperimentalsettings-,shutupmodelloader-,signtools-,simple-rpc-,simpleautorun-,skinlayers3d-forge,smartcursor-,smarthud-,smoothboot-,smoothfocus-,sodium-fabric-,sodium-shader-support-,sodiumcoreshadersupport-,sodiumdynamiclights-,sodiumleafculling-,sodiumoptionsapi-,sodiumoptionsmodcompat-,sounddeviceoptions-,soundreloader-,spoticraft-,tconplanner-,textrues_embeddium_options-,timestamps-,tooltipscroller-,torchoptimizer-,torohealth-,totaldarkness,toughnessbar-,watermedia-,whats-that-slot-forge-,wisla-,xenon-,xlifeheartcolors-,yisthereautojump-
de.griefed.serverpackcreator.configuration.hastebinserver=https\://haste.zneix.eu/documents de.griefed.serverpackcreator.configuration.hastebinserver=https\://haste.zneix.eu/documents
de.griefed.serverpackcreator.configuration.modswhitelist=Ping-Wheel- de.griefed.serverpackcreator.configuration.modswhitelist=Ping-Wheel-,appleskin-
de.griefed.serverpackcreator.firstrun=false de.griefed.serverpackcreator.firstrun=false
de.griefed.serverpackcreator.java=C\:\\Program Files\\Eclipse Adoptium\\jdk-21.0.3.9-hotspot\\bin\\java.exe de.griefed.serverpackcreator.java=C\:\\Program Files\\Eclipse Adoptium\\jdk-21.0.3.9-hotspot\\bin\\java.exe
de.griefed.serverpackcreator.language=en_GB de.griefed.serverpackcreator.language=en_GB
......
...@@ -500,7 +500,7 @@ URL: https://www.apache.org/licenses/LICENSE-2.0 ...@@ -500,7 +500,7 @@ URL: https://www.apache.org/licenses/LICENSE-2.0
(2 of 42) (2 of 42)
Group: com.electronwill.night-config Group: com.electronwill.night-config
Name: toml Name: toml
Version: 3.7.2 Version: 3.8.1
POM Project URL: https://github.com/TheElectronWill/night-config POM Project URL: https://github.com/TheElectronWill/night-config
...@@ -2633,7 +2633,7 @@ Embedded license: ...@@ -2633,7 +2633,7 @@ Embedded license:
(11 of 42) (11 of 42)
Group: com.formdev Group: com.formdev
Name: flatlaf-intellij-themes Name: flatlaf-intellij-themes
Version: 3.5.2 Version: 3.5.4
POM Project URL: https://github.com/JFormDesigner/FlatLaf POM Project URL: https://github.com/JFormDesigner/FlatLaf
...@@ -2925,7 +2925,7 @@ URL: https://opensource.org/licenses/0BSD ...@@ -2925,7 +2925,7 @@ URL: https://opensource.org/licenses/0BSD
(16 of 42) (16 of 42)
Group: commons-io Group: commons-io
Name: commons-io Name: commons-io
Version: 2.16.1 Version: 2.18.0
Project URL: https://commons.apache.org/proper/commons-io/\n\n Project URL: https://commons.apache.org/proper/commons-io/\n\n
Manifest license URL: https://www.apache.org/licenses/LICENSE-2.0 Manifest license URL: https://www.apache.org/licenses/LICENSE-2.0
...@@ -3523,7 +3523,7 @@ The Apache Software Foundation (http://www.apache.org/). ...@@ -3523,7 +3523,7 @@ The Apache Software Foundation (http://www.apache.org/).
(25 of 42) (25 of 42)
Group: org.apache.logging.log4j Group: org.apache.logging.log4j
Name: log4j-core Name: log4j-core
Version: 2.24.2 Version: 2.24.3
Manifest license URL: https://www.apache.org/licenses/LICENSE-2.0 Manifest license URL: https://www.apache.org/licenses/LICENSE-2.0
...@@ -3910,7 +3910,7 @@ URL: https://www.apache.org/licenses/LICENSE-2.0 ...@@ -3910,7 +3910,7 @@ URL: https://www.apache.org/licenses/LICENSE-2.0
(33 of 42) (33 of 42)
Group: org.jetbrains.kotlinx Group: org.jetbrains.kotlinx
Name: kotlinx-coroutines-core Name: kotlinx-coroutines-core
Version: 1.8.1 Version: 1.10.1
POM Project URL: https://github.com/Kotlin/kotlinx.coroutines POM Project URL: https://github.com/Kotlin/kotlinx.coroutines
...@@ -4364,7 +4364,7 @@ the License. ...@@ -4364,7 +4364,7 @@ the License.
(39 of 42) (39 of 42)
Group: org.springframework.boot Group: org.springframework.boot
Name: spring-boot-starter-data-jpa Name: spring-boot-starter-data-jpa
Version: 3.3.5 Version: 3.4.1
POM Project URL: https://spring.io/projects/spring-boot POM Project URL: https://spring.io/projects/spring-boot
...@@ -4577,7 +4577,7 @@ Embedded license: ...@@ -4577,7 +4577,7 @@ Embedded license:
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
Spring Boot 3.3.5 Spring Boot 3.4.1
Copyright (c) 2012-2024 VMware, Inc. Copyright (c) 2012-2024 VMware, Inc.
This product is licensed to you under the Apache License, Version 2.0 This product is licensed to you under the Apache License, Version 2.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment