-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGELOG
More file actions
73 lines (54 loc) · 3.18 KB
/
CHANGELOG
File metadata and controls
73 lines (54 loc) · 3.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Version 0.8.3:
- Altered LibUSB transport workaround to only apply on Mac.
Version 0.8.2:
- Added new ``PILHelper.create_scaled_image()`` function to easily generate scaled/padded key images for a given deck.
- Updated LibUSB transport backend so that device paths are returned as UTF-8 strings, not raw bytes.
- Updated version/serial number string extraction from StreamDecks so that invalid characters are substituted, rather than raising a ``UnicodeDecodeError`` error.
- Added LibUSB transport workaround for a bug on Mac platforms when using older versions of the library.
Version 0.8.1:
- Fixed memory leak in LibUSB HIDAPI transport backend.
Version 0.8.0:
- Fix random crashes in LibUSB HIDAPI transport backend on Windows, as the API is not thread safe.
- Added support for atomic updates of StreamDeck instances via the Python ``with`` scope syntax.
Version 0.7.3:
- Fix crash in new LibUSB HIDAPI transport backend on systems with multiple connected StreamDeck devices.
- Fix crash in new LibUSB HIDAPI transport backend when ``connected()`` was called on a StreamDeck instance.
Version 0.7.2:
- Documentation restructuring to move installation out of the readme and into the library documentation.
Version 0.7.1:
- Cleaned up new LibUSB HIDAPI transport backend, so that it only searches for OS-specific library files.
- Fixed minor typo in the libUSB HIDAPI transport backend probe failure message.
Version 0.7.0:
- Removed old HID and HIDAPI backends, added new ``ctypes`` based LibUSB-HIDAPI backend replacement.
Version 0.6.3:
- Added support for the new V2 hardware revision of the StreamDeck Original.
Version 0.6.2:
- Fixed broken StreamDeck XL communications on Linux.
- Added blacklist for the ``libhidapi-hidraw`` system library which breaks StreamDeck Original communications.
Version 0.6.1:
- Fixed broken HIDAPI backend probing.
- Fixed double-open of HID backend devices causing connection issues on some platforms.
Version 0.6.0:
- Added support for the ``HID`` Python package. This new HID backend is strongly recommended over the old HIDAPI backend.
- Added auto-probing of installed backends, if no specific transport is supplied when constructing a DeviceManager instance.
Version 0.5.1:
- Fixed StreamDeck XL reporting swapped rows/columns count.
- Fixed StreamDeck XL failing to report correct serial number and firmware version.
Version 0.5.0:
- Fixed StreamDeck devices occasionally showing partial old frames on initial connection.
- Removed support for RAW pixel images, StreamDeck Mini and Original take BMP images.
- Removed ``width`` and ``height`` information from Deck key image dict, now returned as ``size`` tuple entry.
Version 0.4.0:
- Added StreamDeck XL support.
Version 0.3.2:
- Fixed StreamDeck Mini key images not updating under some circumstances.
Version 0.3.1:
- Added animated image example script.
Version 0.3:
- Remapped StreamDeck key indexes so that key 0 is located on the physical
top-left of all supported devices.
Version 0.2.4:
- Added new ``StreamDeck.get_serial_number()`` function.
- Added new ``StreamDeck.get_firmware_version()`` function.
Version 0.2.3:
- Added new ``StreamDeck.ImageHelpers modules`` for easier key image generation.