Fixups for Mac, and a bunch for PC (#1654)
* fix mac nui
* fix cereal
* builds on mac without warnings
* ui swap shouldn't be instant on pc
* camerad builds on mac
* modeld, and now everything, builds on mac
* ui draws pictures on mac now
* fix camerad shutdown
* support ui looping on pc
* python3 on that
* SCNu64 should be cross platform
* bump cereal and new apk
* clean up
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
old-commit-hash: 344a9a3699
commatwo_master
parent
ba3dcb56ab
commit
5d069eb8c3
19 changed files with 100 additions and 63 deletions
@ -1,3 +1,3 @@ |
|||||||
version https://git-lfs.github.com/spec/v1 |
version https://git-lfs.github.com/spec/v1 |
||||||
oid sha256:fbfb2e9870d4833819542833d62ce934b5ad284b30d727604188fd2a3676f0e6 |
oid sha256:3b29d0ce5a60f77f46a3124724b4d19095205bb7d0a9fc64d58685aa94cf81b1 |
||||||
size 13699659 |
size 13700367 |
||||||
|
@ -1 +1 @@ |
|||||||
Subproject commit 68fdf28670b48a16a60498b4e5cc1984e7e66651 |
Subproject commit 9915b2086a4205d9a28eead6139d5d7cbb73b00b |
@ -1,11 +1,18 @@ |
|||||||
#!/bin/sh |
#!/bin/bash -e |
||||||
|
|
||||||
if [ $# -gt 0 ]; then |
if [ $# -gt 0 ]; then |
||||||
if [ "$INTERNAL" = 1 ]; then |
if [ "$INTERNAL" = 1 ]; then |
||||||
./_nui "$1" |
./_nui "$1" |
||||||
|
else |
||||||
|
./get_files_comma_api.py $1 |
||||||
|
if [ -f ./_nui ]; then |
||||||
|
./_nui use_api |
||||||
|
elif [ -f _nui.app/Contents/MacOS/_nui ]; then |
||||||
|
./_nui.app/Contents/MacOS/_nui use_api |
||||||
else |
else |
||||||
python get_files_comma_api.py $1 && ./_nui use_api |
echo "nui not found, please build it" |
||||||
fi |
fi |
||||||
|
fi |
||||||
else |
else |
||||||
echo "Please Enter a Route" |
echo "Please Enter a Route" |
||||||
fi |
fi |
||||||
|
Loading…
Reference in new issue