mirror of https://github.com/gmbrax/Pilgrim.git
Compare commits
4 Commits
cc723bdbbb
...
5657645801
| Author | SHA1 | Date |
|---|---|---|
|
|
5657645801 | |
|
|
71cb79aa40 | |
|
|
7d882b5f21 | |
|
|
4f1740f575 |
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -16,6 +16,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Export features
|
- Export features
|
||||||
- Testing implementation
|
- 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
|
## [0.0.1] - 2025-07-06
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
@ -34,7 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
- Installation Method 1 not yet implemented
|
- Installation Method 1 not yet implemented
|
||||||
- No testing suite implemented yet
|
- No testing suite implemented yet
|
||||||
- Some features may be unstable in alpha version
|
- Some features may be unstable in an alpha version
|
||||||
|
|
||||||
[Unreleased]: https://github.com/username/pilgrim/compare/v0.0.1...HEAD
|
[Unreleased]: https://github.com/username/pilgrim/compare/v0.0.1...HEAD
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1027,4 +1027,13 @@ class EditEntryScreen(Screen):
|
||||||
# Tab: insert tab
|
# Tab: insert tab
|
||||||
elif self.focused is self.text_entry and event.key == "tab":
|
elif self.focused is self.text_entry and event.key == "tab":
|
||||||
self.text_entry.insert('\t')
|
self.text_entry.insert('\t')
|
||||||
event.stop()
|
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")
|
||||||
Loading…
Reference in New Issue