mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-24 18:58:54 +01:00
doc: Release 1.1.0
This commit is contained in:
parent
e1336c2eba
commit
d455233e32
@ -105,11 +105,11 @@ pre {
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2015-??-??</h3>
|
||||
<h3>2015-01-25</h3>
|
||||
<ul>
|
||||
<li>v1.1.0 released.
|
||||
<ul>
|
||||
<li>Some bug fix</li>
|
||||
<li>Fixed some bugs.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -119,15 +119,23 @@ pre {
|
||||
<li>Image.ReplacePixels</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Add some experimental packages:
|
||||
<ul>
|
||||
<li>exp/audio: Play music and sound</li>
|
||||
<li>exp/gamepad: Useful functions to configure gamepads</li>
|
||||
<li>exp/shape: Draw ellipses and arcs</li>
|
||||
<li>These packages are experimental and we don't guarantee backward compatibility.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Some bug fix</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2015-??-??</h3>
|
||||
<h3>2015-01-25</h3>
|
||||
<ul>
|
||||
<li>v1.1.0 released.
|
||||
<ul>
|
||||
<li>Some bug fix</li>
|
||||
<li>Fixed some bugs.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
Loading…
Reference in New Issue
Block a user