diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-01-11 00:00:32 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-11 00:00:32 +0900 |
| commit | 3b8be8bf48d3e178a0cc05cb8655835e231483ad (patch) | |
| tree | 12274a79aaee8446424f1c7aeeb3d6ba8ff80a08 | |
| parent | 52a3c37bda4e3c96260f8429061fd58b7e411f9c (diff) | |
| parent | 2cda05463312d7035bfb2318c8c3dfe910c12c5f (diff) | |
| download | LunaticChat-3b8be8bf48d3e178a0cc05cb8655835e231483ad.tar.gz LunaticChat-3b8be8bf48d3e178a0cc05cb8655835e231483ad.tar.bz2 LunaticChat-3b8be8bf48d3e178a0cc05cb8655835e231483ad.zip | |
Merge pull request #21 from m1sk9/release-v0.3.0
Release LunaticChat v0.3.0
| -rw-r--r-- | build.gradle.kts | 2 | ||||
| -rw-r--r-- | platform-paper/src/main/kotlin/dev/m1sk9/lunaticChat/paper/LunaticChat.kt | 13 |
2 files changed, 8 insertions, 7 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 8ab8880..aa66d31 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ plugins { allprojects { group = "dev.m1sk9" - version = "0.2.0" + version = "0.3.0" repositories { mavenCentral() diff --git a/platform-paper/src/main/kotlin/dev/m1sk9/lunaticChat/paper/LunaticChat.kt b/platform-paper/src/main/kotlin/dev/m1sk9/lunaticChat/paper/LunaticChat.kt index 470f3b3..ebec4f0 100644 --- a/platform-paper/src/main/kotlin/dev/m1sk9/lunaticChat/paper/LunaticChat.kt +++ b/platform-paper/src/main/kotlin/dev/m1sk9/lunaticChat/paper/LunaticChat.kt @@ -62,12 +62,13 @@ class LunaticChat : timeout = lunaticChatConfiguration.features.japaneseConversion.apiTimeout.milliseconds, httpClient = httpClient, ) - romajiConverter = RomanjiConverter( - cache = cache, - apiClient = apiClient, - logger = logger, - debugMode = lunaticChatConfiguration.debug - ) + romajiConverter = + RomanjiConverter( + cache = cache, + apiClient = apiClient, + logger = logger, + debugMode = lunaticChatConfiguration.debug, + ) val saveInterval = lunaticChatConfiguration.features.japaneseConversion.cacheSaveIntervalSeconds * 20L server.scheduler.runTaskTimerAsynchronously( |
