Skip to content

Commit

Permalink
fix(core): change the power-off menu item icon - closes #151
Browse files Browse the repository at this point in the history
  • Loading branch information
sassanh committed Aug 2, 2024
1 parent 17ae6ea commit e9541be
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- fix(audio): add a recovery mechanism for audio service to rebind the sound card if it is not available - closes #83
- fix(voice): remove the gap between sentences
- fix(core): change the power-off menu item icon - closes #151

## Version 0.15.5

Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu:mantic

ARG DEBIAN_FRONTEND=noninteractive
RUN apt -y update
RUN apt -y install gcc curl git libasound2-dev libcap-dev libegl1 libgl1 libmtdev1 libzbar0 python3 python3-dev file --no-install-recommends --no-install-suggests
RUN apt -y install gcc curl git libasound2-dev libcap-dev libegl1 libgl1 libmtdev1 libzbar0 python3 python3-dev file ca-certificates --no-install-recommends --no-install-suggests
RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH="${PATH}:/root/.local/bin"
WORKDIR /ubo-app
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
1,
1
],
"icon": "󰤂",
"icon": "󰐥",
"is_short": false,
"key": null,
"label": "Power off",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
1,
1
],
"icon": "󰤂",
"icon": "󰐥",
"is_short": false,
"key": null,
"label": "Power off",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@
1,
1
],
"icon": "󰤂",
"icon": "󰐥",
"is_short": false,
"key": null,
"label": "Power off",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@
1,
1
],
"icon": "󰤂",
"icon": "󰐥",
"is_short": false,
"key": null,
"label": "Power off",
Expand Down
2 changes: 1 addition & 1 deletion ubo_app/store/core/_menus.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def notifications_color(unread_count: int) -> str:
ActionItem(
label='Power off',
action=lambda: dispatch(PowerOffAction()),
icon='󰤂',
icon='󰐥',
),
],
),
Expand Down

0 comments on commit e9541be

Please sign in to comment.