diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..67bcc2f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.gradle/ +build/ diff --git a/BappManifest.bmf b/BappManifest.bmf index c81527d..c60f101 100644 --- a/BappManifest.bmf +++ b/BappManifest.bmf @@ -2,8 +2,8 @@ Uuid: a7609ae2055342e9b6ffcf7cbcacf019 ExtensionType: 1 Name: Highlighter And Extractor RepoName: highlighter-and-extractor -ScreenVersion: 1.1 -SerialVersion: 1 +ScreenVersion: 1.4.1 +SerialVersion: 3 MinPlatformVersion: 0 ProOnly: False Author: gh0stkey diff --git a/build.gradle b/build.gradle index 8da9ae4..14f7290 100644 --- a/build.gradle +++ b/build.gradle @@ -20,6 +20,10 @@ sourceSets { targetCompatibility = '1.8' sourceCompatibility = '1.8' +compileJava { + options.encoding = "UTF-8" +} + task fatJar(type: Jar) { baseName = project.name + '-all' from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }