diff --git a/README.md b/README.md index b897016..adb5319 100644 --- a/README.md +++ b/README.md @@ -48,31 +48,11 @@ repositories { } dependencies { - implementation "com.github.amarcolini.joos:$module:0.4.8" + implementation "com.github.amarcolini.joos:$module:0.4.9" } ``` Note that since the `command` module implicitly imports the `navigation` module, only one implementation statement is needed. -To use the GUI, you can either download the image specific to your platform from the releases page (the launcher is located -in the bin folder), or import it into an empty java module like so: - -### Gradle - -```groovy -repositories { - maven { url 'https://jitpack.io' } -} - -//Don't forget to set java version to 11 -java { - sourceCompatibility = JavaVersion.VERSION_11 - targetCompatibility = JavaVersion.VERSION_11 -} - -dependencies { - //Gradle will automatically retrieve the correct dependencies based on your operating system - implementation "com.github.amarcolini.joos:gui:0.4.8" -} -``` \ No newline at end of file +The complete installation guide can be found in [the docs](https://amarcolini.github.io/joos_docs/). \ No newline at end of file diff --git a/command/src/main/kotlin/com/amarcolini/joos/dashboard/ConfigHandler.kt b/command/src/main/kotlin/com/amarcolini/joos/dashboard/ConfigHandler.kt index e881a63..12a2b63 100644 --- a/command/src/main/kotlin/com/amarcolini/joos/dashboard/ConfigHandler.kt +++ b/command/src/main/kotlin/com/amarcolini/joos/dashboard/ConfigHandler.kt @@ -160,7 +160,7 @@ object ConfigHandler { } } - private fun createVariableFromArray( + fun createVariableFromArray( array: () -> Array<*>, arrayType: KClass<*>, parent: Any,