Skip to content

Releases: AllanOricil/esp32-mfa-authenticator

v0.16.0

27 Dec 03:44
Compare
Choose a tag to compare

0.16.0 (2024-12-27)

Bug Fixes

  • align pin screen theme with totp screen for consistency (f2c59b5)

Features

  • group index is rendered when a group does not have services (cd945c3)

v0.15.0

26 Dec 16:33
Compare
Choose a tag to compare

0.15.0 (2024-12-26)

Bug Fixes

  • ensure group default to 0 when not in bounds (630f406)

Features

  • increase MAX_NUMBER_OF_GROUPS to 10 (c440976)

v0.14.0

26 Dec 03:22
Compare
Choose a tag to compare

0.14.0 (2024-12-26)

Features

  • enable organizing services into groups (6d290af)
demo_groups.mp4

BREAKING CHANGES

The file storing services must be named services.yml and now need to follow this schema:

services: list
  - name: text[60]
    secret: text
    group: number

For example:

services:
  - name: aws:root:[email protected]
    secret: encoded-secret
    group: 0
  - name: aws:staging:[email protected]
    secret: encoded-secret
    group: 0
  - name: aws:production:[email protected]
    secret: encoded-secret
    group: 0
  - name: aws:1234565:[email protected]
    secret: encoded-secret
    group: 1
  - name: aws:6785910:[email protected]
    secret: encoded-secret
    group: 1
  - name: aws:7815795:[email protected]
    secret: encoded-secret
    group: 1
  - name: github
    secret: encoded-secret
    group: 2
  - name: docker
    secret: encoded-secret
    group: 2
  - name: npm
    secret: encoded-secret
    group: 2

v0.13.1

22 Dec 21:08
Compare
Choose a tag to compare

0.13.1 (2024-12-22)

Bug Fixes

  • destroy touch config screen when no longer needed to release mem (e01f8de)
  • min==max delta due to calibration values being all 0 (ebf7deb)

v0.13.0

22 Dec 17:32
Compare
Choose a tag to compare

0.13.0 (2024-12-22)

Features

  • add screen to configure touch sensor (75485d3)
demo_touch_calibration_screen.mp4

v0.12.0

07 Dec 21:22
Compare
Choose a tag to compare

0.12.0 (2024-12-07)

Features

  • display PIN screen immediately upon screen wake-up (e548745)

v0.11.0

29 Jul 00:57
Compare
Choose a tag to compare

0.11.0 (2024-07-29)

Features

  • lock board after N failed unlock attempts (d30f1ab)
20240728_214549.mp4

v0.10.1

07 Jul 00:49
Compare
Choose a tag to compare

0.10.1 (2024-07-07)

Bug Fixes

  • manager: remove exception added for testing error when submiting the settings form (f6e93d8)
  • site: remove manager default layout from the presentation site (84e1fc3)

v0.10.0

01 Jul 17:07
Compare
Choose a tag to compare

0.10.0 (2024-07-01)

Bug Fixes

  • esp32: fix yaml serialization (57d610f)
  • manager: fix routing issue caused by the spiffs.bin (73e04a0)

Features

  • esp32: add server routes for fetching and updating the config file directly from the board (003b05c)
  • manager: display a toast message when submiting the settings form (58bce30)
  • manager: expose static site in the board so that it can be managed (2dda6f9)
  • manager: initial implementation for the settings form (7ba22bc)
  • manager: setup navbar and home page (57c6699)

v0.9.2

24 Jun 01:20
Compare
Choose a tag to compare

0.9.2 (2024-06-24)

Bug Fixes

  • prepend all tutorial image paths with the repo's slug because nuxt github-actions preset doesn't do it (857d9eb)