Skip to content

Commit

Permalink
Bump versions backend 1.8.0 & plasmoid 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
luisbocanegra committed Mar 12, 2024
1 parent 1f2e1b2 commit 1d8db1a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/kde_material_you_colors/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import sysconfig
from kde_material_you_colors.utils.utils import find_executable

__version__ = "1.7.1"
__version__ = "1.8.0"
USERNAME = getpass.getuser()
USER_HAS_PYWAL = importlib.util.find_spec("pywal") is not None
HOME = str(Path.home())
Expand Down
1 change: 0 additions & 1 deletion src/plasmoid/package/contents/ui/CompactRepresentation.qml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ MouseArea {
hoverEnabled: true
onPressed: wasExpanded = main.expanded
onClicked: main.expanded = !wasExpanded
onEntered: console.log("ENTERED");

property bool isVertical: plasmoid.formFactor === PlasmaCore.Types.Vertical
anchors.fill: parent
Expand Down
2 changes: 1 addition & 1 deletion src/plasmoid/package/contents/ui/FullRepresentation.qml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ColumnLayout {
property string backendVersionCommand: execPath + ' --version'
property string backendVersion: ""
property string backendVersionDisplay: backendVersion !== "" ? backendVersion : "unknown"
property string recommendedVersion: "1.7.1"
property string recommendedVersion: "1.8.0"
property string versionStatus: "same"
property string versionMessage: "You're using a "+versionStatus+" version of the backend (<strong>" + backendVersionDisplay + "</strong>) than this widget version was written for (<strong>"+ recommendedVersion+ "</strong>). Some features may be missing or not work as intended. You can find the latest versions of the widget <a href='https://store.kde.org/p/2073783'>here</a> and the backend <a href='https://github.com/luisbocanegra/kde-material-you-colors'>here</a>."
property bool showVersionMessage: false
Expand Down
2 changes: 1 addition & 1 deletion src/plasmoid/package/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"Icon":"preferences-desktop-theme-global",
"License": "GPL-3.0",
"Name": "KDE Material You Colors",
"Version": "0.2.1",
"Version": "0.3.0",
"Website": "https://github.com/luisbocanegra/kde-material-you-colors"
},
"X-Plasma-NotificationArea": true,
Expand Down

0 comments on commit 1d8db1a

Please sign in to comment.