mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-25 03:08:54 +01:00
doc: Release 1.1.0
This commit is contained in:
parent
e1336c2eba
commit
d455233e32
@ -105,11 +105,11 @@ pre {
|
|||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3>2015-??-??</h3>
|
<h3>2015-01-25</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>v1.1.0 released.
|
<li>v1.1.0 released.
|
||||||
<ul>
|
<ul>
|
||||||
<li>Some bug fix</li>
|
<li>Fixed some bugs.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -31,7 +31,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'blocks.js';
|
var src = 'blocks.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
|
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -31,7 +31,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'hue.js';
|
var src = 'hue.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
|
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -31,7 +31,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'keyboard.js';
|
var src = 'keyboard.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
|
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -31,7 +31,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'mosaic.js';
|
var src = 'mosaic.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
|
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -31,7 +31,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'paint.js';
|
var src = 'paint.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
|
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -31,7 +31,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'perspective.js';
|
var src = 'perspective.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
|
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -31,7 +31,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'rotate.js';
|
var src = 'rotate.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/audio/' + src;
|
src = 'http://hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -119,15 +119,23 @@ pre {
|
|||||||
<li>Image.ReplacePixels</li>
|
<li>Image.ReplacePixels</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</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>
|
<li>Some bug fix</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3>2015-??-??</h3>
|
<h3>2015-01-25</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>v1.1.0 released.
|
<li>v1.1.0 released.
|
||||||
<ul>
|
<ul>
|
||||||
<li>Some bug fix</li>
|
<li>Fixed some bugs.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
Loading…
Reference in New Issue
Block a user