From 7f296a8dd9dabe39428e7cb972eff6963134c73a Mon Sep 17 00:00:00 2001 From: Awilum Date: Mon, 13 Apr 2020 19:30:57 +0300 Subject: [PATCH] chore(core): update changelog --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20e695ca..96788d06 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ /api/management/entries ``` * **core:** add Container for extending Flextype Container instead of Controller(s) +* **core:** add Application URL `url` into the common flextype settings #405 +* **core:** add new improved plugins sorting in the Plugins API. +* **core:** add dependencies validation for Plugins API #411 +* **core:** add manifest file `/src/flextype/config/flextype.yaml` for Flextype ### Bug Fixes @@ -35,6 +39,17 @@ ``` {{ registry.get('plugins.site.settings.title')|e('html') }} ``` +* **core:** We should add app `url` into the core instead of `base_url` and `site_url` #405 + + for e.g. this is a wrong code to access site url: + ``` + {{ registry.plugins.site.url }} + ``` + + and this is a correct code to access app url: + ``` + {{ registry.get('flextype.settings.url') }} + ``` # [0.9.7](https://github.com/flextype/flextype/compare/v0.9.6...v0.9.7) (2020-03-03)