-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from ubopod/menu-placeholder
Menu placeholder
- Loading branch information
Showing
32 changed files
with
236 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
ubo_gui/assets/fonts/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].ttf filter=lfs diff=lfs merge=lfs -text | ||
ubo_gui/assets/fonts/ filter=lfs diff=lfs merge=lfs -text | ||
*.ttf filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,7 +178,6 @@ jobs: | |
with: | ||
packages-dir: dist | ||
verbose: true | ||
skip-existing: true | ||
|
||
release: | ||
name: Release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "ubo-gui" | ||
version = "0.9.9" | ||
version = "0.10.5" | ||
description = "GUI sdk for Ubo Pod" | ||
authors = ["Sassan Haradji <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -11,10 +11,10 @@ include = ['ubo_gui/assets/fonts/*'] | |
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
headless-kivy-pi = [ | ||
{ version = "^0.7.1", markers = "extra=='default'", extras = [ | ||
{ version = "^0.7.2", markers = "extra=='default'", extras = [ | ||
'default', | ||
] }, | ||
{ version = "^0.7.1", markers = "extra=='dev'", extras = [ | ||
{ version = "^0.7.2", markers = "extra=='dev'", extras = [ | ||
'dev', | ||
] }, | ||
] | ||
|
@@ -26,8 +26,8 @@ optional = true | |
|
||
[tool.poetry.group.dev.dependencies] | ||
poethepoet = "^0.24.4" | ||
pyright = "^1.1.353" | ||
ruff = "^0.3.1" | ||
pyright = "^1.1.355" | ||
ruff = "^0.3.4" | ||
|
||
[tool.poetry.extras] | ||
dev = ['headless-kivy-pi'] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""A half circle gauge widget.""" | ||
|
||
from __future__ import annotations | ||
|
||
import pathlib | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.