Skip to content

Commit

Permalink
Version 0.1.3.
Browse files Browse the repository at this point in the history
Bug fixed.
  • Loading branch information
ATATC committed Dec 25, 2023
1 parent 3cb0777 commit 99b51b9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion leads_vec/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "4c6d5e07"
__version__: str = "3cb07775"
6 changes: 4 additions & 2 deletions leads_vec/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,11 @@ def switch_atbs():
manager["atbs"] = Button(button_text="ATBS ON", key=switch_atbs, font=BODY,
size=(round(manager.window().width() / 25.858585), None))

uim = initialize(Window(1080, 720,
uim = initialize(Window(720, 480,
config.refresh_rate,
CustomRuntimeData()), render, context, main_controller)
CustomRuntimeData(),
fullscreen=False,
no_title_bar=False), render, context, main_controller)

class CustomCallback(Callback):
def on_fail(self, service: Service, error: Exception) -> None:
Expand Down
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.2",
version="0.1.3",
author="ProjectNeura",
author_email="[email protected]",
description="Lightweight Embedded Assisted Driving System",
Expand Down

0 comments on commit 99b51b9

Please sign in to comment.