Releases: VirtoCommerce/vc-platform
Releases · VirtoCommerce/vc-platform
v2.13.1
- Migrated all manager theme styles to sass
- New setting value type
Json
- New platform setting
VirtoCommerce.Platform.UI.Customization
which allows to make simple UI customizations, by editing following JSON
{
"title": "Your company caption",
"logo": "Your company main logo url",
"contrast_logo": "Your company contrast main logo url to display in login form"
}
- New API
GET/POST api/platform/profiles
for working with user profile
v2.13.0
- Redesigned main menu. Now it is getting more close to Azure portal main menu.
- Display current license and some UI for licence activation (licence does not cause any functional limitation and is used only for information).
- Updated some platform nuget packages.
v2.12.9
- update ui-grid to v4.0.1
- minor ui-grid extension improvements (not it is available to change any grid options from custom module)
- minor modules management UI fixes
- use authorization token to download modules from private GitHub repositories
VirtoCommerce:Modules:GitHubAuthorizationToken
- app setting
v2.12.8
v2.12.7
v2.12.6
v2.12.5
- Add support for stream response in swagger API auto-generated document.
- Allow to use properties with custom types in notifications and use them in the Liquid templates.
Example:
Notification.cs
class OrderNotification { public CustomerOrder Order { get; set; } }
Liquid template
{{ customer_order.total }}