-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update menu showing current version and a button to update ubo-app
feat: add update system service to automatically install an update in boot time if it is already downloaded feat: add install script feat: setup polkit to let `ubo` user `reboot` and `poweroff` refactor: improve `deploy.sh` so that it hasn't a hardcoded username feat: assume the package is installed in `/opt/` instead of `/home/pi/` refactor: move service related files in `store/` to `store/services/` refactor: update to latest versions of `ubo-gui` and `python-redux`
- Loading branch information
Showing
48 changed files
with
1,025 additions
and
215 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
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
Large diffs are not rendered by default.
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-app" | ||
version = "0.7.14" | ||
version = "0.8.0" | ||
description = "Ubo main app, running on device initialization. A platform for running other apps." | ||
authors = ["Sassan Haradji <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -18,24 +18,29 @@ priority = "primary" | |
python = "^3.11" | ||
psutil = "^5.9.6" | ||
ubo-gui = [ | ||
{ version = "^0.7.7" }, | ||
{ version = "^0.7.7", markers = "extra=='dev'", extras = [ | ||
{ version = "^0.7.9", markers = "extra=='default'", extras = [ | ||
'default', | ||
] }, | ||
{ version = "^0.7.9", markers = "extra=='dev'", extras = [ | ||
'dev', | ||
] }, | ||
] | ||
headless-kivy-pi = [ | ||
{ version = "^0.5.12" }, | ||
{ version = "^0.5.12", markers = "extra=='default'", extras = [ | ||
'default', | ||
] }, | ||
{ version = "^0.5.12", markers = "extra=='dev'", extras = [ | ||
'dev', | ||
] }, | ||
] | ||
python-redux = "^0.9.12" | ||
python-redux = "^0.9.13" | ||
pyzbar = "^0.1.9" | ||
sdbus-networkmanager = { version = "^2.0.0", markers = "platform_machine=='aarch64'" } | ||
rpi_ws281x = { version = "^5.0.0", markers = "platform_machine=='aarch64'" } | ||
python-debouncer = "^0.1.3" | ||
adafruit-circuitpython-neopixel = "^6.3.11" | ||
pulsectl = "^23.5.2" | ||
aiohttp = "^3.9.1" | ||
|
||
[tool.poetry.group.dev] | ||
optional = true | ||
|
@@ -45,6 +50,7 @@ pyright = "^1.1.342" | |
ruff = "^0.1.9" | ||
|
||
[tool.poetry.extras] | ||
default = ['ubo-gui', 'headless-kivy-pi'] | ||
dev = ['ubo-gui', 'headless-kivy-pi'] | ||
|
||
[tool.poetry.scripts] | ||
|
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
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
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
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
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
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
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
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
Oops, something went wrong.