The cms-tags plugin has been modified to exclude hard-coded '(...)' content
when rendering as="cloud". To restore this functionality, you can add
the following CSS to your theme:
cms-tags .tag-weight::before {
content: ' (';
}
cms-tags .tag-weight::after {
content: ')';
}
The backend has been significantly updated; ensure to copy backend/ and index.php
to include these new features.
Descriptions in files have been truncated to 160 characters by default to improve SEO. This may result in some content in your site being slightly shorter.
Types are now defined on the server to better support advanced backend features.
For client-only sites this is unnecessary, but default installations must move
CMS.addType(...) calls to the server-side config.php or theme settings.php.
This is generally a 1-to-1 swap, converting the JS / JSON syntax to PHP syntax.
Additionally, the new dynamic type declaration must be added to your theme index.html:
<script>
// Setup all page types supported by this theme
CMS.config.addTypes({{types}});
</script>