diff --git a/.gitignore b/.gitignore index ec332ffdd9c5b0c9ca14905457f5b2fc954620c3..ac8c06a4fb99a2e41af14a9233974a40bb663a5f 100644 --- a/.gitignore +++ b/.gitignore @@ -155,6 +155,7 @@ replay_pid* # General .AppleDouble .LSOverride +.DS_Store # Icon must end with two \r Icon @@ -370,6 +371,7 @@ serverpackcreator-web-frontend/.quasar/ serverpackcreator-web-frontend/dist/ serverpackcreator-web-frontend/node_modules/ serverpackcreator-web-frontend/node/ +serverpackcreator-web-frontend/.frontend-gradle-plugin serverpackcreator-app/serverpackcreator.db docker-compose-dev.yml diff --git a/buildSrc/src/main/kotlin/serverpackcreator.quasar-conventions.gradle.kts b/buildSrc/src/main/kotlin/serverpackcreator.quasar-conventions.gradle.kts index 5fea080b6e23cdc76ab326bf0cbaeaeb9eb8247b..e52e5b71685e1bdccc2d90ad472ce6d6005b27f0 100644 --- a/buildSrc/src/main/kotlin/serverpackcreator.quasar-conventions.gradle.kts +++ b/buildSrc/src/main/kotlin/serverpackcreator.quasar-conventions.gradle.kts @@ -1,4 +1,4 @@ -import org.siouan.frontendgradleplugin.infrastructure.gradle.RunNpm +import org.siouan.frontendgradleplugin.infrastructure.gradle.RunNpmTaskType plugins { id("org.siouan.frontend-jdk21") @@ -11,27 +11,26 @@ repositories { frontend { packageJsonDirectory.set(project.layout.projectDirectory.asFile) - nodeVersion.set("18.20.2") + nodeVersion.set("20.18.3") nodeInstallDirectory.set(project.layout.projectDirectory.dir("node")) - cleanScript.set("run clean") assembleScript.set("run build") // Print the architecture we are running on. 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) } -tasks.register("installQuasar", RunNpm::class) { - script.set("install -g @quasar/cli") +tasks.register("installQuasar", RunNpmTaskType::class) { + 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( diff --git a/libs.versions.toml b/libs.versions.toml index 4f216a14e1e012d7d2e43b1dbf4c934e734c5b4d..31ad73af4e1d232929535df931d583fe6d371d45 100644 --- a/libs.versions.toml +++ b/libs.versions.toml @@ -22,7 +22,7 @@ dokka = "1.9.20" licenseReport = "2.9" # 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 install4j = "11.0.0.1" diff --git a/serverpackcreator-api/src/main/kotlin/de/griefed/serverpackcreator/api/ApiProperties.kt b/serverpackcreator-api/src/main/kotlin/de/griefed/serverpackcreator/api/ApiProperties.kt index 9d63aefbe9f64c61e29b33bf8c3c21f7d74de8a3..def9f23d4c1176722a624a537f2b05e16a6f8156 100644 --- a/serverpackcreator-api/src/main/kotlin/de/griefed/serverpackcreator/api/ApiProperties.kt +++ b/serverpackcreator-api/src/main/kotlin/de/griefed/serverpackcreator/api/ApiProperties.kt @@ -148,7 +148,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) private var fallbackModsWhitelist = TreeSet( listOf( - "Ping-Wheel-" + "Ping-Wheel-", + "appleskin-" ) ) @@ -177,17 +178,16 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) "BetterF3-", //https://www.curseforge.com/minecraft/mc-mods/betterf3 "BetterFog-", //https://www.curseforge.com/minecraft/mc-mods/better-fog "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 "BetterPlacement-", //https://www.curseforge.com/minecraft/mc-mods/better-placement "BetterTaskbar-", //https://www.curseforge.com/minecraft/mc-mods/better-taskbar "BetterThirdPerson", //https://www.curseforge.com/minecraft/mc-mods/better-third-person "BetterTitleScreen-", //https://www.curseforge.com/minecraft/mc-mods/better-title-screen "Blur-", //https://www.curseforge.com/minecraft/mc-mods/blur + "BoccHUD-", //https://modrinth.com/mod/bocchud/ "BorderlessWindow-", //https://www.curseforge.com/minecraft/mc-mods/borderless "CTM-", //https://www.curseforge.com/minecraft/mc-mods/ctm "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 "Clear-Water-", //https://www.curseforge.com/minecraft/mc-mods/clear-water "ClientTweaks_", //https://www.curseforge.com/minecraft/mc-mods/client-tweaks @@ -226,6 +226,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) "FirstPersonMod", //https://www.curseforge.com/minecraft/mc-mods/first-person-model "FogTweaker-", //https://www.curseforge.com/minecraft/mc-mods/fog-tweaker "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 "FpsReducer2-", //https://www.curseforge.com/minecraft/mc-mods/fps-reducer "FullscreenWindowed-", //https://www.curseforge.com/minecraft/mc-mods/fullscreen-windowed-borderless-for-minecraft @@ -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 "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 "MineMenu-", //https://www.curseforge.com/minecraft/mc-mods/minemenu "MoBends", //https://www.curseforge.com/minecraft/mc-mods/mo-bends @@ -310,6 +312,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) "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]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 "anviltooltipmod-", //https://www.curseforge.com/minecraft/mc-mods/anvil-tooltip-mod "armorchroma-", //https://www.curseforge.com/minecraft/mc-mods/armor-chroma @@ -335,13 +338,13 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) "catalogue-", //https://www.curseforge.com/minecraft/mc-mods/catalogue "cave_dust-", //https://www.curseforge.com/minecraft/mc-mods/cave-dust "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 "chat_heads-", //https://www.curseforge.com/minecraft/mc-mods/chat-heads "cherishedworlds-", //https://www.curseforge.com/minecraft/mc-mods/cherished-worlds "cirback-1.0-", //Gone? Reduces to atoms? "citresewn-", //https://www.curseforge.com/minecraft/mc-mods/forge-cit "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 "combat_music-", //https://www.curseforge.com/minecraft/mc-mods/combat-music "configured-neoforge-", //https://www.curseforge.com/minecraft/mc-mods/configured @@ -391,6 +394,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) "forgemod_VoxelMap-", //https://www.curseforge.com/minecraft/mc-mods/voxelmap "freecam-", //https://www.curseforge.com/minecraft/mc-mods/free-cam "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 "gamestagesviewer-", //https://www.curseforge.com/minecraft/mc-mods/game-stages-viewer "gpumemleakfix-", //https://www.curseforge.com/minecraft/mc-mods/fix-gpu-memory-leak @@ -486,6 +490,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) "smoothboot-", //https://www.curseforge.com/minecraft/mc-mods/smoothboot "smoothfocus-", //https://www.curseforge.com/minecraft/mc-mods/smoothfocus "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 "sodiumleafculling-", //https://www.curseforge.com/minecraft/mc-mods/sodium-leaf-culling "sodiumoptionsapi-", //https://www.curseforge.com/minecraft/mc-mods/sodium-options-api @@ -648,7 +654,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) @Suppress("MemberVisibilityCanBePrivate") val trueFalseRegex = "^(true|false)$".toRegex() - val preReleaseRegex = ".*(alpha|beta|dev).*".toRegex() + @Suppress("MemberVisibilityCanBePrivate") + val alphaBetaRegex = "^(.*alpha.*|.*beta.*)$".toRegex() @Suppress("MemberVisibilityCanBePrivate") val serverPacksRegex = "^(?:\\./)?server-packs$".toRegex() @@ -777,7 +784,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) val preRelease: Boolean get() { - return apiVersion.matches(preReleaseRegex) + return apiVersion.matches(alphaBetaRegex) } val configVersion: String = if (preRelease || devBuild) { @@ -786,6 +793,14 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) "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" get() { field = acquireProperty(pLogLevel, "INFO").uppercase() @@ -2622,7 +2637,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) } } if (fallbackUpdated) { - saveProperties(serverPackCreatorPropertiesFile) + saveProperties(File(homeDirectory, serverPackCreatorProperties).absoluteFile) } return fallbackUpdated } @@ -2779,6 +2794,8 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) setLoggingLevel(logLevel) } + firstRun = getBoolProperty("de.griefed.serverpackcreator.firstrun", true) + setBoolProperty("de.griefed.serverpackcreator.firstrun", false) logsDirectory.create(createFileOrDir = true, asDirectory = true) serverFilesDirectory.create(createFileOrDir = true, asDirectory = true) propertiesDirectory.create(createFileOrDir = true, asDirectory = true) @@ -2794,7 +2811,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties")) minecraftServerManifestsDirectory.create(createFileOrDir = true, asDirectory = true) installerCacheDirectory.create(createFileOrDir = true, asDirectory = true) printSettings() - saveProperties(serverPackCreatorPropertiesFile) + saveProperties(File(homeDirectory, serverPackCreatorProperties).absoluteFile) } private fun setLoggingLevel(level: String) { diff --git a/serverpackcreator-api/src/main/resources/serverpackcreator.properties b/serverpackcreator-api/src/main/resources/serverpackcreator.properties index f3e396aec6b3e56d40164f1bbc633c30fcce7d18..5efef1c79ba0ba77fad9ef36e566af42b699a209 100644 --- a/serverpackcreator-api/src/main/resources/serverpackcreator.properties +++ b/serverpackcreator-api/src/main/resources/serverpackcreator.properties @@ -2,8 +2,8 @@ de.griefed.serverpackcreator.versioncheck.prerelease=false 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.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.modswhitelist=Ping-Wheel- +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-,appleskin- 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.serverpack.autodiscovery.enabled=true diff --git a/serverpackcreator-api/src/test/resources/serverpackcreator.properties b/serverpackcreator-api/src/test/resources/serverpackcreator.properties index dc905fe9cbcd91aaa6d1593c1e0ad6409ef9602d..37407e89d30ec4a402aee30e1459a2cf62faa15e 100644 --- a/serverpackcreator-api/src/test/resources/serverpackcreator.properties +++ b/serverpackcreator-api/src/test/resources/serverpackcreator.properties @@ -1,12 +1,12 @@ #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.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.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.modswhitelist=Ping-Wheel- +de.griefed.serverpackcreator.configuration.modswhitelist=Ping-Wheel-,appleskin- 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.language=en_GB diff --git a/serverpackcreator-app/src/main/resources/de/griefed/resources/gui/LICENSE-AGREEMENT b/serverpackcreator-app/src/main/resources/de/griefed/resources/gui/LICENSE-AGREEMENT index e635093b618229339666dd3781ab8de921930f75..363f1988cf42b73d2f2622e5f6c9dfeb543d47a2 100644 --- a/serverpackcreator-app/src/main/resources/de/griefed/resources/gui/LICENSE-AGREEMENT +++ b/serverpackcreator-app/src/main/resources/de/griefed/resources/gui/LICENSE-AGREEMENT @@ -500,7 +500,7 @@ URL: https://www.apache.org/licenses/LICENSE-2.0 (2 of 42) Group: com.electronwill.night-config Name: toml -Version: 3.7.2 +Version: 3.8.1 POM Project URL: https://github.com/TheElectronWill/night-config @@ -2633,7 +2633,7 @@ Embedded license: (11 of 42) Group: com.formdev Name: flatlaf-intellij-themes -Version: 3.5.2 +Version: 3.5.4 POM Project URL: https://github.com/JFormDesigner/FlatLaf @@ -2925,7 +2925,7 @@ URL: https://opensource.org/licenses/0BSD (16 of 42) Group: commons-io Name: commons-io -Version: 2.16.1 +Version: 2.18.0 Project URL: https://commons.apache.org/proper/commons-io/\n\n Manifest license URL: https://www.apache.org/licenses/LICENSE-2.0 @@ -3523,7 +3523,7 @@ The Apache Software Foundation (http://www.apache.org/). (25 of 42) Group: org.apache.logging.log4j Name: log4j-core -Version: 2.24.2 +Version: 2.24.3 Manifest license 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) Group: org.jetbrains.kotlinx Name: kotlinx-coroutines-core -Version: 1.8.1 +Version: 1.10.1 POM Project URL: https://github.com/Kotlin/kotlinx.coroutines @@ -4364,7 +4364,7 @@ the License. (39 of 42) Group: org.springframework.boot Name: spring-boot-starter-data-jpa -Version: 3.3.5 +Version: 3.4.1 POM Project URL: https://spring.io/projects/spring-boot @@ -4577,7 +4577,7 @@ Embedded license: See the License for the specific language governing permissions and limitations under the License. -Spring Boot 3.3.5 +Spring Boot 3.4.1 Copyright (c) 2012-2024 VMware, Inc. This product is licensed to you under the Apache License, Version 2.0