Releases: alexeden/rpi-led-matrix
Releases · alexeden/rpi-led-matrix
1.14.0 - Add support for panel type option
1.13.0 - Add support for refresh rate limiting option
Additions
- Add support for the
limit_refresh_rate_hz
in the native matrix library.
Usage:
new LedMatrix(
// Set the max refresh rate to 60hz
{ ...matrixOptions, limitRefreshRateHz: 60 },
LedMatrix.defaultRuntimeOptions()
);
1.12.2 - Corrections to broken dist structure in 1.12.1
v1.12.2 1.12.2
1.12.1 - [broken] Remove tslint; add prettier/eslint; upgrade Typescript
All changes in this release are related to dev dependencies and processes only:
- Remove tslint
- Replace tslint with typescript eslint
- Add prettier and
npm run format
script - Upgrade Typescript to latest (4.6.3)
- Add an npm script for checking typescript files without emitting output;
npm run check