diff --git a/framework/core/CHANGELOG.md b/framework/core/CHANGELOG.md index b3702d23f..1a9ed20b9 100644 --- a/framework/core/CHANGELOG.md +++ b/framework/core/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.1.0-beta.14.1](https://github.com/flarum/core/compare/v0.1.0-beta.14...v0.1.0-beta.14.1) + +### Fixed + +- SuperTextarea component is not exported. +- Symfony dependencies do not match those depended on by Laravel (#2407) +- Scripts from textformatter aren't executed (#2415) +- Sub path installations have no page title. +- Losing focus of Composer area when coming from fullscreen. + ## [0.1.0-beta.14](https://github.com/flarum/core/compare/v0.1.0-beta.13...v0.1.0-beta.14) ### Added diff --git a/framework/core/js/src/common/Application.js b/framework/core/js/src/common/Application.js index 1fb2017f2..cfaac22aa 100644 --- a/framework/core/js/src/common/Application.js +++ b/framework/core/js/src/common/Application.js @@ -270,7 +270,7 @@ export default class Application { updateTitle() { const count = this.titleCount ? `(${this.titleCount}) ` : ''; - const pageTitleWithSeparator = this.title && m.route.get() !== '/' ? this.title + ' - ' : ''; + const pageTitleWithSeparator = this.title && m.route.get() !== this.forum.attribute('basePath') + '/' ? this.title + ' - ' : ''; const title = this.forum.attribute('title'); document.title = count + pageTitleWithSeparator + title; } diff --git a/framework/core/js/src/forum/components/Composer.js b/framework/core/js/src/forum/components/Composer.js index 97a06171a..186be935a 100644 --- a/framework/core/js/src/forum/components/Composer.js +++ b/framework/core/js/src/forum/components/Composer.js @@ -199,7 +199,7 @@ export default class Composer extends Component { */ animatePositionChange() { // When exiting full-screen mode: focus content - if (this.prevPosition === ComposerState.Position.FULLSCREEN) { + if (this.prevPosition === ComposerState.Position.FULLSCREEN && this.state.position === ComposerState.Position.NORMAL) { this.focus(); return; } diff --git a/framework/core/src/Foundation/Application.php b/framework/core/src/Foundation/Application.php index 6d12f3c75..10fa4448b 100644 --- a/framework/core/src/Foundation/Application.php +++ b/framework/core/src/Foundation/Application.php @@ -21,7 +21,7 @@ class Application * * @var string */ - const VERSION = '0.1.0-beta.14'; + const VERSION = '0.1.0-beta.14.1'; /** * The IoC container for the Flarum application.