mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
doc: Remove Change Log section and go generate
This commit is contained in:
parent
a275f7e7cd
commit
a05d1bfa43
@ -36,6 +36,8 @@ pre {
|
||||
<li>Windows</li>
|
||||
<li>Mac OS X</li>
|
||||
<li>Linux</li>
|
||||
<li>Android (WIP)</li>
|
||||
<li>iOS (WIP)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://godoc.org/github.com/hajimehoshi/ebiten"><img src="https://godoc.org/github.com/hajimehoshi/ebiten?status.svg" alt="GoDoc Reference"></a></li>
|
||||
@ -126,125 +128,7 @@ game. There you have it, your first Ebiten game!</p>
|
||||
</ul>
|
||||
|
||||
<h2>Change Log</h2>
|
||||
<h3>2016-05-14</h3>
|
||||
<ul>
|
||||
<li>v1.3.0 released.
|
||||
<ul>
|
||||
<li>Fixed some bugs</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2016-04-23</h3>
|
||||
<ul>
|
||||
<li>v1.3.0-rc1 released.
|
||||
<ul>
|
||||
<li>Added new platforms
|
||||
<ul>
|
||||
<li>Windows</li>
|
||||
<li>Linux</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Graphics
|
||||
<ul>
|
||||
<li>Added CompositeMode to change composite mode (e.g. masking or additive drawing)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="https://godoc.org/github.com/hajimehoshi/ebiten/audio">Audio</a>
|
||||
<ul>
|
||||
<li>Moved from exp/audio to audio: No more experimental package!</li>
|
||||
<li>Changed APIs (almost fixed)</li>
|
||||
<li>Added <a href="https://godoc.org/github.com/hajimehoshi/ebiten/audio/vorbis">exp/audio/vorbis</a> to decode Ogg/Vorbis stream</li>
|
||||
<li>Added <a href="https://godoc.org/github.com/hajimehoshi/ebiten/audio/wav">exp/audio/wav</a> to decode Wav stream</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Others
|
||||
<ul>
|
||||
<li>Made most of functions concurrent-safe</li>
|
||||
<li>Bug fix</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2016-02-28</h3>
|
||||
<ul>
|
||||
<li>v1.2.0 released.
|
||||
<ul>
|
||||
<li>Fixed some bugs.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2016-02-17</h3>
|
||||
<ul>
|
||||
<li>v1.2.0-rc1 released.
|
||||
<ul>
|
||||
<li>Added support for gamepads on desktops and browsers</li>
|
||||
<li>Added support for touch events on browsers</li>
|
||||
<li>Added new functions for image rendering:
|
||||
<ul>
|
||||
<li>Image.ReplacePixels</li>
|
||||
<li>GeoM.Rotate</li>
|
||||
<li>ColorM.RotateHue</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Added some experimental packages:
|
||||
<ul>
|
||||
<li>exp/audio: Play music and sound</li>
|
||||
<li>exp/gamepad: Useful functions to configure gamepads</li>
|
||||
<li>These packages are experimental and we don't guarantee backward compatibility.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Deprecated some APIs:
|
||||
<ul>
|
||||
<li>TranslateGeo (Use GeoM's Translate instead)</li>
|
||||
<li>ScaleGeo (Use GoeM's Scale instead)</li>
|
||||
<li>RotateGeo (Use GoeM's Rotate instead)</li>
|
||||
<li>TranslateColor (Use ColorM's Translate instead)</li>
|
||||
<li>ScaleColor (Use ColorM's Scale instead)</li>
|
||||
<li>RotateHue (Use ColorM's RotateHue instead)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Fixed some bugs</li>
|
||||
<li>Performance optimization</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2015-01-25</h3>
|
||||
<ul>
|
||||
<li>v1.1.0 released.
|
||||
<ul>
|
||||
<li>Fixed some bugs.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2015-01-10</h3>
|
||||
<ul>
|
||||
<li>v1.1.0-rc1 released.
|
||||
<ul>
|
||||
<li>Support for web browsers: Ebiten now includes support for web browsers with GopherJS.</li>
|
||||
<li>Some API has changed:
|
||||
<ul>
|
||||
<li>ImagePart is deprecated. Use ImageParts interface instead.</li>
|
||||
<li>ColorM.Element and GeoM.Element's recievers changed from structs to pointers.</li>
|
||||
<li>A lot of keyboard keys have been added. KeyMax and MouseButtonMax were removed.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>The game is stopped when the window is not active.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2015-01-04</h3>
|
||||
<ul>
|
||||
<li>v1.0.0 released.
|
||||
<ul>
|
||||
<li>Nothing has changed from v1.0.0-rc1.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2014-12-29</h3>
|
||||
<ul>
|
||||
<li>v1.0.0-rc1 released.</li>
|
||||
</ul>
|
||||
<p>See <a href="https://github.com/hajimehoshi/ebiten/releases">GitHub releases page</a>.</p>
|
||||
|
||||
<h2>License</h2>
|
||||
<h3>Ebiten</h3>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Copyright 2013 Hajime Hoshi
|
||||
Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@ -50,6 +50,8 @@ pre {
|
||||
<li>Windows</li>
|
||||
<li>Mac OS X</li>
|
||||
<li>Linux</li>
|
||||
<li>Android (WIP)</li>
|
||||
<li>iOS (WIP)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://godoc.org/github.com/hajimehoshi/ebiten"><img src="https://godoc.org/github.com/hajimehoshi/ebiten?status.svg" alt="GoDoc Reference"></a></li>
|
||||
@ -138,129 +140,11 @@ game. There you have it, your first Ebiten game!</p>
|
||||
</ul>
|
||||
|
||||
<h2>Change Log</h2>
|
||||
<h3>2016-05-14</h3>
|
||||
<ul>
|
||||
<li>v1.3.0 released.
|
||||
<ul>
|
||||
<li>Fixed some bugs</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2016-04-23</h3>
|
||||
<ul>
|
||||
<li>v1.3.0-rc1 released.
|
||||
<ul>
|
||||
<li>Added new platforms
|
||||
<ul>
|
||||
<li>Windows</li>
|
||||
<li>Linux</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Graphics
|
||||
<ul>
|
||||
<li>Added CompositeMode to change composite mode (e.g. masking or additive drawing)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="https://godoc.org/github.com/hajimehoshi/ebiten/audio">Audio</a>
|
||||
<ul>
|
||||
<li>Moved from exp/audio to audio: No more experimental package!</li>
|
||||
<li>Changed APIs (almost fixed)</li>
|
||||
<li>Added <a href="https://godoc.org/github.com/hajimehoshi/ebiten/audio/vorbis">exp/audio/vorbis</a> to decode Ogg/Vorbis stream</li>
|
||||
<li>Added <a href="https://godoc.org/github.com/hajimehoshi/ebiten/audio/wav">exp/audio/wav</a> to decode Wav stream</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Others
|
||||
<ul>
|
||||
<li>Made most of functions concurrent-safe</li>
|
||||
<li>Bug fix</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2016-02-28</h3>
|
||||
<ul>
|
||||
<li>v1.2.0 released.
|
||||
<ul>
|
||||
<li>Fixed some bugs.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2016-02-17</h3>
|
||||
<ul>
|
||||
<li>v1.2.0-rc1 released.
|
||||
<ul>
|
||||
<li>Added support for gamepads on desktops and browsers</li>
|
||||
<li>Added support for touch events on browsers</li>
|
||||
<li>Added new functions for image rendering:
|
||||
<ul>
|
||||
<li>Image.ReplacePixels</li>
|
||||
<li>GeoM.Rotate</li>
|
||||
<li>ColorM.RotateHue</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Added some experimental packages:
|
||||
<ul>
|
||||
<li>exp/audio: Play music and sound</li>
|
||||
<li>exp/gamepad: Useful functions to configure gamepads</li>
|
||||
<li>These packages are experimental and we don't guarantee backward compatibility.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Deprecated some APIs:
|
||||
<ul>
|
||||
<li>TranslateGeo (Use GeoM's Translate instead)</li>
|
||||
<li>ScaleGeo (Use GoeM's Scale instead)</li>
|
||||
<li>RotateGeo (Use GoeM's Rotate instead)</li>
|
||||
<li>TranslateColor (Use ColorM's Translate instead)</li>
|
||||
<li>ScaleColor (Use ColorM's Scale instead)</li>
|
||||
<li>RotateHue (Use ColorM's RotateHue instead)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Fixed some bugs</li>
|
||||
<li>Performance optimization</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2015-01-25</h3>
|
||||
<ul>
|
||||
<li>v1.1.0 released.
|
||||
<ul>
|
||||
<li>Fixed some bugs.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2015-01-10</h3>
|
||||
<ul>
|
||||
<li>v1.1.0-rc1 released.
|
||||
<ul>
|
||||
<li>Support for web browsers: Ebiten now includes support for web browsers with GopherJS.</li>
|
||||
<li>Some API has changed:
|
||||
<ul>
|
||||
<li>ImagePart is deprecated. Use ImageParts interface instead.</li>
|
||||
<li>ColorM.Element and GeoM.Element's recievers changed from structs to pointers.</li>
|
||||
<li>A lot of keyboard keys have been added. KeyMax and MouseButtonMax were removed.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>The game is stopped when the window is not active.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2015-01-04</h3>
|
||||
<ul>
|
||||
<li>v1.0.0 released.
|
||||
<ul>
|
||||
<li>Nothing has changed from v1.0.0-rc1.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h3>2014-12-29</h3>
|
||||
<ul>
|
||||
<li>v1.0.0-rc1 released.</li>
|
||||
</ul>
|
||||
<p>See <a href="https://github.com/hajimehoshi/ebiten/releases">GitHub releases page</a>.</p>
|
||||
|
||||
<h2>License</h2>
|
||||
<h3>Ebiten</h3>
|
||||
<pre>Copyright 2013 Hajime Hoshi
|
||||
<pre>Copyright 2013 The Ebiten Authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
Loading…
Reference in New Issue
Block a user