Skip to content

Commit

Permalink
Rename projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Syer10 committed Jan 5, 2024
1 parent f4eea44 commit 7823e49
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

rootProject.name = "Tachidesk-Launcher"
rootProject.name = "Suwayomi-Launcher"

Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class LauncherViewModel {

init {
require(tachideskServer.exists()) {
"Could not find Tachidesk-Server.jar at '${tachideskServer.absolutePathString()}'"
"Could not find Suwayomi-Server.jar at '${tachideskServer.absolutePathString()}'"
}
}

Expand Down Expand Up @@ -184,7 +184,7 @@ class LauncherViewModel {
Paths.get(this::class.java.protectionDomain.codeSource.location.toURI()).parent
}
private val tachideskServer by lazy {
homeDir / "bin" / "Tachidesk-Server.jar"
homeDir / "bin" / "Suwayomi-Server.jar"
}

private fun getRootDir(rootDir: String?): String {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/suwayomi/tachidesk/launcher/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ suspend fun main() {
withContext(Dispatchers.Swing.immediate) {
setupTheme(vm)

jframe("Tachidesk-Server Launcher") {
jframe("Suwayomi-Server Launcher") {
size = Dimension(380, 480)
isResizable = false
setLocationRelativeTo(null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ fun Downloader(vm: LauncherViewModel, scope: CoroutineScope) = jpanel(
}.bind(CC().grow().spanX().wrap())

jCheckBox("Download new chapters", selected = vm.autoDownloadNewChapters.value) {
toolTipText = "If new chapters that have been found, should Tachidesk download them automatically." // todo improve
toolTipText = "If new chapters that have been found, should Suwayomi download them automatically." // todo improve
actions()
.onEach {
vm.autoDownloadNewChapters.value = isSelected
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/suwayomi/tachidesk/launcher/ui/Misc.kt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fun Misc(vm: LauncherViewModel, scope: CoroutineScope) = jpanel(
}.bind(CC().wrap())

jCheckBox("System Tray", selected = vm.systemTray.value) {
toolTipText = "Use this to toggle Tachidesk showing in the system tray." // todo improve
toolTipText = "Use this to toggle Suwayomi showing in the system tray." // todo improve
actions()
.onEach {
vm.systemTray.value = isSelected
Expand Down

0 comments on commit 7823e49

Please sign in to comment.