Skip to content

Commit

Permalink
Merge pull request #33 from thetacom/31-infopanel-cannot-render-windo…
Browse files Browse the repository at this point in the history
…wspath-owner

31 infopanel cannot render windowspath owner
  • Loading branch information
thetacom committed Mar 17, 2024
2 parents 776158a + 60acdb3 commit a5f4219
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hexabyte/widgets/info_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ def update_stats(self) -> None:
kb_size = file_size // KB
size_value.update(f"{kb_size:,} KB ({file_size:,} bytes)")
owner_value = self.query_one("#owner-value", Static)
owner_value.update(filepath.owner)
owner_value.update(filepath.owner())

group_value = self.query_one("#group-value", Static)
group_value.update(filepath.group)
group_value.update(filepath.group())

perm_value = self.query_one("#permissions-value", Static)
perm_value.update(stat.filemode(stats.st_mode))
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hexabyte"
version = "0.8.5"
version = "0.8.6"
description = "A modern, modular, and robust TUI hex editor."
keywords = ["commandline", "hexeditor", "binary", "hexadecimal", "raw", "byteview", "bytes"]
repository = "https://github.com/thetacom/hexabyte"
Expand All @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development",
"Topic :: Utilities",
Expand Down

0 comments on commit a5f4219

Please sign in to comment.