From 9c508e0444f2516b0e1c9888c20cf22b873c8daa Mon Sep 17 00:00:00 2001
From: Hajime Hoshi
Compilation requires a C compiler like GCC to compile third party libaries used by Ebiten. You would need MinGW on Windows, and would need Xcode on Mac OS X.
+Let's get the Ebiten source code and compile it.
:; go get github.com/hajimehoshi/ebiten
If you want to run your game on a web browser, execute this:
:; go get github.com/gopherjs/gopherjs
@@ -90,11 +92,43 @@ pre {
Apps created with Ebiten
- Plasma by Peter Hellberg
- - go-inovation5 by Hajime Hoshi
+ - go-inovation by Hajime Hoshi
- Wired Logic by Martin Kirsche
+ - AwakEngine by Josh Deprez
Change Log
+2016-04-14
+
+ - v1.3.0-rc1 released.
+
+ - Added new platforms
+
+ - Windows
+ - Linux
+
+
+ - Drawing
+
+ - Added CompositeMode to change composite mode (e.g. masking or additive drawing)
+
+
+ - Audio
+
+ - Changed APIs (almost fixed)
+ - Added exp/audio/vorbis to decode Ogg/Vorbis stream
+ - Added exp/audio/wav to decode Wav stream
+
+
+ - Others
+
+ - Made most of functions concurrent-safe
+ - Bug fix
+
+
+
+
+
2016-02-28
- v1.2.0 released.