Skip to content

Commit 8f5d826

Browse files
committed
Update version to 0.10.1.
1 parent 34a580c commit 8f5d826

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
@@ -160,7 +160,7 @@ $(ANDROIDICONSXXXHDPI_DEST)/%.png: images-src/icons/%.svg
160160
#$(MUSICOGG_DEST)/%.ogg: music-src/%.flac
161161
# mkdir -p $(MUSICOGG_DEST); avconv -i $< -c:a libvorbis -q:a 1 $@
162162

163-
VERSION=0.10
163+
VERSION=0.10.1
164164

165165
ifndef MAKECMDGOALS
166166
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.10/rabbit-escape-0.10.apk">Download Rabbit Escape for Android</a>
17+
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.10.1/rabbit-escape-0.10.1.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.10/rabbit-escape-0.10.jar">Download Rabbit Escape for Linux</a>
17+
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.10.1/rabbit-escape-0.10.1.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.10/rabbit-escape-0.10.jar">Download Rabbit Escape for Mac</a>
17+
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.10.1/rabbit-escape-0.10.1.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.10/rabbit-escape-0.10.jar">Download Rabbit Escape for Windows</a>
17+
<a class="downloadbutton" href="https://github.com/andybalaam/rabbit-escape/releases/download/v0.10.1/rabbit-escape-0.10.1.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.10";
5+
public static final String version = "0.10.1";
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
@@ -24,8 +24,8 @@ android {
2424
defaultConfig {
2525
minSdkVersion 8
2626
targetSdkVersion 21
27-
versionCode 100
28-
versionName "0.10"
27+
versionCode 101
28+
versionName "0.10.1"
2929
}
3030
signingConfigs {
3131
release {

0 commit comments

Comments
 (0)