Skip to content

Releases: 2sic/2sxc

Version 06.01.08

Choose a tag to compare

@raphael-m raphael-m released this 22 Aug 15:26
  • Fixed bug when opening Apps Management
  • Improved help on template edit dialog

Version 06.01.07

Choose a tag to compare

@raphael-m raphael-m released this 22 Aug 13:32

Support for Module Sharing in DNN Evoq

Version 06.01.06

Choose a tag to compare

@raphael-m raphael-m released this 20 Aug 19:09
v06.01.06

Bugfix - "Can't execute code from a freed script"

Version 06.01.05

Choose a tag to compare

@raphael-m raphael-m released this 04 Jul 14:33

Fixed ClientDependency priorities for JS-Files (caused an error in some DNN versions).

Version 06.01.04

Choose a tag to compare

@raphael-m raphael-m released this 04 Jul 09:52

Fixed issue - error message when editing an entity without EntityPicker field

Version 06.01.03

Choose a tag to compare

@raphael-m raphael-m released this 03 Jul 18:18

New features

  • Related entities can be sorted manually (sponsored feature, implemented using AngularJS)
  • Improved language-settings discover-ability
  • Priority in the Client-Dependency (enable-optimization on JS) allows you to configure sorting/priority in JS-includes

Minor bug fixes

  • Tokens with Fallback now work properly [Querystring:Category||27] returns 27 if the parameter doesn't exist. This can even be cascaded such as [QueryString:Category||[[AppSettings:DefaultCategory]]
  • file-import on apps had a bug
  • unpublished save is now compatible to Evoq-permissions (they are different from Community edition)

Version 06.00.07 - 06.01.02

Choose a tag to compare

@raphael-m raphael-m released this 05 Jun 14:19

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

Version 06.01.01

Version 06.01.01 Pre-release
Pre-release

Choose a tag to compare

@raphael-m raphael-m released this 05 Jun 09:05

Release notes: Coming soon...

Version 06.01.00

Version 06.01.00 Pre-release
Pre-release

Choose a tag to compare

@raphael-m raphael-m released this 04 Jun 17:55

Release notes: Coming soon...

Version 06.00.07

Choose a tag to compare

@raphael-m raphael-m released this 19 May 06:53

#2SexyContent v06.00.07 (stable)

  • Some bugfixes