Skip to content

Commit

Permalink
Fix the missing module runtime error
Browse files Browse the repository at this point in the history
  • Loading branch information
nemuelw committed Nov 12, 2024
1 parent 0e6df7b commit 748ac46
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def __init__(self, parent=None):
title_label.setAlignment(Qt.AlignCenter)
layout.addWidget(title_label)

info_label = QLabel('Version 1.2.1\nUnofficial desktop app for Proton.')
info_label = QLabel('Version 1.2.4\nUnofficial desktop app for Proton.')
info_label.setAlignment(Qt.AlignCenter)
layout.addWidget(info_label)

Expand Down
4 changes: 2 additions & 2 deletions flathub/io.github.nemuelw.protodesk.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
</screenshots>

<releases>
<release version="1.2.1" date="2024-11-12">
<url type="details">https://github.com/nemuelw/protodesk/releases/tag/v1.2.1</url>
<release version="1.2.4" date="2024-11-12">
<url type="details">https://github.com/nemuelw/protodesk/releases/tag/v1.2.4</url>
<description>
<p>Initial release.</p>
</description>
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "protodesk"
version = "1.2.1"
version = "1.2.4"
description = "Unofficial desktop app for Proton"
authors = ["Nemuel Wainaina <[email protected]>"]
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.12,<3.14"
pyside6 = "^6.8.0.2"
pyside6 = {extras = ["all"], version = "^6.8.0.2"}

[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
Expand Down

0 comments on commit 748ac46

Please sign in to comment.