Skip to content

Commit

Permalink
Version 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lukflug committed Jan 5, 2021
1 parent 9f3b016 commit 82e39a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ repositories {
}
dependencies {
compile("com.lukflug:panelstudio:0.1.5")
compile("com.lukflug:panelstudio:0.1.6")
}
shadowJar {
Expand All @@ -58,7 +58,7 @@ If you're planning to use PanelStudio-MC you have to also add this:
```groovy
task downloadPanelstudio {
doLast {
new URL("https://github.com/lukflug/PanelStudio/releases/download/v0.1.5/panelstudio-mc-0.1.5.jar").withInputStream{i->new File("${buildDir}/panelstudio-mc-0.1.5.jar").withOutputStream{it<<i}}
new URL("https://github.com/lukflug/PanelStudio/releases/download/v0.1.6/panelstudio-mc-0.1.5.jar").withInputStream{i->new File("${buildDir}/panelstudio-mc-0.1.5.jar").withOutputStream{it<<i}}
}
}
Expand Down Expand Up @@ -179,7 +179,7 @@ Toggleable hudToggle=new Toggleable() {
```

## Reference
For a list of classes and methods, consult the [javadoc](https://lukflug.github.io/javadoc/panelstudio/0.1.5/). For an example implementation, consult the GameSense source code.
For a list of classes and methods, consult the [javadoc](https://lukflug.github.io/javadoc/panelstudio/0.1.6/). For an example implementation, consult the GameSense source code.

## Creating custom themes
The components provided by PanelStudio use the methods in the `Renderer` interface to render. A `Theme` consist of three renderers: one for the single components (settings), one for the containers (modules) and one for the panels (categories). To see how themes are implemented, consult the package `com.lukflug.panelstudio.theme`.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
allprojects {
apply plugin: 'java-library'
group = 'com.lukflug'
version = '0.1.5'
version = '0.1.6'
}

sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
Expand Down

0 comments on commit 82e39a1

Please sign in to comment.