diff --git a/.gitignore b/.gitignore index fbddca8fd46..47df9cbc0de 100755 --- a/.gitignore +++ b/.gitignore @@ -223,3 +223,6 @@ gradle-app.setting # TODO remove this in the future after some time since https://github.com/SkriptLang/Skript/pull/4979 # This ensures developers don't upload their old existing test_runners/ folder. test_runners/ + +## Mac MetaData +**/.DS_Store diff --git a/build.gradle b/build.gradle index 15505bcbd3e..a6ebb813ecf 100644 --- a/build.gradle +++ b/build.gradle @@ -150,7 +150,7 @@ license { } task releaseJavadoc(type: Javadoc) { - title = project.property('version') + title = project.name + ' ' + project.property('version') source = sourceSets.main.allJava classpath = configurations.compileClasspath options.encoding = 'UTF-8'