Skip to content

Releases: alexeden/rpi-led-matrix

1.14.0 - Add support for panel type option

04 Apr 05:29
Compare
Choose a tag to compare

Additions

  • Add support for the panel_type option in the native matrix library.

Resolves

#27

1.13.0 - Add support for refresh rate limiting option

04 Apr 05:08
Compare
Choose a tag to compare

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

04 Apr 03:54
Compare
Choose a tag to compare

1.12.1 - [broken] Remove tslint; add prettier/eslint; upgrade Typescript

04 Apr 03:39
Compare
Choose a tag to compare

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