ebiten/_docs
2016-02-17 03:11:32 +09:00
..
public Update version to 1.3.0-alpha 2016-02-17 01:37:28 +09:00
server doc: Use 'go generate' again 2016-02-16 00:35:28 +09:00
.gitignore Bug fix: example -> examples in doc 2016-02-13 23:02:54 +09:00
example.tmpl.html docs: Add <title> to examples 2015-01-09 03:29:59 +09:00
examplecontent.tmpl.html doc: Bug fix: Don't specify http or https (#150) 2016-02-15 11:35:05 +09:00
gen.go doc: Update descriptions 2016-02-16 03:05:19 +09:00
generate.go doc: Use 'go generate' again 2016-02-16 00:35:28 +09:00
index.tmpl.html doc: Fix the release date of 1.2.0-rc1 2016-02-17 01:34:30 +09:00
README.md doc: Add comment about git push -f 2016-02-17 03:11:32 +09:00

How to generate the doc

go generate .

How to run HTTP server

go run server/main.go

How to deploy

git subtree push --prefix _docs/public/ origin gh-pages

How to update the version

  1. Fix the release date in the HTML
  2. Create a new branch from master branch with a version name like 1.2
  3. In master branch:
  4. Update version.txt in the master branch like 1.3.0-alpha
  5. In the new branch:
  6. Update version.txt like 1.2.0-rc1
  7. Generate the doc
  8. Add tag like v1.2.0-rc1
  9. Deploy JavaScript files to github.com/hajimehoshi/ebiten.pagestorage
  10. Deploy the doc (You might see confliction. Unfortunately, we might have to use git push -f (See https://gist.github.com/cobyism/4730490#gistcomment-1394421))