Releases: foundation/supercollider
Releases · foundation/supercollider
v1.5.2
v1.5.1
- updated dependencies
- fixed version in CLI
v1.5.0
- Updated dependencies
- Updated project branding and urls
Version 1.4.4
Version 1.4.3
Changelog
- upgrade handlebars to 4.0.11 (#16, @DanielRuf)
Version 1.4.1
- Replaced
jsdoc3-parser
withjsdoc-api
as the library used to pull documentation data for the JavaScript adapter. This gets us JSDoc 3.4 support, which gets us ES6 support! - The library has a full test suite now.
Version 1.4.0
- Global data can be passed to the Handlebars instance with the
data
option in theconfig()
function. Thanks @thompsongl! - The Supercollider class is now exported separate from the main module export, which returns a new instance of the class.
var Supercollider = require('supercollider').Supercollider;
// Why did I pick such a long name for a library?
var s = new Supercollider();
Version 1.3.1
Prevent a fatal error if the config
option is not passed in your settings.
Version 1.3.0
- The documentation is now more extensive and split into multiple pages.
- Added a search results tool, which takes the data culled from each page and creates a JSON file of search results, which can be fed into a search library.
- The
.searchConfig()
function configures search results options. - The
.buildSearch()
function creates the search results tree from the existing documentation set.
- The
- The
silent
option is nowfalse
by default.
Version 1.2.0
Adds console logging as pages are processed, showing the process time and which adapters were used for each page. This can be disabled with the silent
config option.