Skip to content

Commit 176373e

Browse files
committed
bump to 0.1.2
1 parent 7c3d838 commit 176373e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

knotify/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88

99
group = "com.kdroid.knotify"
10-
version = "0.1.1"
10+
version = "0.1.2"
1111

1212
kotlin {
1313
jvm()
@@ -39,7 +39,7 @@ publishing {
3939
from(components["kotlin"])
4040
groupId = "com.github.kdroidFilter"
4141
artifactId = "KNotify"
42-
version = "0.1.1"
42+
version = "0.1.2"
4343
}
4444
}
4545
}

knotify/src/jvmMain/kotlin/platform/LinuxNotifier.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ internal class LinuxNotifier(private val appName: String) : Notifier {
2828

2929
// Test with kdialog
3030
try {
31-
val sendCmd = findCommand("kdialog") ?: throw Exception("Aucune commande kdialog trouvée")
31+
val sendCmd = findCommand("kdialog") ?: throw Exception("No kdialog command found")
3232
val process = ProcessBuilder(sendCmd, "--title", title, "--passivepopup", message, "10", "--icon", iconPath).start()
3333
val exitCode = process.waitFor()
3434
if (exitCode == 0) {

0 commit comments

Comments
 (0)