Skip to content

Commit 31adb0b

Browse files
committed
v1.17.6: Fix RFRemoteControlDevice bugs and update version to 1.17.6 #683
1 parent 9650179 commit 31adb0b

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

RELEASE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# RELEASE NOTES
22

3+
## v1.17.6 - RFRemoteControlDevice Bug Fixes
4+
5+
* Contrib: Fix `RFRemoteControlDevice` - three bugs that each independently caused `rfstudy_send` commands to be silently ignored by the device by @kongo09 in https://github.com/jasonacox/tinytuya/pull/684:
6+
* `rf_decode_button`: fix missing `()` on `base64.b64decode` call — previously always returned `None`.
7+
* `send_command`: build correct `rfstudy_send` payload (`feq` as int instead of `study_feq` as string, add `mode`/`rate` fields, inject `ver` into each key dict); study/exit commands are unaffected.
8+
* `rf_send_button`: do not forward `study_feq` into `feq`; `feq=0` tells the device to use the frequency embedded in the code itself.
9+
* Adds regression tests for all three fixes.
10+
311
## v1.17.5 - CLI Device Control
412

513
* Extended the command line interface with new device control and listing commands.

tinytuya/core/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
if HAVE_COLORAMA:
102102
init()
103103

104-
version_tuple = (1, 17, 5) # Major, Minor, Patch
104+
version_tuple = (1, 17, 6) # Major, Minor, Patch
105105
version = __version__ = "%d.%d.%d" % version_tuple
106106
__author__ = "jasonacox"
107107

0 commit comments

Comments
 (0)