Skip to content

Commit

Permalink
Merge pull request #61 from OpenVoiceOS/release-1.0.1a1
Browse files Browse the repository at this point in the history
Release 1.0.1a1
  • Loading branch information
JarbasAl authored Nov 19, 2024
2 parents c7bbc11 + 95fada4 commit d4c4397
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))



Expand Down
1 change: 1 addition & 0 deletions ovos_gui/res/gui/qt5/SYSTEM_AnimatedImageFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions ovos_gui/res/gui/qt5/SYSTEM_HtmlFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Mycroft 1.0 as Mycroft
Mycroft.Delegate {
id: systemHtmlFrame
skillBackgroundColorOverlay: "#000000"
fillWidth: true

Loader {
id: webViewHtmlLoader
Expand Down
1 change: 1 addition & 0 deletions ovos_gui/res/gui/qt5/SYSTEM_ImageFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions ovos_gui/res/gui/qt5/SYSTEM_TextFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Mycroft.CardDelegate {
id: systemTextFrame
skillBackgroundColorOverlay: "#000000"
cardBackgroundOverlayColor: "#000000"
fillWidth: true

property bool hasTitle: sessionData.title.length > 0 ? true : false

Expand Down
1 change: 1 addition & 0 deletions ovos_gui/res/gui/qt5/SYSTEM_UrlFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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){
Expand Down
4 changes: 2 additions & 2 deletions ovos_gui/version.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d4c4397

Please sign in to comment.