diff --git a/CHANGELOG.md b/CHANGELOG.md index 39d7c1e71..28a978775 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,30 +1,10 @@ ### New changes -* Plugins: SubGHz Bruteforcer -> Add support for Ansonic 12bit protocol (FM238) -* Plugins: Fix DTMF Dolphin -> Add forgotten scene and menu item -* Plugins: Update DTMF Dolphin [(by litui)](https://github.com/litui/dtmf_dolphin) -* Plugins: Update TOTP [(by akopachov)](https://github.com/akopachov/flipper-zero_authenticator) -* Plugins: iButton Fuzzer and RFID Fuzzer improvements -* Plugins: i2c tools fix name display -* Plugins: Add 3 new plugins BlackJack, Solitaire [(by teeebor)](https://github.com/teeebor/flipper_games) and HEX Viewer [(by QtRoS)](https://github.com/QtRoS/flipperzero-firmware) -* Plugins -> PR: Wifi marauder BT menus option (by @rf-bandit | PR #164) -* Plugins -> PR: Update i2c tools (New UI) (by @NaejEL | PR #171) -* Plugins -> PR: Fix htu21d falsely reading temp as humidity (by @GottZ | PR #175) -* SubGHz -> PR: GUI Fix - Allow setting RSSI trigger to beggining (by @TQMatvey | PR #180) -* SubGHz: Remove not widely used frequency from hopper -* SubGHz: Fix starline encoder -* SubGHz: Frequency Analyzer -> Save last trigger level -* SubGHz: Speedup subghz launch from favourites -* SubGHz: Add new freqs and modulation to user config -* Infrared: Update universal remote assets (by @Amec0e) -* CI/CD: Improvements, dev builds (can be found in this telegram channel -> https://t.me/kotnehleb) -* Power -> PR: Show battery percentile while charging (by @TQMatvey | PR #178) -* Docs -> PR: Some updates (by @lucemans | PR #169 and #170) -* CLI -> PR: Update cli_commands.c To add `src` / `source` command for people exploring cli (by @PharoahCoder | PR #176) -* OFW: Fix U2F HID vulnerability -* OFW: Core: thread allocation shortcut -* OFW: WS: add protocol GT-WT02 -* OFW: SubGhz: add protocol "Ansonic" -* OFW: SubGhz: add protocol Nice_Flo 20bit +* SubGHz: Fix counter can go higher than 16bits in protocols - Keeloq, SL, Came Atomo, Nice Flor S +* SubGHz -> Plugin: WS - Add protocol Auriol HG0601A (by @LY2NEO) [(Details)](https://github.com/DarkFlippers/unleashed-firmware/issues/184) +* NFC -> PR: Assets - mf classic dict update - Possible keys for Omsk transport cards (by @vadrozh | PR #181) +* BadUSB -> PR: Keyboard layouts: Slovenian (si) / Croatian (hr), Bosnian (ba) (Latin, Bosnia and Herzegovina) (by @StellarStoic | PR #187) +* Plugins: Update Temperature Sensor Plugin - HTU2xD, SHT2x, SI702x, SI700x, SI701x, AM2320 [(by Mywk)](https://github.com/Mywk/FlipperTemperatureSensor) +* Plugins: Update HEX Viewer [(by QtRoS)](https://github.com/QtRoS/flipper-zero-hex-viewer) #### [🎲 Download latest extra apps pack](https://download-directory.github.io/?url=https://github.com/xMasterX/unleashed-extra-pack/tree/main/apps) diff --git a/ReadMe.md b/ReadMe.md index 6d2cd5ef0..7fcf30aa6 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -15,8 +15,8 @@ Thank you to all the supporters! ## Latest Updates - Known Issues: `Chess` -- Last Synced/Checked [Unleashed/xMasterX](https://github.com/DarkFlippers/unleashed-firmware), changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md): `2022-11-25 01:09 EST` -- Last Synced/Checked [OFW](https://github.com/flipperdevices/flipperzero-firmware), changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2022-11-25 01:09 EST` +- Last Synced/Checked [Unleashed/xMasterX](https://github.com/DarkFlippers/unleashed-firmware), changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md): `2022-11-27 01:44 EST` +- Last Synced/Checked [OFW](https://github.com/flipperdevices/flipperzero-firmware), changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2022-11-27 01:44 EST` - Updated: [USB HID Autofire (By pbek)](https://github.com/pbek/usb_hid_autofire) - Added: [(WIP) added ISO15693 reading, saving and revealing from privacy mode (unlock) #1991 (By g3gg0)](https://github.com/flipperdevices/flipperzero-firmware/pull/1991) - Updated: [Gui: proper navigation in file browser dialog #2014 (By skotopes)](https://github.com/flipperdevices/flipperzero-firmware/pull/2014) diff --git a/applications/plugins/htu21d_temp_sensor/application.fam b/applications/plugins/htu21d_temp_sensor/application.fam index 9ae3bdffd..5807d7f51 100644 --- a/applications/plugins/htu21d_temp_sensor/application.fam +++ b/applications/plugins/htu21d_temp_sensor/application.fam @@ -1,6 +1,6 @@ App( - appid="Temperature_Sensor", - name="Temperature Sensor", + appid="HTU_Temperature_Sensor", + name="[HTU/+] Temperature Sensor", apptype=FlipperAppType.EXTERNAL, entry_point="temperature_sensor_app", cdefines=["APP_TEMPERATURE_SENSOR"], diff --git a/lib/subghz/protocols/came_atomo.c b/lib/subghz/protocols/came_atomo.c index 747d0d074..d12e5976c 100644 --- a/lib/subghz/protocols/came_atomo.c +++ b/lib/subghz/protocols/came_atomo.c @@ -135,7 +135,11 @@ static void uint8_t pack[8] = {}; - instance->generic.cnt++; + if(instance->generic.cnt < 0xFFFF) { + instance->generic.cnt++; + } else if(instance->generic.cnt >= 0xFFFF) { + instance->generic.cnt = 0; + } //Send header instance->encoder.upload[index++] = diff --git a/lib/subghz/protocols/nice_flor_s.c b/lib/subghz/protocols/nice_flor_s.c index bcc5c7466..6913103bd 100644 --- a/lib/subghz/protocols/nice_flor_s.c +++ b/lib/subghz/protocols/nice_flor_s.c @@ -129,7 +129,11 @@ static void subghz_protocol_encoder_nice_flor_s_get_upload( instance->encoder.size_upload = size_upload; } - instance->generic.cnt++; + if(instance->generic.cnt < 0xFFFF) { + instance->generic.cnt++; + } else if(instance->generic.cnt >= 0xFFFF) { + instance->generic.cnt = 0; + } uint64_t decrypt = ((uint64_t)instance->generic.serial << 16) | instance->generic.cnt; uint64_t enc_part = subghz_protocol_nice_flor_s_encrypt(decrypt, file_name);