-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add information about versioning to intro.md #585
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,14 @@ The admin interface is a single-page app with the entry point stored in a static | |
</html> | ||
``` | ||
|
||
The example above uses the latest stable released version of Netlify CMS. If you want to a different release, you can explicitly declare it by editing `@~0.4`. If you want to use the latest version of Netlify CMS you can just omit the version declaration as such: | ||
|
||
``` | ||
https://unpkg.com/netlify-cms/dist/cms.js | ||
https://unpkg.com/netlify-cms/dist/cms.css | ||
``` | ||
Just keep in mind that the latest version might not be stable yet. Find out more about each version at the [releases page](https://github.com/netlify/netlify-cms/releases) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @guayom This looks great. One thing I just found is that you can avoid pre-release (alpha, beta) versions by doing There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @guayom Sorry for the confusion on this, I think @erquhart mentioned that we don't want to encourage people to just use the latest version. Maybe instead of this you could just link to the list of releases and give examples how to target them. Something like this might work:
|
||
|
||
The JS is also available via npm and can be integrated into your regular build process. | ||
|
||
### Editorial Workflow | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Second sentence: "If you want to use a different release," - the word "use" is omitted.
Once that's fixed, this is good to merge.
Thanks @guayom!