Skip to content

Commit

Permalink
Update version (1.1.0-rc1)
Browse files Browse the repository at this point in the history
  • Loading branch information
hajimehoshi committed Jan 9, 2015
1 parent d3fee1d commit 35288e3
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion _docs/public/example/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 = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/1.1/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/example/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 = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/1.1/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/example/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 = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/1.1/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/example/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 = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/1.1/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/example/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 = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/1.1/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/example/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 = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/1.1/' + src;
}
s.src = src;
document.body.appendChild(s);
Expand Down
2 changes: 1 addition & 1 deletion _docs/public/example/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 = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/1.1/' + 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 @@ -33,7 +33,7 @@
}
</style>
<h1>Ebiten (海老天)</h1>
<p>v1.1.0-alpha</p>
<p>v1.1.0-rc1</p>
<ul>
<li>A simple SNES-like 2D game library in Go</li>
<li>Works on
Expand All @@ -49,7 +49,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.1.0-alpha)</li>
<li><a href="http://github.com/hajimehoshi/ebiten">GitHub project page</a> (Development version: v1.2.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.1.0-alpha
1.1.0-rc1

0 comments on commit 35288e3

Please sign in to comment.