From d267e37db949ccce1d4120a62bb03d0265c5617c Mon Sep 17 00:00:00 2001 From: twisti-dev <76837088+twisti-dev@users.noreply.github.com> Date: Thu, 20 Aug 2026 22:12:12 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(dialog):=20add=20search=20dial?= =?UTF-8?q?og=20functionality=20with=20input=20handling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - introduce SearchDialog for querying with customizable input fields - implement action buttons for search and cancel with tooltips - ensure dialog closes before executing callbacks for search and close actions --- gradle.properties | 2 +- .../dev/slne/surf/api/minestom/SurfApiMinestomEntrypoint.kt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 70dcbe0d..d38aceb8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,6 +7,6 @@ org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled javaVersion=25 mcVersion=26.2 group=dev.slne.surf.api -version=3.39.0 +version=3.39.1 relocationPrefix=dev.slne.surf.api.libs snapshot=false diff --git a/surf-api-minestom/src/main/kotlin/dev/slne/surf/api/minestom/SurfApiMinestomEntrypoint.kt b/surf-api-minestom/src/main/kotlin/dev/slne/surf/api/minestom/SurfApiMinestomEntrypoint.kt index f42e4946..9cbcc784 100644 --- a/surf-api-minestom/src/main/kotlin/dev/slne/surf/api/minestom/SurfApiMinestomEntrypoint.kt +++ b/surf-api-minestom/src/main/kotlin/dev/slne/surf/api/minestom/SurfApiMinestomEntrypoint.kt @@ -16,6 +16,9 @@ internal class SurfApiMinestomEntrypoint @Inject constructor( preparePacketEvents() instance.bootstrap() instance.onLoad() + } + + override suspend fun afterStart() { instance.onEnable() }