Skip to content

Blink1Control2 v2.0.5

Compare
Choose a tag to compare
@todbot todbot released this 09 Jan 06:47

Download the preferred version for your platform:

Fixes these issues:

  • #78 - Double launch of Windows app causes "cannot find package.json" Javascript error
  • #75 - "Turn blink(1) off when no match" doesnt work
  • #73 - Blink1Service rescan leaks rescan timers
  • #72 - Main window/Controls not loading if no event triggers are present

NOTE for Linux users:

  • Blink1Control2 uses node-hid@0.7 which uses the 'hidraw' driver instead of 'libusb'. This means the udev rules need to change. For blink(1), the udev rules to support both libusb and hidraw would be in the file /etc/udev/rules.d/51-blink1.rules and contain:
    SUBSYSTEM=="input", GROUP="input", MODE="0666"
    SUBSYSTEM=="usb", ATTRS{idVendor}=="27b8", ATTRS{idProduct}=="01ed", MODE:="666", GROUP="plugdev"
    KERNEL=="hidraw*", ATTRS{idVendor}=="27b8", ATTRS{idProduct}=="01ed", MODE="0666", GROUP="plugdev"
    
    To install the new rules, unplug the blink(1) device and run the command:
    sudo udevadm control --reload-rules