From db3e15508c8e36e1e3b5cae315100d6953c21015 Mon Sep 17 00:00:00 2001 From: hstyi Date: Thu, 2 Jan 2025 11:17:51 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=85=B3=E4=BA=8E=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E8=B7=B3=E8=BD=AC=E5=88=B0=E5=85=B7=E4=BD=93=E7=9A=84=E5=88=86?= =?UTF-8?q?=E6=94=AF/=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/app/termora/SettingsOptionsPane.kt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/app/termora/SettingsOptionsPane.kt b/src/main/kotlin/app/termora/SettingsOptionsPane.kt index a324644..cd16af1 100644 --- a/src/main/kotlin/app/termora/SettingsOptionsPane.kt +++ b/src/main/kotlin/app/termora/SettingsOptionsPane.kt @@ -879,13 +879,18 @@ class SettingsOptionsPane : OptionsPane() { .add("${I18n.getString("termora.settings.about.author")}:").xy(1, rows) .add(createHyperlink("https://github.com/hstyi")).xy(3, rows).apply { rows += step } .add("${I18n.getString("termora.settings.about.source")}:").xy(1, rows) - .add(createHyperlink("https://github.com/TermoraDev/termora")).xy(3, rows).apply { rows += step } + .add( + createHyperlink( + "https://github.com/TermoraDev/termora/tree/${Application.getVersion()}", + "https://github.com/TermoraDev/termora", + ) + ).xy(3, rows).apply { rows += step } .add("${I18n.getString("termora.settings.about.issue")}:").xy(1, rows) .add(createHyperlink("https://github.com/TermoraDev/termora/issues")).xy(3, rows).apply { rows += step } .add("${I18n.getString("termora.settings.about.third-party")}:").xy(1, rows) .add( createHyperlink( - "https://github.com/TermoraDev/termora/blob/master/THIRDPARTY", + "https://github.com/TermoraDev/termora/blob/${Application.getVersion()}/THIRDPARTY", "Open-source software" ) ).xy(3, rows).apply { rows += step }