This commit is contained in:
2025-05-07 19:14:19 +03:00
parent c4b3aa7db8
commit 07ac2af71e
3 changed files with 8 additions and 10 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
[project] [project]
name = "argenta" name = "argenta"
version = "1.0.0-beta1" version = "1.0.0-beta2"
description = "Python library for creating TUI" description = "Python library for building modular CLI applications"
authors = [{ name = "kolo", email = "kolo.is.main@gmail.com" }] authors = [{ name = "kolo", email = "kolo.is.main@gmail.com" }]
requires-python = ">=3.11, <4.0" requires-python = ">=3.11, <4.0"
readme = "README.md" readme = "README.md"
+2 -2
View File
@@ -238,7 +238,7 @@ class BaseApp:
:return: None :return: None
""" """
self._prompt = '[italic dim bold]What do you want to do?\n' self._prompt = '[italic dim bold]What do you want to do?\n'
self._initial_message = f'\n[bold red]{text2art(self._initial_message, font="tarty1")}\n\n' self._initial_message = f'\n[bold red]{text2art(self._initial_message, font="tarty1")}\n'
self._farewell_message = (f'[bold red]\n{text2art(f"\n{self._farewell_message}\n", font="chanky")}[/bold red]\n' self._farewell_message = (f'[bold red]\n{text2art(f"\n{self._farewell_message}\n", font="chanky")}[/bold red]\n'
f'[red i]github.com/koloideal/Argenta[/red i] | [red bold i]made by kolo[/red bold i]\n') f'[red i]github.com/koloideal/Argenta[/red i] | [red bold i]made by kolo[/red bold i]\n')
self._description_message_gen = lambda command, description: (f'[bold red]{escape("[" + command + "]")}[/bold red] ' self._description_message_gen = lambda command, description: (f'[bold red]{escape("[" + command + "]")}[/bold red] '
@@ -282,7 +282,7 @@ class BaseApp:
for message in self._messages_on_startup: for message in self._messages_on_startup:
self._print_func(message) self._print_func(message)
if self._messages_on_startup: if self._messages_on_startup:
print('\n\n') print('\n')
if not self._repeat_command_groups_description: if not self._repeat_command_groups_description:
self._print_command_group_description() self._print_command_group_description()
+4 -6
View File
@@ -124,12 +124,10 @@ class Router:
else: else:
status = Status.UNDEFINED_AND_INVALID_FLAGS status = Status.UNDEFINED_AND_INVALID_FLAGS
response = Response(invalid_value_flags=invalid_value_input_flags, return Response(invalid_value_flags=invalid_value_input_flags,
valid_flags=valid_input_flags, valid_flags=valid_input_flags,
status=status, status=status,
undefined_flags=undefined_input_flags,) undefined_flags=undefined_input_flags)
return response
@staticmethod @staticmethod