Releases , V1.0.5 Notes , TMG's Discord Server
Download and install Python from here (Make sure to add PIP and also add Python to PATH)
Run the Install Requirements.bat
file to install required dependencies for the __main__.py
file to work properly
Just run the __main__.py
file with Python
You can use Folders and your own sounds if you'd like, for example:
KeyboardSounds/
└── Sounds/
└── yourSoundsSet/
├── default.mp3
├── special.mp3
├── space.mp3
└── backspace.mp3
and in the Sounds.json
file you can add a Key to the JSON.
{
"Set": "YourSoundSet",
"..." : [
"...",
],
"YourSoundSet" : {
"default": "default.mp3",
"special": "special.mp3",
"space": "space.mp3",
"backspace": "backspace.mp3"
}
}
What keys are considered default or special (you can also check YourKeys.py
)
default | special |
---|---|
numbers (1, 2, 3) | common functional keys (shift, alt, ctrl, etc) |
letters (a, b, c) | function keys (F1 to F24) |
symbols (;, ', .) | other specials (enter, pgup, pgdn, etc) |
You can also change what keys are considered Special or Backspace and whatnot in the YourKeys.py
file
also no im not making YourKeys.py
a JSON file, I can't be asked 😭
Added auto-updater using semver and requests
Download V1.0.5 here