Merge remote-tracking branch 'sunnypilot/sunnypilot/master' into 2.1

This commit is contained in:
Jason Wen
2026-04-17 02:05:35 -04:00
76 changed files with 1570 additions and 1098 deletions
+1 -1
View File
@@ -1 +1 @@
#define DEFAULT_MODEL "OP Model (Default)"
#define DEFAULT_MODEL "POP model (Default)"
+2 -2
View File
@@ -131,11 +131,11 @@ def get_upload_stream(filepath: str, should_compress: bool) -> tuple[io.Buffered
return compressed_stream, compressed_size
# remove all keys that end in DEPRECATED
# remove all keys that end in DEPRECATED, plus any "deprecated" group
def strip_deprecated_keys(d):
for k in list(d.keys()):
if isinstance(k, str):
if k.endswith('DEPRECATED'):
if k.endswith('DEPRECATED') or k == 'deprecated':
d.pop(k)
elif isinstance(d[k], dict):
strip_deprecated_keys(d[k])