This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
Releases: richardbuckle/EDRefCard
Releases · richardbuckle/EDRefCard
1.2.8
1.2.7
Added support for Thrustmaster Hotas Cougar.
Release/1.2.1
Ready for Chapter 4.
Unicode fixed
Fixed errors with non-ASCII file encodings. Should now be fully Unicode.
1.0.6
- The list view is now sorted in a case-insensitive manner.
- The home page now correctly uses https to access its style sheet from Google APIs. Thanks to eeisenhart.
Release/1.0.5: better naming
- The list view now shows the controllers for each public upload (besides keyboard and mouse).
- The server now purges non-public configs after a day.
Internal cleanup
In this release the code was reorganised to be easier to understand, and many tests were added.
These tests validated the reorganisation and refactoring, and are also becoming useful as documentation.
The static data was moved out into bindingsData.py, and there was much rejoicing.
The code is now gathered into "Parser", "Output", and "Utility" sections. Still thinking about whether to make classes out of these responsibilities.
There was a war upon bad names, for example:
for key, item in items.items(): # <-- useless!
to:
for physicalKeySpec, physicalKey in physicalKeys.items():
This was a major clarification and made everything much easier to understand.
DualShock4
Added support for the DualShock4 controller.