File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
shared/src/jvmMain/kotlin/com/jdamcd/arrivals Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change
1
+ import org.jetbrains.compose.desktop.application.dsl.TargetFormat
2
+
1
3
plugins {
2
4
kotlin(" jvm" )
3
5
alias(libs.plugins.compose.compiler)
@@ -15,5 +17,12 @@ dependencies {
15
17
compose.desktop {
16
18
application {
17
19
mainClass = " com.jdamcd.arrivals.desktop.MainKt"
20
+
21
+ nativeDistributions {
22
+ targetFormats(TargetFormat .Dmg , TargetFormat .Msi , TargetFormat .Deb )
23
+ includeAllModules = true
24
+ packageName = " ArrivalsDesktop"
25
+ packageVersion = " 1.0.0"
26
+ }
18
27
}
19
28
}
Original file line number Diff line number Diff line change 1
1
package com.jdamcd.arrivals
2
2
3
3
actual class Settings actual constructor() {
4
- actual var mode = SettingsConfig .MODE_TFL
4
+ actual var mode = SettingsConfig .MODE_GTFS
5
5
actual var tflStopId = SettingsConfig .TFL_STOP_ID_DEFAULT
6
6
actual var tflPlatform = SettingsConfig .TFL_PLATFORM_DEFAULT
7
7
actual var tflDirection = SettingsConfig .TFL_DIRECTION_DEFAULT
You can’t perform that action at this time.
0 commit comments