Skip to content

Commit

Permalink
Version 0.1.1.
Browse files Browse the repository at this point in the history
Trying to fix #17.
  • Loading branch information
ATATC committed Dec 25, 2023
1 parent 4090fbf commit 4c6d5e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions leads_dashboard/prototype.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ def __init__(self,
self._root: _Window = _Window(title,
size=(None if width < 0 else width, None if height < 0 else height),
text_justification="center",
no_titlebar=no_title_bar,
disable_minimize=True)
no_titlebar=no_title_bar)
self._width: int = _Window.get_screen_size()[0] if fullscreen else width
self._height: int = _Window.get_screen_size()[1] if fullscreen else height
self._fullscreen: bool = fullscreen
Expand Down
2 changes: 1 addition & 1 deletion leads_vec/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "f9c12f65"
__version__: str = "4090fbf8"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="leads",
version="0.1.0",
version="0.1.1",
author="ProjectNeura",
author_email="[email protected]",
description="Lightweight Embedded Assisted Driving System",
Expand Down

0 comments on commit 4c6d5e0

Please sign in to comment.