How to make release notes
- Include links to the GitHub release and blog (if any) on GarageGames
- Use the JavaScript below to get the list of issues closed
// first: issues = [] // on each issue page: issues = issues.concat($('a.issue-title-link').map(function() { return { hr: $(this).attr('href'), text: this.innerHTML.trim()};}).get()) // finally: issues.map(function(i) { return '* [https://github.com' + i.hr + ' #' + i.hr.split('/').pop() + '] ' + i.text; }).join('\n')
- Remove the 'release' PRs
- Make a new page called release:release-number-in-words (for example, release:three-eight) and add stuff to it
- When you release, set the new page's parent to main:releases for it to appear on the main release page and homepage
To get contributors:
authors = [] authors = authors.concat($('span.opened-by a').map(function() { return $(this).text(); }).get()) $.unqiue(authors)
page revision: 6, last edited: 11 May 2015 11:42