From e4d9c99af6178145622dea9934f3373335083296 Mon Sep 17 00:00:00 2001 From: Steffen Wilke Date: Sun, 16 Aug 2020 21:27:33 +0200 Subject: [PATCH] Bump version to v0.5.0-beta. --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- README.md | 4 ++-- build-maven.gradle | 2 +- build.gradle | 3 ++- sonar-project.properties | 2 +- utiliti/build.gradle | 24 ++++++++++++++----- .../src/de/gurkenlabs/utiliti/Program.java | 2 +- 7 files changed, 26 insertions(+), 13 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 82e4c7ba4..fd8cd2b8f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -33,7 +33,7 @@ If applicable, add screenshots to help explain your problem. **Your System:** - OS: [e.g. iOS] - - LITIENGINE version: [e.g. 0.4.14-alpha] + - LITIENGINE version: [e.g. 0.5.0-beta] - Screen resolution: [e.g. 1920x1080] **Additional context** diff --git a/README.md b/README.md index a89950b60..39c25e131 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ repositories { } dependencies { - compile 'de.gurkenlabs:litiengine:0.4.20' + compile 'de.gurkenlabs:litiengine:0.5.0' } ``` @@ -44,7 +44,7 @@ dependencies { de.gurkenlabs litiengine - 0.4.20 + 0.5.0 ``` [More Installation Instructions](https://docs.litiengine.com/basics/getting-started/get-litiengine) diff --git a/build-maven.gradle b/build-maven.gradle index cbe97753a..95302a5de 100644 --- a/build-maven.gradle +++ b/build-maven.gradle @@ -92,7 +92,7 @@ tasks.withType(JavaCompile) { group = "de.gurkenlabs" archivesBaseName = "litiengine" -version = "0.4.20" +version = "0.5.0" publishing { publications { diff --git a/build.gradle b/build.gradle index 79d1e218b..8818d6a33 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'java' apply plugin: 'jacoco' archivesBaseName = "litiengine" -version = "v0.4.20-alpha" +version = "v0.5.0-beta" sourceSets { main.java.srcDir "src" @@ -93,6 +93,7 @@ task createJavadocs(type: Javadoc) { source sourceSets.main.allJava classpath = project.sourceSets.main.runtimeClasspath options.encoding 'UTF-8' + // options.addBooleanOption('html5', true) dependsOn build } diff --git a/sonar-project.properties b/sonar-project.properties index fc78fbfef..34edc97d8 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,7 +2,7 @@ sonar.projectKey=de.gurkenlabs:litiengine # this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1. sonar.projectName=litiengine -sonar.projectVersion=0.4.20 +sonar.projectVersion=0.5.0 # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. # This property is optional if sonar.modules is set. diff --git a/utiliti/build.gradle b/utiliti/build.gradle index 87a2c1c26..7db57ee7e 100644 --- a/utiliti/build.gradle +++ b/utiliti/build.gradle @@ -7,7 +7,7 @@ apply plugin: 'eclipse' apply plugin: 'application' archivesBaseName = "utiliti" -version = "v0.4.20-alpha" +version = "v0.5.0-beta" mainClassName = "de.gurkenlabs.utiliti.Program" sourceSets { @@ -27,6 +27,16 @@ dependencies { implementation project(':') implementation 'com.github.weisj:darklaf-core:2.4.1' implementation 'com.github.weisj:darklaf-theme:2.4.1' + implementation 'com.github.weisj:darklaf-property-loader:2.4.1' + implementation 'com.github.weisj:darklaf-utils:2.4.1' + implementation 'com.github.weisj:darklaf-native-utils:2.4.1' + implementation 'com.github.weisj:darklaf-platform-base:2.4.1' + implementation 'com.github.weisj:darklaf-windows:2.4.1' + implementation 'net.java.dev.jna:jna:5.6.0' + implementation 'org.swinglabs:jxlayer:3.0.4' + implementation 'org.swinglabs:swingx:1.6.1' + implementation 'com.formdev:svgSalamander:1.1.2.1' + implementation 'com.fifesoft:rsyntaxtextarea:3.1.1' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.4.+' testImplementation 'org.junit.jupiter:junit-jupiter-params:5.4.+' @@ -48,16 +58,18 @@ jar { } } { exclude 'META-INF/services/**' + exclude 'META-INF/*.SF' + exclude 'META-INF/*.DSA' + exclude 'META-INF/*.RSA' } duplicatesStrategy = DuplicatesStrategy.EXCLUDE - exclude '**/*.dll' exclude '**/*.jnilib' exclude '**/*.dylib' exclude '**/*.so' exclude 'junit**/**' - + manifest { attributes 'Main-Class': 'de.gurkenlabs.utiliti.Program' } @@ -67,10 +79,10 @@ launch4j { mainClassName = 'de.gurkenlabs.utiliti.Program' icon = 'pixel-icon-utiLITI.ico' outputDir = 'libs' - outfile = archivesBaseName + '-v0.4.20-alpha.exe' + outfile = archivesBaseName + '-v0.5.0-beta.exe' companyName = 'gurkenlabs.de' - version = '0.4.20' - textVersion = '0.4.20' + version = '0.5.0' + textVersion = '0.5.0' copyright = '2020 gurkenlabs.de' jvmOptions = ['-Xms256m', '-Xmx1024m'] } diff --git a/utiliti/src/de/gurkenlabs/utiliti/Program.java b/utiliti/src/de/gurkenlabs/utiliti/Program.java index be209c2f9..6efa99d69 100644 --- a/utiliti/src/de/gurkenlabs/utiliti/Program.java +++ b/utiliti/src/de/gurkenlabs/utiliti/Program.java @@ -20,7 +20,7 @@ public static void main(String[] args) { // setup basic settings Game.info().setName("utiLITI"); Game.info().setSubTitle("LITIengine Creation Kit"); - Game.info().setVersion("v0.4.20-alpha"); + Game.info().setVersion("v0.5.0-beta"); Resources.strings().setEncoding(StandardCharsets.UTF_8); // hook up configuration and initialize the game