From 874dac77f0c68e7dcb08345d112c77163e1e76de Mon Sep 17 00:00:00 2001 From: Clara K Date: Thu, 29 Dec 2022 18:14:11 +0100 Subject: [PATCH 1/4] Update ReadMe.md --- ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReadMe.md b/ReadMe.md index c5288df63..212ef2599 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -4,7 +4,7 @@

-[Intro](https://github.com/ClaraCrazy/Flipper-Xtreme#What-makes-it-special) | [Animations](https://github.com/ClaraCrazy/Flipper-Xtreme#Animations) | [Changelog](https://github.com/ClaraCrazy/Flipper-Xtreme#list-of-changes) | [Known bugs](https://github.com/ClaraCrazy/Flipper-Xtreme#Known-bugs) | [Install](https://github.com/ClaraCrazy/Flipper-Xtreme#Install) | [Build](https://github.com/ClaraCrazy/Flipper-Xtreme#build-it-yourself) | [Discord](https://discord.gg/mC2FxbYSMr) +[Intro](https://github.com/ClaraCrazy/Flipper-Xtreme#What-makes-it-special) | [Animations](https://github.com/ClaraCrazy/Flipper-Xtreme#Animations) | [Changelog](https://github.com/ClaraCrazy/Flipper-Xtreme#list-of-changes) | [Known bugs](https://github.com/ClaraCrazy/Flipper-Xtreme#Known-bugs) | [Install](https://github.com/ClaraCrazy/Flipper-Xtreme#Install) | [Build](https://github.com/ClaraCrazy/Flipper-Xtreme#build-it-yourself) | [Discord](https://discord.gg/flipper-xtreme) ----- This firmware is a complete overhaul of the Official Firmware in combination with RM (RogueMaster), with changes on all graphics, `disgusting` code and more. Xtreme brings you the most for your little flipper companion. From 99ac79582d572c4a9422ac030c3b8e90687f6cfd Mon Sep 17 00:00:00 2001 From: Clara K Date: Thu, 29 Dec 2022 19:43:50 +0100 Subject: [PATCH 2/4] Update ReadMe.md --- ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReadMe.md b/ReadMe.md index 212ef2599..2c8cd978e 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -7,7 +7,7 @@ [Intro](https://github.com/ClaraCrazy/Flipper-Xtreme#What-makes-it-special) | [Animations](https://github.com/ClaraCrazy/Flipper-Xtreme#Animations) | [Changelog](https://github.com/ClaraCrazy/Flipper-Xtreme#list-of-changes) | [Known bugs](https://github.com/ClaraCrazy/Flipper-Xtreme#Known-bugs) | [Install](https://github.com/ClaraCrazy/Flipper-Xtreme#Install) | [Build](https://github.com/ClaraCrazy/Flipper-Xtreme#build-it-yourself) | [Discord](https://discord.gg/flipper-xtreme) ----- -This firmware is a complete overhaul of the Official Firmware in combination with RM (RogueMaster), with changes on all graphics, `disgusting` code and more. Xtreme brings you the most for your little flipper companion. +This firmware is a complete overhaul of the Official Firmware in combination with tons of modifications from RogueMaster (He used UL code-bits too), with changes on all graphics, `disgusting` code and more. Xtreme brings you the most for your little flipper companion. -----
From d700a889cc9e010358bb7f2650635ed93d3ac75f Mon Sep 17 00:00:00 2001 From: Clara K Date: Thu, 29 Dec 2022 19:45:14 +0100 Subject: [PATCH 3/4] Update ReadMe.md --- ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReadMe.md b/ReadMe.md index 2c8cd978e..f82da1a06 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -7,7 +7,7 @@ [Intro](https://github.com/ClaraCrazy/Flipper-Xtreme#What-makes-it-special) | [Animations](https://github.com/ClaraCrazy/Flipper-Xtreme#Animations) | [Changelog](https://github.com/ClaraCrazy/Flipper-Xtreme#list-of-changes) | [Known bugs](https://github.com/ClaraCrazy/Flipper-Xtreme#Known-bugs) | [Install](https://github.com/ClaraCrazy/Flipper-Xtreme#Install) | [Build](https://github.com/ClaraCrazy/Flipper-Xtreme#build-it-yourself) | [Discord](https://discord.gg/flipper-xtreme) ----- -This firmware is a complete overhaul of the Official Firmware in combination with tons of modifications from RogueMaster (He used UL code-bits too), with changes on all graphics, `disgusting` code and more. Xtreme brings you the most for your little flipper companion. +This firmware is a complete overhaul of the Official Firmware in combination with tons of modifications from RogueMaster (He used UL code too), with changes on all graphics, `disgusting` code and more. Xtreme brings you the most for your little flipper companion. -----
From 9b7d17d89ce789d3240fb45badb2951fc966a118 Mon Sep 17 00:00:00 2001 From: Nameless Date: Fri, 30 Dec 2022 01:10:24 +0000 Subject: [PATCH 4/4] Reduced long press to poweroff delay to 2s (more like 3s in reality) --- applications/services/desktop/views/desktop_view_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/services/desktop/views/desktop_view_main.c b/applications/services/desktop/views/desktop_view_main.c index 10e897bd7..7881bc36d 100644 --- a/applications/services/desktop/views/desktop_view_main.c +++ b/applications/services/desktop/views/desktop_view_main.c @@ -17,7 +17,7 @@ struct DesktopMainView { bool sfw_mode; }; -#define DESKTOP_MAIN_VIEW_POWEROFF_TIMEOUT 5000 +#define DESKTOP_MAIN_VIEW_POWEROFF_TIMEOUT 2000 static void desktop_main_poweroff_timer_callback(TimerHandle_t timer) { DesktopMainView* main_view = pvTimerGetTimerID(timer);