Skip to content

Commit

Permalink
Update the version to 1.2.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
hajimehoshi committed Feb 16, 2016
1 parent eb4cc4d commit 5e8a913
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion _docs/public/examples/alphablending.content.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var s = document.createElement('script');
var src = 'alphablending.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = '//hajimehoshi.github.io/ebiten.pagestorage/1.2/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/examples/blocks.content.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var s = document.createElement('script');
var src = 'blocks.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = '//hajimehoshi.github.io/ebiten.pagestorage/1.2/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/examples/gamepad.content.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var s = document.createElement('script');
var src = 'gamepad.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = '//hajimehoshi.github.io/ebiten.pagestorage/1.2/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/examples/hue.content.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var s = document.createElement('script');
var src = 'hue.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = '//hajimehoshi.github.io/ebiten.pagestorage/1.2/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/examples/keyboard.content.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var s = document.createElement('script');
var src = 'keyboard.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = '//hajimehoshi.github.io/ebiten.pagestorage/1.2/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/examples/mosaic.content.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var s = document.createElement('script');
var src = 'mosaic.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = '//hajimehoshi.github.io/ebiten.pagestorage/1.2/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/examples/noise.content.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var s = document.createElement('script');
var src = 'noise.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = '//hajimehoshi.github.io/ebiten.pagestorage/1.2/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/examples/paint.content.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var s = document.createElement('script');
var src = 'paint.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = '//hajimehoshi.github.io/ebiten.pagestorage/1.2/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/examples/perspective.content.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var s = document.createElement('script');
var src = 'perspective.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = '//hajimehoshi.github.io/ebiten.pagestorage/1.2/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/examples/rotate.content.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var s = document.createElement('script');
var src = 'rotate.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = '//hajimehoshi.github.io/ebiten.pagestorage/1.2/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/examples/sprites.content.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var s = document.createElement('script');
var src = 'sprites.js';
if (isProduction()) {
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = '//hajimehoshi.github.io/ebiten.pagestorage/1.2/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
4 changes: 2 additions & 2 deletions _docs/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
}
</style>
<h1>Ebiten (海老天)</h1>
<p>v1.2.0-alpha</p>
<p>v1.2.0-rc1</p>
<ul>
<li>A simple SNES-like 2D game library in Go</li>
<li>Works on
Expand All @@ -52,7 +52,7 @@ <h1>Ebiten (海老天)</h1>
</ul>
</li>
<li><a href="http://godoc.org/github.com/hajimehoshi/ebiten">API Docs</a></li>
<li><a href="http://github.com/hajimehoshi/ebiten">GitHub project page</a> (Development version: v1.2.0-alpha)</li>
<li><a href="http://github.com/hajimehoshi/ebiten">GitHub project page</a> (Development version: v1.3.0-alpha)</li>
</ul>

<h2>Features</h2>
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.0-alpha
1.2.0-rc1

0 comments on commit 5e8a913

Please sign in to comment.