Compare commits

..

No commits in common. "5657645801f00f62e7aba733263e21b9d4885376" and "cc723bdbbb30018359c41eae20f16a03b4a6b3e3" have entirely different histories.

2 changed files with 2 additions and 21 deletions

View File

@ -16,16 +16,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Export features
- Testing implementation
## [0.0.3] - 2025-07-07
### Changed
- Removed the dependency on textual-dev from pyproject.toml
## [0.0.2] - 2025-07-07
### Changed
- Changed the license in pyproject.toml to BSD
## [0.0.1] - 2025-07-06
### Added
@ -44,7 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Installation Method 1 not yet implemented
- No testing suite implemented yet
- Some features may be unstable in an alpha version
- Some features may be unstable in alpha version
[Unreleased]: https://github.com/username/pilgrim/compare/v0.0.1...HEAD

View File

@ -1027,13 +1027,4 @@ class EditEntryScreen(Screen):
# Tab: insert tab
elif self.focused is self.text_entry and event.key == "tab":
self.text_entry.insert('\t')
event.stop()
def on_footer_action(self, event) -> None:
"""Handle clicks on footer actions (Textual 3.x)."""
action = event.action
method = getattr(self, f"action_{action}", None)
if method:
method()
else:
self.notify(f"No action found for: {action}", severity="warning")
event.stop()