-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from spacether/adds_tkinter_backend
Adds tkinter backend
- Loading branch information
Showing
45 changed files
with
2,996 additions
and
1,000 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# 2.0.0 | ||
- Breaking: KeyboardLayout layout_name input type changed from str to LayoutName enum | ||
- Fixed typo in readme code sample | ||
- Python samples renamed to include pygame_ or tkinter_ prefix | ||
- Adds init docstrings to KeyboardInfo, KeyInfo | ||
- Adds Rect class used by the KeyboardLayoutInterface | ||
- Adds a Key enum to store all possible keys for each backend | ||
- Breaking: Changes update_key to ingest the Key enum | ||
- Adds get_key method to get the key constant that is used to update keys | ||
- Breaking KeyboardLayout class must now be imported from the pygame or tkinter submodules | ||
- Breaking: pygame removed from the dependency list, if using the pygame backend | ||
the developer must install it into their environment | ||
|
||
# 1.0.0 | ||
- qwerty + azerty included | ||
- dynamically generate a pygame sprite group showing a keyboard | ||
- customize the keyboard with sizes, colors, key margin, padding, font, location, etc | ||
- override the default KeyInfo by passing in overrides | ||
- update a specific key with update_key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.PHONY: test dist | ||
.PHONY: test dist docs | ||
|
||
develop: | ||
pip3 install -e .[dev] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 4466c069453c4a3c3533521ad93bfe29 | ||
config: bcac0a9de7c8fb8335ea30ea2ec837e6 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.