v1.4.0: made desktop save DIR variable based on game name/vendor

This commit is contained in:
Evan Debenham
2022-08-09 12:03:21 -04:00
parent 0024f57ce0
commit 8ea20ef9c2
2 changed files with 19 additions and 5 deletions

View File

@@ -19,6 +19,7 @@ task debug(type: JavaExec) {
main = appMainClass
systemProperty 'Specification-Title', appName
systemProperty 'Implementation-Title', appPackageName
systemProperty 'Specification-Version', appVersionName + "-INDEV"
systemProperty 'Implementation-Version', appVersionCode
@@ -37,6 +38,7 @@ task release(type: Jar) {
manifest {
attributes 'Main-Class': appMainClass
attributes 'Specification-Title': appName
attributes 'Implementation-Title': appPackageName
attributes 'Specification-Version': appVersionName
attributes 'Implementation-Version': appVersionCode
}