Skip to content

Version 06.00.07 - 06.01.02

Choose a tag to compare

@raphael-m raphael-m released this 05 Jun 14:19
· 10573 commits to master since this release

Search

Data Improvements

var categories = CreateSource<ValueSort>(App.Data["Category"]);

or

// Sort by FullName
var sortedCats = CreateSource<ValueSort>(App.Data["Category"]);
sortedCats.Attributes = "Name";
Data.In.Add("Categories", sortedCats["Default"]);
// Just add the items which have the relationship to the category in the URL
var qsOfCat = CreateSource<RelationshipFilter>(App.Data["QandA"]);
qsOfCat.Relationship = "Categories";
qsOfCat.Filter = "[QueryString:Category]";
Data.In.Add("QandA", qsOfCat["Default"]);
public override void CustomizeData()
{
    // new features in 6.1 - the App DataSource CreateSource<App> and also the RelationshipFilter
    // Just add the items which have the relationship to the category in the URL
    var qsOfCat = CreateSource<RelationshipFilter>(App.Data["QandA"]);
    qsOfCat.Relationship = "Categories";
    qsOfCat.Filter = "[QueryString:Category]";
    Data.In.Add("QandA", qsOfCat["Default"]);
}

Installation Experience

  • The installation now has fewer steps...
  • If you have not configured anything in the content, it will suggest to auto-install some templates
  • if you have not configured any apps, it will suggest to auto-install some apps

Various improvements and bug fixes

  • Toolbar now shows draft-items with a red edit button
  • JS API had some fixes for generating the toolbars
  • better caching, faster data-import
  • linked files/pages using the File:47 syntax can now add parameters. This is especially usefull for image-resizing or jumping to an anchor on a page - like this File:720?w=…&h=333#
  • ...and much more