Skip to content

Commit

Permalink
refactor(core): render the next and previous menu items in place of f…
Browse files Browse the repository at this point in the history
…ooter/header when there is such item #76

fix(notifications): scrollbar doesn't wrap around when scrolling up anymore
  • Loading branch information
sassanh committed Apr 30, 2024
1 parent b7e6930 commit b01e669
Show file tree
Hide file tree
Showing 37 changed files with 578 additions and 370 deletions.
1 change: 0 additions & 1 deletion .github/workflows/integration_delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,6 @@ jobs:
with:
packages-dir: dist
verbose: true
skip-existing: true

release:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

- refactor(core): reorganize settings menu #69
- refactor(style): add icons to menu titles
- refactor(core): make pagination more obvious #69
- refactor(core): render the next and previous menu items in place of footer/header
when there is such item #76
- fix(notifications): scrollbar doesn't wrap around when scrolling up anymore

## Version 0.13.2

Expand Down
14 changes: 7 additions & 7 deletions poetry.lock

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

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ubo-app"
version = "0.13.2"
version = "0.13.3"
description = "Ubo main app, running on device initialization. A platform for running other apps."
authors = ["Sassan Haradji <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -18,10 +18,10 @@ priority = "primary"
python = "^3.11"
psutil = "^5.9.8"
ubo-gui = [
{ version = "^0.10.8", markers = "extra=='default'", extras = [
{ version = "^0.11.2", markers = "extra=='default'", extras = [
"default",
] },
{ version = "^0.10.8", markers = "extra=='dev'", extras = [
{ version = "^0.11.2", markers = "extra=='dev'", extras = [
"dev",
] },
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"icon": "󰍜",
"is_short": true,
"label": "",
"opacity": null,
"sub_menu": {
"items": [
{
Expand All @@ -28,10 +29,11 @@
"icon": "󰀻",
"is_short": false,
"label": "Apps",
"opacity": null,
"sub_menu": {
"items": [],
"placeholder": "No apps",
"title": "Apps"
"title": "󰀻Apps"
}
},
{
Expand All @@ -45,6 +47,7 @@
"icon": "",
"is_short": false,
"label": "Settings",
"opacity": null,
"sub_menu": {
"items": [
{
Expand All @@ -55,9 +58,10 @@
1,
1
],
"icon": null,
"icon": "󰛳",
"is_short": false,
"label": "Connectivity",
"label": "Network",
"opacity": null,
"sub_menu": {
"items": [
{
Expand All @@ -71,6 +75,7 @@
"icon": "󰖩",
"is_short": false,
"label": "WiFi",
"opacity": null,
"sub_menu": {
"items": [
{
Expand All @@ -84,7 +89,8 @@
],
"icon": "󱛃",
"is_short": false,
"label": "Add"
"label": "Add",
"opacity": null
},
{
"action": "",
Expand All @@ -97,7 +103,8 @@
],
"icon": "󱖫",
"is_short": false,
"label": "Select"
"label": "Select",
"opacity": null
}
],
"placeholder": null,
Expand All @@ -106,7 +113,7 @@
}
],
"placeholder": "No settings in this category",
"title": "Connectivity"
"title": "󰛳Network"
}
},
{
Expand All @@ -117,13 +124,14 @@
1,
1
],
"icon": null,
"icon": "󰖤",
"is_short": false,
"label": "Interface",
"label": "Accessibility",
"opacity": null,
"sub_menu": {
"items": [],
"placeholder": "No settings in this category",
"title": "Interface"
"title": "󰖤Accessibility"
}
},
{
Expand All @@ -134,13 +142,14 @@
1,
1
],
"icon": null,
"icon": "󰟻",
"is_short": false,
"label": "System",
"label": "Utilities",
"opacity": null,
"sub_menu": {
"items": [],
"placeholder": "No settings in this category",
"title": "System"
"title": "󰟻Utilities"
}
},
{
Expand All @@ -151,18 +160,19 @@
1,
1
],
"icon": null,
"icon": "󰀻",
"is_short": false,
"label": "Apps",
"opacity": null,
"sub_menu": {
"items": [],
"placeholder": "No settings in this category",
"title": "Apps"
"title": "󰀻Apps"
}
}
],
"placeholder": null,
"title": "Settings"
"title": "Settings"
}
},
{
Expand All @@ -176,6 +186,7 @@
"icon": "",
"is_short": false,
"label": "About",
"opacity": null,
"sub_menu": {
"heading": "Ubo v0.0.0",
"items": [
Expand All @@ -184,17 +195,18 @@
"color": "#000000",
"icon": "󰄬",
"is_short": false,
"label": "Already up to date!"
"label": "Already up to date!",
"opacity": null
}
],
"placeholder": null,
"sub_heading": "A universal dashboard for your Raspberry Pi",
"title": "About"
"title": "About"
}
}
],
"placeholder": null,
"title": "Main"
"title": "󰍜Main"
}
},
{
Expand All @@ -203,6 +215,7 @@
"icon": "",
"is_short": true,
"label": "",
"opacity": null,
"sub_menu": {
"items": [],
"placeholder": "No notifications",
Expand All @@ -220,7 +233,8 @@
],
"icon": "󰐥",
"is_short": true,
"label": "Turn off"
"label": "Turn off",
"opacity": null
}
],
"placeholder": null,
Expand Down
Loading

0 comments on commit b01e669

Please sign in to comment.