mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-01-26 02:42:02 +01:00
doc: Use latest content
This commit is contained in:
parent
8110ddda94
commit
2787fd0aeb
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = '{{.Example.Name}}.js';
|
var src = '{{.Example.Name}}.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/{{.CurrentBranch}}/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
14
_docs/gen.go
14
_docs/gen.go
@ -97,15 +97,6 @@ func init() {
|
|||||||
stableVersion = lastStableVersion
|
stableVersion = lastStableVersion
|
||||||
}
|
}
|
||||||
|
|
||||||
func currentBranch() string {
|
|
||||||
r, err := ioutil.ReadFile("../.git/HEAD")
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
rr := strings.TrimSpace(string(r))
|
|
||||||
return regexp.MustCompile(`^ref: refs/heads/(.+)$`).FindStringSubmatch(rr)[1]
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
b, err := exec.Command("git", "show", "master:version.txt").Output()
|
b, err := exec.Command("git", "show", "master:version.txt").Output()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -300,9 +291,8 @@ func outputExampleContent(e *example) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
data := map[string]interface{}{
|
data := map[string]interface{}{
|
||||||
"Copyright": copyright,
|
"Copyright": copyright,
|
||||||
"CurrentBranch": currentBranch(),
|
"Example": e,
|
||||||
"Example": e,
|
|
||||||
}
|
}
|
||||||
if err := t.Funcs(funcs).Execute(f, data); err != nil {
|
if err := t.Funcs(funcs).Execute(f, data); err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'alphablending.js';
|
var src = 'alphablending.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'audio.js';
|
var src = 'audio.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,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 = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'font.js';
|
var src = 'font.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'gamepad.js';
|
var src = 'gamepad.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'hsv.js';
|
var src = 'hsv.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,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 = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,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 = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'masking.js';
|
var src = 'masking.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,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 = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'noise.js';
|
var src = 'noise.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,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 = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,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 = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'piano.js';
|
var src = 'piano.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,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 = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
@ -16,7 +16,7 @@ window.addEventListener('load', function() {
|
|||||||
var s = document.createElement('script');
|
var s = document.createElement('script');
|
||||||
var src = 'sprites.js';
|
var src = 'sprites.js';
|
||||||
if (isProduction()) {
|
if (isProduction()) {
|
||||||
src = '//hajimehoshi.github.io/ebiten.pagestorage/master/' + src;
|
src = '//hajimehoshi.github.io/ebiten.pagestorage/latest/' + src;
|
||||||
}
|
}
|
||||||
s.src = src;
|
s.src = src;
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
|
Loading…
Reference in New Issue
Block a user