Skip to content

Releases: foundation/supercollider

v1.5.2

23 Jul 22:31
v1.5.2
c48f407
Compare
Choose a tag to compare
  • Improved marked configuration
  • use highlight.js for code highlighting. default language set to html

v1.5.1

21 Jul 20:51
v1.5.1
71b54ca
Compare
Choose a tag to compare
  • updated dependencies
  • fixed version in CLI

v1.5.0

21 Jul 02:05
71b54ca
Compare
Choose a tag to compare
  • Updated dependencies
  • Updated project branding and urls

Version 1.4.4

25 Feb 17:18
83cdb9a
Compare
Choose a tag to compare

Changelog

Version 1.4.3

25 Feb 17:18
4e3a89f
Compare
Choose a tag to compare

Changelog

Version 1.4.1

26 Feb 00:00
Compare
Choose a tag to compare
  • Replaced jsdoc3-parser with jsdoc-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

23 Feb 22:22
Compare
Choose a tag to compare
  • Global data can be passed to the Handlebars instance with the data option in the config() 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

22 Feb 23:38
Compare
Choose a tag to compare

Prevent a fatal error if the config option is not passed in your settings.

Version 1.3.0

22 Feb 23:16
Compare
Choose a tag to compare
  • 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 silent option is now false by default.

Version 1.2.0

23 Dec 19:13
Compare
Choose a tag to compare

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.