Skip to content

Commit

Permalink
fix: add ".local" to hostname in users menus - closes #134
Browse files Browse the repository at this point in the history
  • Loading branch information
sassanh committed Jan 8, 2025
1 parent d650308 commit f85251a
Show file tree
Hide file tree
Showing 3 changed files with 451 additions and 447 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- refactor(core): rerender screen when rendering on the display is resumed like when returning from viewfinder to avoid artifacts
- refactor(docker): make composition menus responsive: showing spinner, etc
- fix: pass raw bytes to `DisplayRenderEvent` and `DisplayCompressedRenderEvent` to avoid encoding issues
- fix: add ".local" to hostname in users menus - closes #134

## Version 1.1.0

Expand Down
4 changes: 2 additions & 2 deletions ubo_app/services/050-users/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async def create_account() -> None:
NotificationsAddAction(
notification=Notification(
title='Account Info',
content=f'[size=18dp][b]host:[/b] {hostname}\n'
content=f'[size=18dp][b]host:[/b] {hostname}.local\n'
f'[b]user:[/b] {username}\n[b]pass:[/b] {password}[/size]',
importance=Importance.MEDIUM,
icon='󰀈',
Expand Down Expand Up @@ -185,7 +185,7 @@ async def reset_password(event: UsersResetPasswordEvent) -> None:
NotificationsAddAction(
notification=Notification(
title='Account Info',
content=f'[size=18dp][b]host:[/b] {hostname}\n'
content=f'[size=18dp][b]host:[/b] {hostname}.local\n'
f'[b]user:[/b] {username}\n[b]pass:[/b] {password}[/size]',
importance=Importance.MEDIUM,
icon='󰀈',
Expand Down
Loading

0 comments on commit f85251a

Please sign in to comment.