diff --git a/.gitignore b/.gitignore index fbddca8fd46..2aa18aaa258 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 \ No newline at end of file diff --git a/build.gradle b/build.gradle index 5920cb95ac8..f9b9938e722 100644 --- a/build.gradle +++ b/build.gradle @@ -158,7 +158,7 @@ javadoc { } 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'