Skip to content

Commit c300a08

Browse files
committed
Add butler support (for itch.io)
1 parent 7e77117 commit c300a08

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ buildscript {
1111
}
1212
dependencies {
1313
classpath "org.javamodularity:moduleplugin:1.5.0"
14+
classpath "org.mini2Dx:butler:1.1.3"
1415
}
1516
}
1617

org.sheepy.vsand/build.gradle

+18
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import org.gradle.internal.os.OperatingSystem
33
plugins {
44
id 'application'
55
id 'distribution'
6+
id 'org.mini2Dx.butler'
67
id 'org.beryx.jlink' version '2.10.4'
78
}
89

@@ -16,6 +17,23 @@ jlink {
1617
}
1718
}
1819

20+
21+
butler {
22+
user = "ealrann"
23+
game = "vsand"
24+
userVersion = project.version
25+
26+
windows {
27+
binDirectory = "$projectDir/build/image"
28+
channel = "windows"
29+
}
30+
linux {
31+
binDirectory = "$projectDir/build/image"
32+
channel = "linux"
33+
}
34+
}
35+
36+
1937
mainClassName = 'org.sheepy.vsand/org.sheepy.vsand.VSandApplicationLauncher'
2038
jar {
2139
manifest {

0 commit comments

Comments
 (0)