diff --git a/CHANGELOG.md b/CHANGELOG.md index d7459fc..9acc401 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ # Changelog -## [1.0.0a1](https://github.com/OpenVoiceOS/ovos-gui/tree/1.0.0a1) (2024-11-05) +## [1.0.1a1](https://github.com/OpenVoiceOS/ovos-gui/tree/1.0.1a1) (2024-11-19) -[Full Changelog](https://github.com/OpenVoiceOS/ovos-gui/compare/0.2.3...1.0.0a1) +[Full Changelog](https://github.com/OpenVoiceOS/ovos-gui/compare/1.0.0...1.0.1a1) -**Breaking changes:** +**Merged pull requests:** -- drop the gui bus upload of resources [\#53](https://github.com/OpenVoiceOS/ovos-gui/pull/53) ([JarbasAl](https://github.com/JarbasAl)) +- fix:full\_width\_pages [\#60](https://github.com/OpenVoiceOS/ovos-gui/pull/60) ([JarbasAl](https://github.com/JarbasAl)) diff --git a/ovos_gui/res/gui/qt5/SYSTEM_AnimatedImageFrame.qml b/ovos_gui/res/gui/qt5/SYSTEM_AnimatedImageFrame.qml index 1df514c..213e34a 100644 --- a/ovos_gui/res/gui/qt5/SYSTEM_AnimatedImageFrame.qml +++ b/ovos_gui/res/gui/qt5/SYSTEM_AnimatedImageFrame.qml @@ -10,6 +10,7 @@ Mycroft.Delegate { skillBackgroundColorOverlay: sessionData.background_color ? sessionData.background_color : "#000000" property bool hasTitle: sessionData.title.length > 0 ? true : false property bool hasCaption: sessionData.caption.length > 0 ? true : false + fillWidth: true ColumnLayout { id: systemImageFrameLayout diff --git a/ovos_gui/res/gui/qt5/SYSTEM_HtmlFrame.qml b/ovos_gui/res/gui/qt5/SYSTEM_HtmlFrame.qml index fb5dcc6..8cf023a 100644 --- a/ovos_gui/res/gui/qt5/SYSTEM_HtmlFrame.qml +++ b/ovos_gui/res/gui/qt5/SYSTEM_HtmlFrame.qml @@ -8,6 +8,7 @@ import Mycroft 1.0 as Mycroft Mycroft.Delegate { id: systemHtmlFrame skillBackgroundColorOverlay: "#000000" + fillWidth: true Loader { id: webViewHtmlLoader diff --git a/ovos_gui/res/gui/qt5/SYSTEM_ImageFrame.qml b/ovos_gui/res/gui/qt5/SYSTEM_ImageFrame.qml index 7eb8ba4..a9a374b 100644 --- a/ovos_gui/res/gui/qt5/SYSTEM_ImageFrame.qml +++ b/ovos_gui/res/gui/qt5/SYSTEM_ImageFrame.qml @@ -10,6 +10,7 @@ Mycroft.Delegate { skillBackgroundColorOverlay: sessionData.background_color ? sessionData.background_color : "#000000" property bool hasTitle: sessionData.title.length > 0 ? true : false property bool hasCaption: sessionData.caption.length > 0 ? true : false + fillWidth: true ColumnLayout { id: systemImageFrameLayout diff --git a/ovos_gui/res/gui/qt5/SYSTEM_TextFrame.qml b/ovos_gui/res/gui/qt5/SYSTEM_TextFrame.qml index ebe7985..ee91373 100644 --- a/ovos_gui/res/gui/qt5/SYSTEM_TextFrame.qml +++ b/ovos_gui/res/gui/qt5/SYSTEM_TextFrame.qml @@ -9,6 +9,7 @@ Mycroft.CardDelegate { id: systemTextFrame skillBackgroundColorOverlay: "#000000" cardBackgroundOverlayColor: "#000000" + fillWidth: true property bool hasTitle: sessionData.title.length > 0 ? true : false diff --git a/ovos_gui/res/gui/qt5/SYSTEM_UrlFrame.qml b/ovos_gui/res/gui/qt5/SYSTEM_UrlFrame.qml index 33b197a..29c915a 100644 --- a/ovos_gui/res/gui/qt5/SYSTEM_UrlFrame.qml +++ b/ovos_gui/res/gui/qt5/SYSTEM_UrlFrame.qml @@ -8,6 +8,7 @@ import Mycroft 1.0 as Mycroft Mycroft.AbstractDelegate { id: systemUrlFrame property var pageUrl: sessionData.url + fillWidth: true onPageUrlChanged: { if(typeof pageUrl !== "undefined" || typeof pageUrl !== null){ diff --git a/ovos_gui/version.py b/ovos_gui/version.py index a3d5a94..4aed667 100644 --- a/ovos_gui/version.py +++ b/ovos_gui/version.py @@ -1,6 +1,6 @@ # START_VERSION_BLOCK VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_BUILD = 0 -VERSION_ALPHA = 0 +VERSION_BUILD = 1 +VERSION_ALPHA = 1 # END_VERSION_BLOCK