Skip to content

Commit

Permalink
Set font to bold and change version to 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
elkinaguas committed Oct 23, 2023
1 parent fd7fe4c commit 13f5a29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions clir/tools/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def command_table(commands: dict = {}):
table = Table(show_lines=True, box=box.ROUNDED, style="grey46")

table.add_column("ID 📇", style="white bold", no_wrap=True)
table.add_column("Command 💻", style="green", no_wrap=True)
table.add_column("Description 📕", style="magenta")
table.add_column("Tag 🏷️", style="cyan")
table.add_column("Command 💻", style="green bold", no_wrap=True)
table.add_column("Description 📕", style="magenta bold")
table.add_column("Tag 🏷️", style="cyan bold")

for indx, command in enumerate(commands):
desc_len = 50
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "clir"
version = "0.2.3"
version = "0.2.4"
description = "A clear and fast way to store and recover your commands"
authors = ["Elkin Aguas <[email protected]>"]
license = "MIT License"
Expand Down

0 comments on commit 13f5a29

Please sign in to comment.