From 5856746fc9774157aa3f42608f5019efa829f76b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=82=E3=81=8F?= Date: Wed, 21 Dec 2022 18:07:14 +0900 Subject: [PATCH 1/3] iButton: fixed notification on successful read (#2169) --- applications/main/ibutton/scenes/ibutton_scene_read.c | 1 - applications/main/ibutton/scenes/ibutton_scene_read_success.c | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/applications/main/ibutton/scenes/ibutton_scene_read.c b/applications/main/ibutton/scenes/ibutton_scene_read.c index 1fe75e45a..b5ee08e6f 100644 --- a/applications/main/ibutton/scenes/ibutton_scene_read.c +++ b/applications/main/ibutton/scenes/ibutton_scene_read.c @@ -52,7 +52,6 @@ bool ibutton_scene_read_on_event(void* context, SceneManagerEvent event) { if(success) { ibutton_notification_message(ibutton, iButtonNotificationMessageSuccess); - ibutton_notification_message(ibutton, iButtonNotificationMessageGreenOn); scene_manager_next_scene(scene_manager, iButtonSceneReadSuccess); DOLPHIN_DEED(DolphinDeedIbuttonReadSuccess); } diff --git a/applications/main/ibutton/scenes/ibutton_scene_read_success.c b/applications/main/ibutton/scenes/ibutton_scene_read_success.c index 1c2bcdd29..749e7af37 100644 --- a/applications/main/ibutton/scenes/ibutton_scene_read_success.c +++ b/applications/main/ibutton/scenes/ibutton_scene_read_success.c @@ -48,6 +48,8 @@ void ibutton_scene_read_success_on_enter(void* context) { dialog_ex_set_context(dialog_ex, ibutton); view_dispatcher_switch_to_view(ibutton->view_dispatcher, iButtonViewDialogEx); + + ibutton_notification_message(ibutton, iButtonNotificationMessageGreenOn); } bool ibutton_scene_read_success_on_event(void* context, SceneManagerEvent event) { From 279662355149314b14af440a0d396e472419d3e2 Mon Sep 17 00:00:00 2001 From: valentinegb Date: Wed, 21 Dec 2022 01:30:40 -0800 Subject: [PATCH 2/3] Add VIZIO signals to tv.ir (#2167) * Add VIZIO signals to tv.ir * Fix improper formatting Co-authored-by: Georgii Surkov <37121527+gsurkov@users.noreply.github.com> --- assets/resources/infrared/assets/tv.ir | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/assets/resources/infrared/assets/tv.ir b/assets/resources/infrared/assets/tv.ir index 3965013da..cc5b0360e 100755 --- a/assets/resources/infrared/assets/tv.ir +++ b/assets/resources/infrared/assets/tv.ir @@ -1656,3 +1656,22 @@ type: parsed protocol: RC5 address: 01 00 00 00 command: 21 00 00 00 +# +# Model: VIZIO +name: Mute +type: parsed +protocol: NEC +address: 04 00 00 00 +command: 09 00 00 00 +# +name: Vol_up +type: parsed +protocol: NEC +address: 04 00 00 00 +command: 02 00 00 00 +# +name: Vol_dn +type: parsed +protocol: NEC +address: 04 00 00 00 +command: 03 00 00 00 From 7ff9414656c11da3164d97a15f670d8865ce77d5 Mon Sep 17 00:00:00 2001 From: Georgii Surkov <37121527+gsurkov@users.noreply.github.com> Date: Wed, 21 Dec 2022 12:42:51 +0300 Subject: [PATCH 3/3] Update CODEOWNERS (#2170) --- .github/CODEOWNERS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 6b77482c6..aa4ada1a8 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -42,6 +42,9 @@ /applications/debug/unit_tests/ @skotopes @DrZlo13 @hedger @nminaylov @gornekich @Astrrra @gsurkov @Skorpionm +# Assets +/assets/resources/infrared/ @skotopes @DrZlo13 @hedger @gsurkov + # Documentation /documentation/ @skotopes @DrZlo13 @hedger @drunkbatya /scripts/toolchain/ @skotopes @DrZlo13 @hedger @drunkbatya