diff --git a/_docs/index.tmpl.html b/_docs/index.tmpl.html
index a83c218f4..4a8918fda 100644
--- a/_docs/index.tmpl.html
+++ b/_docs/index.tmpl.html
@@ -105,11 +105,11 @@ pre {
-
2015-??-??
+2015-01-25
- v1.1.0 released.
- - Some bug fix
+ - Fixed some bugs.
diff --git a/_docs/public/example/blocks.content.html b/_docs/public/example/blocks.content.html
index 8083b265f..9ba0f8567 100644
--- a/_docs/public/example/blocks.content.html
+++ b/_docs/public/example/blocks.content.html
@@ -31,7 +31,7 @@ window.addEventListener('load', function() {
var s = document.createElement('script');
var src = 'blocks.js';
if (isProduction()) {
- src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
+ src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
}
s.src = src;
document.body.appendChild(s);
diff --git a/_docs/public/example/hue.content.html b/_docs/public/example/hue.content.html
index c5dcb62c6..66fecdf3f 100644
--- a/_docs/public/example/hue.content.html
+++ b/_docs/public/example/hue.content.html
@@ -31,7 +31,7 @@ window.addEventListener('load', function() {
var s = document.createElement('script');
var src = 'hue.js';
if (isProduction()) {
- src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
+ src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
}
s.src = src;
document.body.appendChild(s);
diff --git a/_docs/public/example/keyboard.content.html b/_docs/public/example/keyboard.content.html
index c35a01574..b68a5b8b6 100644
--- a/_docs/public/example/keyboard.content.html
+++ b/_docs/public/example/keyboard.content.html
@@ -31,7 +31,7 @@ window.addEventListener('load', function() {
var s = document.createElement('script');
var src = 'keyboard.js';
if (isProduction()) {
- src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
+ src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
}
s.src = src;
document.body.appendChild(s);
diff --git a/_docs/public/example/mosaic.content.html b/_docs/public/example/mosaic.content.html
index 87ae921b5..581739780 100644
--- a/_docs/public/example/mosaic.content.html
+++ b/_docs/public/example/mosaic.content.html
@@ -31,7 +31,7 @@ window.addEventListener('load', function() {
var s = document.createElement('script');
var src = 'mosaic.js';
if (isProduction()) {
- src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
+ src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
}
s.src = src;
document.body.appendChild(s);
diff --git a/_docs/public/example/paint.content.html b/_docs/public/example/paint.content.html
index 66b75e748..2d7fb4dd8 100644
--- a/_docs/public/example/paint.content.html
+++ b/_docs/public/example/paint.content.html
@@ -31,7 +31,7 @@ window.addEventListener('load', function() {
var s = document.createElement('script');
var src = 'paint.js';
if (isProduction()) {
- src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
+ src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
}
s.src = src;
document.body.appendChild(s);
diff --git a/_docs/public/example/perspective.content.html b/_docs/public/example/perspective.content.html
index 7deccf0ca..fb89faec9 100644
--- a/_docs/public/example/perspective.content.html
+++ b/_docs/public/example/perspective.content.html
@@ -31,7 +31,7 @@ window.addEventListener('load', function() {
var s = document.createElement('script');
var src = 'perspective.js';
if (isProduction()) {
- src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
+ src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
}
s.src = src;
document.body.appendChild(s);
diff --git a/_docs/public/example/rotate.content.html b/_docs/public/example/rotate.content.html
index e9c53ecae..d0aaa42c3 100644
--- a/_docs/public/example/rotate.content.html
+++ b/_docs/public/example/rotate.content.html
@@ -31,7 +31,7 @@ window.addEventListener('load', function() {
var s = document.createElement('script');
var src = 'rotate.js';
if (isProduction()) {
- src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
+ src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
}
s.src = src;
document.body.appendChild(s);
diff --git a/_docs/public/index.html b/_docs/public/index.html
index c114d4156..660ce1dec 100644
--- a/_docs/public/index.html
+++ b/_docs/public/index.html
@@ -119,15 +119,23 @@ pre {
Image.ReplacePixels
+ Add some experimental packages:
+
+ - exp/audio: Play music and sound
+ - exp/gamepad: Useful functions to configure gamepads
+ - exp/shape: Draw ellipses and arcs
+ - These packages are experimental and we don't guarantee backward compatibility.
+
+
Some bug fix
-2015-??-??
+2015-01-25
- v1.1.0 released.
- - Some bug fix
+ - Fixed some bugs.