From f269e799b1d3b2e052fce8a021f1b8d3db716b2d Mon Sep 17 00:00:00 2001 From: Jason Wen Date: Sat, 8 Jul 2023 22:29:23 -0700 Subject: [PATCH] Re-enable Screenrecorder with resource fix (#204) * Re-enable Screenrecorder with resource fix * add this back * didn't fix * Update CHANGELOGS.md --- CHANGELOGS.md | 2 -- selfdrive/ui/SConscript | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOGS.md b/CHANGELOGS.md index 608a70d9f6..b1b8f93e88 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -11,8 +11,6 @@ sunnypilot - 0.9.3.1 (2023-07-xx) * NEW❗: Toyota: TSS2 longitudinal: Custom Tuning * Smoother longitudinal performance for Toyota/Lexus TSS2/LSS2 cars thanks to dragonpilot-community! * IMPROVED: Dynamic Lane Profile: when using Laneline planner via Laneline Mode or Auto Mode, enforce Laneless planner while traveling below 10 MPH or 16 km/h -* DISABLED: Screen Recorder - * UI sometimes crashes on startup along with screen recorder, will reimplement in future updates * REMOVED: Display CPU Temperature on Sidebar sunnypilot - 0.9.2.3 (2023-06-18) diff --git a/selfdrive/ui/SConscript b/selfdrive/ui/SConscript index f0f455d88e..c0c37a2993 100644 --- a/selfdrive/ui/SConscript +++ b/selfdrive/ui/SConscript @@ -10,7 +10,7 @@ if arch == 'larch64': base_libs.append('EGL') maps = arch in ['larch64', 'x86_64'] -screenrecorder = False +screenrecorder = arch in ['larch64'] if maps and arch == 'x86_64': rpath = [Dir(f"#third_party/mapbox-gl-native-qt/{arch}").srcnode().abspath]