Skip to content

Commit 38967fe

Browse files
committed
Update version to 0.12. Closes #588
1 parent fb601b4 commit 38967fe

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ $(ANDROIDICONSXXXHDPI_DEST)/%.png: images-src/icons/%.svg
197197
#$(MUSICOGG_DEST)/%.ogg: music-src/%.flac
198198
# mkdir -p $(MUSICOGG_DEST); avconv -i $< -c:a libvorbis -q:a 1 $@
199199

200-
VERSION=0.11
200+
VERSION=0.12
201201

202202
ifndef MAKECMDGOALS
203203
MAKECMDGOALS = all

doc/www/download-android.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1><img src="rabbitescape-84.png"/>Rabbit Escape on Android</h1>
1414
<p class="backlink"><a href="index.html">&lt; &lt; &lt;Back to the Rabbit Escape main page</a></p>
1515
<h2>Download it</h2>
1616

17-
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.11/rabbit-escape-0.11.apk">Download Rabbit Escape for Android</a>
17+
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.12/rabbit-escape-0.12.apk">Download Rabbit Escape for Android</a>
1818
<p>Before you download, on your phone or tablet go to Settings, then choose Security, and make sure "Unknown sources" is selected.</p>
1919
<p><img src="settings-unknown-sources.png" width="645" height="288"/></p>
2020
<p>To download Rabbit Escape, click on the orange download button at the top of this page.</p>

doc/www/download-linux.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1><img src="rabbitescape-84.png"/>Rabbit Escape on Linux</h1>
1414
<p class="backlink"><a href="index.html">&lt; &lt; &lt;Back to the Rabbit Escape main page</a></p>
1515
<h2>Download it</h2>
1616

17-
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.11/rabbit-escape-0.11.jar">Download Rabbit Escape for Linux</a>
17+
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.12/rabbit-escape-0.12.jar">Download Rabbit Escape for Linux</a>
1818
<p>Download the .jar file using the button above and save it somewhere. (You may need to right-click the button and choose "Save Link As..." or similar.)</p>
1919

2020
<h2>Run it</h2>

doc/www/download-mac.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1><img src="rabbitescape-84.png"/>Rabbit Escape on Mac</h1>
1414
<p class="backlink"><a href="index.html">&lt; &lt; &lt;Back to the Rabbit Escape main page</a></p>
1515
<h2>Download it</h2>
1616

17-
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.11/rabbit-escape-0.11.jar">Download Rabbit Escape for Mac</a>
17+
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.12/rabbit-escape-0.12.jar">Download Rabbit Escape for Mac</a>
1818
<p>Download the .jar file using the button above and save it in your Downloads folder.</p>
1919

2020
<h2>Run it</h2>

doc/www/download-windows.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1><img src="rabbitescape-84.png"/>Rabbit Escape on Windows</h1>
1414
<p class="backlink"><a href="index.html">&lt; &lt; &lt;Back to the Rabbit Escape main page</a></p>
1515
<h2>Download it</h2>
1616

17-
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.11/rabbit-escape-0.11.jar">Download Rabbit Escape for Windows</a>
17+
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.12/rabbit-escape-0.12.jar">Download Rabbit Escape for Windows</a>
1818
<p>Download the .jar file using the button above and save it somewhere. (You may need to right-click the button and choose "Save Link As..." or similar.)</p>
1919

2020
<h2>Run it</h2>

rabbit-escape-engine/src/rabbitescape/engine/menu/AboutText.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public class AboutText
44
{
5-
public static final String version = "0.11";
5+
public static final String version = "0.12";
66

77
public static final String url =
88
"http://www.artificialworlds.net/rabbit-escape";

rabbit-escape-ui-android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ android {
2525
defaultConfig {
2626
minSdkVersion 14
2727
targetSdkVersion 26
28-
versionCode 110
29-
versionName "0.11"
28+
versionCode 120
29+
versionName "0.12"
3030
}
3131
signingConfigs {
3232
release {

0 commit comments

Comments
 (0)