Releases: ember-learn/ember-cli-addon-docs
Releases · ember-learn/ember-cli-addon-docs
v0.3.0
- [ BREAKING ] If you have any config for
ember-router-scrollin your dummy app'sconfig/environment, you can remove it. (The<body>element is the only scrollable element now.) - [ BREAKING ] Renames
{{docs-navbar}}to{{docs-header}} - [ BREAKING ]The setup for your dummy app's
/docs/template.hbsis simpler and should be updated. Check out the docs for example usage. - The navigation section of
{{docs-viewer}}has a new contextual component{{viewer.section}}that you should use to group your guides. (The nav layout was designed to expect a section for the first item). See the docs for example usage. - [ BREAKING ] Removes yield for alt-logo in docs-hero. The block below the byline is now yielded. (We will introduce a new api for custom project logos later).
- Adds
stylearg to docs-hero which can be "light" or "dark". Defaults to "light".
v0.2.4
v0.1.4
Breaking change: You now must always pass the file extension into the DocsSnippet component: {{docs-snippet name='foo.js'}}
Addon docs now works in Fastboot
And more bug fixes.
v0.1.3
Bug fixes.
v0.1.2
Style tweaks.
v0.1.1
More style updates. Updates:
- Use docs-link anywhere in your MD files where you were using link-to, as we now style by class rather than decendents.
v0.1.0
First release! We can start tracking "breaking" changes before 1.0.
If you were already using addon docs, this release
-
Removed the global app navbar. You can see how we're using it in this dummy app - just move
{{docs-navbar}}fromapplication.hbstoindex.hbs. -
Updated the design of the docs-viewer, to include the project name & version. This data is inferred from your project's
package.json.