mirror of https://github.com/gmbrax/Pilgrim.git
Compare commits
No commits in common. "5657645801f00f62e7aba733263e21b9d4885376" and "cc723bdbbb30018359c41eae20f16a03b4a6b3e3" have entirely different histories.
5657645801
...
cc723bdbbb
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -16,16 +16,6 @@ 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
|
||||||
|
|
@ -44,7 +34,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 an alpha version
|
- Some features may be unstable in 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,13 +1027,4 @@ 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