Skip to content

Commit

Permalink
Bump version to v0.4.17-alpha.
Browse files Browse the repository at this point in the history
  • Loading branch information
steffen-wilke committed Apr 25, 2019
1 parent ba87a09 commit afbdccc
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ The library is distributed over the [Maven Central Repository](https://search.ma

### Gradle
```groovy
compile 'de.gurkenlabs:litiengine:0.4.16.1'
compile 'de.gurkenlabs:litiengine:0.4.17'
```

### Maven
```xml
<dependency>
<groupId>de.gurkenlabs</groupId>
<artifactId>litiengine</artifactId>
<version>0.4.16.1</version>
<version>0.4.17</version>
</dependency>
```
[More Installation Instructions](https://docs.litiengine.com/basics/getting-started/get-litiengine)
Expand Down
8 changes: 4 additions & 4 deletions build-maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jar {

from('resources') { include '**/*' }

version = 'v0.4.16.1-alpha'
version = 'v0.4.17-alpha'
exclude '**/*.dll'
exclude '**/*.jnilib'
exclude '**/*.dylib'
Expand Down Expand Up @@ -88,13 +88,13 @@ task createJavadocs(type: Javadoc) {
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
version = 'v0.4.16.1-alpha'
version = 'v0.4.17-alpha'
}

task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
version = 'v0.4.16.1-alpha'
version = 'v0.4.17-alpha'
}

artifacts {
Expand All @@ -108,7 +108,7 @@ tasks.withType(JavaCompile) {

group = "de.gurkenlabs"
archivesBaseName = "litiengine"
version = "0.4.16.1"
version = "0.4.17"

uploadArchives {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apply plugin: 'jacoco'
apply plugin: 'maven'

archivesBaseName = "litiengine"
version = "v0.4.16.1-alpha"
version = "v0.4.17-alpha"

sourceSets {
main.java.srcDir "src"
Expand Down
12 changes: 6 additions & 6 deletions docs/getting-started/get-litiengine.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ There are multiple ways to achieve this. The library is distributed over the [Ma

### Gradle (Groovy)
```groovy
compile 'de.gurkenlabs:litiengine:0.4.16.1'
compile 'de.gurkenlabs:litiengine:0.4.17'
```

A basic example for a Gradle based LITIengine project can be found [HERE](https://github.com/gurkenlabs/litiengine/tree/master/examples/hello-liti-gradle).
Expand All @@ -17,24 +17,24 @@ A basic example for a Gradle based LITIengine project can be found [HERE](https:
<dependency>
<groupId>de.gurkenlabs</groupId>
<artifactId>litiengine</artifactId>
<version>0.4.16.1</version>
<version>0.4.17</version>
</dependency>
```

A basic example for a Maven based LITIengine project can be found [HERE](https://github.com/gurkenlabs/litiengine/tree/master/examples/hello-liti-maven).

### Manual Download
[litiengine-0.4.16.1.jar](https://search.maven.org/remotecontent?filepath=de/gurkenlabs/litiengine/0.4.16.1/litiengine-0.4.16.1.jar)
[litiengine-0.4.17.jar](https://search.maven.org/remotecontent?filepath=de/gurkenlabs/litiengine/0.4.17/litiengine-0.4.17.jar)
> **Note:** This download will not provide you with any referenced native assemblies (e.g. for Gamepad integration).
[litiengine-v0.4.16.1-alpha.zip](https://github.com/gurkenlabs/litiengine/releases/download/v0.4.16.1-alpha/litiengine-v0.4.16.1-alpha.zip)
[litiengine-v0.4.17-alpha.zip](https://github.com/gurkenlabs/litiengine/releases/download/v0.4.17-alpha/litiengine-v0.4.17-alpha.zip)
> **Note:** This `.zip` archive contains all the required libraries and native assemblies
## Get the utiLITI editor
The LITIengine comes with an editor that supports you with creating game environments and managing your resources. It is a stand alone product which produces a `.litidata` game project files that can then be loaded to your game.

> **Note:** The editor is not an IDE for Java development.
[utiLITI for Windows](https://github.com/gurkenlabs/litiengine/releases/download/v0.4.16.1-alpha/utiliti-v0.4.16.1-alpha-win.zip)
[utiLITI for Windows](https://github.com/gurkenlabs/litiengine/releases/download/v0.4.17-alpha/utiliti-v0.4.17-alpha-win.zip)

[utiLITI for Linux / MacOS](https://github.com/gurkenlabs/litiengine/releases/download/v0.4.16.1-alpha/utiliti-v0.4.16.1-alpha-linux-mac.zip)
[utiLITI for Linux / MacOS](https://github.com/gurkenlabs/litiengine/releases/download/v0.4.17-alpha/utiliti-v0.4.17-alpha-linux-mac.zip)
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
sonar.projectKey=de.gurkenlabs:litiengine
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
sonar.projectName=litiengine
sonar.projectVersion=0.4.16.1
sonar.projectVersion=0.4.17

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
Expand Down
8 changes: 4 additions & 4 deletions utiliti/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'eclipse'
apply plugin: 'application'

archivesBaseName = "utiliti"
version = "v0.4.16.1-alpha"
version = "v0.4.17-alpha"
mainClassName = "de.gurkenlabs.utiliti.Program"

sourceSets {
Expand Down Expand Up @@ -48,10 +48,10 @@ launch4j {
mainClassName = 'de.gurkenlabs.utiliti.Program'
icon = 'pixel-icon-utiLITI.ico'
outputDir = 'libs'
outfile = archivesBaseName + '-v0.4.16.1-alpha.exe'
outfile = archivesBaseName + '-v0.4.17-alpha.exe'
companyName = 'gurkenlabs.de'
version = '0.4.16.1'
textVersion = '0.4.16.1'
version = '0.4.17'
textVersion = '0.4.17'
copyright = '2017 gurkenlabs.de'
jvmOptions = ['-Xms256m', '-Xmx1024m']
}
Expand Down
2 changes: 1 addition & 1 deletion utiliti/localization/links.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ link_LITIengine_forum=https://forum.litiengine.com/
link_LITIengine_javadocs=https://www.javadoc.io/doc/de.gurkenlabs/litiengine/
link_LITIengine_bug=https://github.com/gurkenlabs/litiengine/issues/new
link_LITIengine_releases=https://github.com/gurkenlabs/litiengine/releases
link_LITIengine_releasenotes=https://litiengine.com/changelog-litiengine-v0-4-15-alpha/
link_LITIengine_releasenotes=https://litiengine.com/changelog-litiengine-v0-4-17-alpha/
2 changes: 1 addition & 1 deletion utiliti/src/de/gurkenlabs/utiliti/Program.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static void main(String[] args) {
// setup basic settings
Game.info().setName("utiLITI");
Game.info().setSubTitle("LITIengine Creation Kit");
Game.info().setVersion("v0.4.16.1-alpha");
Game.info().setVersion("v0.4.17-alpha");
Resources.strings().setEncoding(Strings.ENCODING_UTF_8);

// hook up configuration and initialize the game
Expand Down

0 comments on commit afbdccc

Please sign in to comment.