├── .clang-format ├── .dir-locals.el ├── .github └── workflows │ ├── build-linux.yml │ └── build.yml ├── .gitignore ├── .gitmodules ├── 3rdparty └── json.hpp ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Includes ├── audioMenu.hpp ├── config.hpp ├── eeprom.hpp ├── font.hpp ├── ftpConnection.hpp ├── ftpServer.hpp ├── infoLog.hpp ├── langMenu.hpp ├── logViewer.hpp ├── logViewerMenu.hpp ├── menu.hpp ├── networkManager.hpp ├── networking.hpp ├── renderer.hpp ├── settingsMenu.hpp ├── sntpClient.hpp ├── subApp.hpp ├── subAppRouter.hpp ├── subsystems.hpp ├── timeMenu.hpp ├── timing.hpp ├── videoMenu.hpp ├── wipeCache.hpp ├── xbeLauncher.hpp └── xbeScanner.hpp ├── LICENSE ├── Makefile ├── README.md ├── Resources ├── 480.png ├── 720.png └── vegur.ttf ├── Sources ├── audioMenu.cpp ├── config.cpp ├── font.cpp ├── ftpConnection.cpp ├── ftpServer.cpp ├── infoLog.cpp ├── langMenu.cpp ├── logViewer.cpp ├── logViewerMenu.cpp ├── menu.cpp ├── networkManager.cpp ├── networking.cpp ├── renderer.cpp ├── settingsMenu.cpp ├── sntpClient.cpp ├── subAppRouter.cpp ├── subsystems.cpp ├── timeMenu.cpp ├── timing.cpp ├── videoMenu.cpp ├── wipeCache.cpp ├── xbeLauncher.cpp └── xbeScanner.cpp ├── githooks └── pre-commit ├── main.cpp └── sampleconfig.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/.clang-format -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/.github/workflows/build-linux.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/3rdparty/json.hpp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Includes/audioMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/audioMenu.hpp -------------------------------------------------------------------------------- /Includes/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/config.hpp -------------------------------------------------------------------------------- /Includes/eeprom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/eeprom.hpp -------------------------------------------------------------------------------- /Includes/font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/font.hpp -------------------------------------------------------------------------------- /Includes/ftpConnection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/ftpConnection.hpp -------------------------------------------------------------------------------- /Includes/ftpServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/ftpServer.hpp -------------------------------------------------------------------------------- /Includes/infoLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/infoLog.hpp -------------------------------------------------------------------------------- /Includes/langMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/langMenu.hpp -------------------------------------------------------------------------------- /Includes/logViewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/logViewer.hpp -------------------------------------------------------------------------------- /Includes/logViewerMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/logViewerMenu.hpp -------------------------------------------------------------------------------- /Includes/menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/menu.hpp -------------------------------------------------------------------------------- /Includes/networkManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/networkManager.hpp -------------------------------------------------------------------------------- /Includes/networking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/networking.hpp -------------------------------------------------------------------------------- /Includes/renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/renderer.hpp -------------------------------------------------------------------------------- /Includes/settingsMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/settingsMenu.hpp -------------------------------------------------------------------------------- /Includes/sntpClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/sntpClient.hpp -------------------------------------------------------------------------------- /Includes/subApp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/subApp.hpp -------------------------------------------------------------------------------- /Includes/subAppRouter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/subAppRouter.hpp -------------------------------------------------------------------------------- /Includes/subsystems.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/subsystems.hpp -------------------------------------------------------------------------------- /Includes/timeMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/timeMenu.hpp -------------------------------------------------------------------------------- /Includes/timing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/timing.hpp -------------------------------------------------------------------------------- /Includes/videoMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/videoMenu.hpp -------------------------------------------------------------------------------- /Includes/wipeCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/wipeCache.hpp -------------------------------------------------------------------------------- /Includes/xbeLauncher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/xbeLauncher.hpp -------------------------------------------------------------------------------- /Includes/xbeScanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Includes/xbeScanner.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/README.md -------------------------------------------------------------------------------- /Resources/480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Resources/480.png -------------------------------------------------------------------------------- /Resources/720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Resources/720.png -------------------------------------------------------------------------------- /Resources/vegur.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Resources/vegur.ttf -------------------------------------------------------------------------------- /Sources/audioMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/audioMenu.cpp -------------------------------------------------------------------------------- /Sources/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/config.cpp -------------------------------------------------------------------------------- /Sources/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/font.cpp -------------------------------------------------------------------------------- /Sources/ftpConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/ftpConnection.cpp -------------------------------------------------------------------------------- /Sources/ftpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/ftpServer.cpp -------------------------------------------------------------------------------- /Sources/infoLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/infoLog.cpp -------------------------------------------------------------------------------- /Sources/langMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/langMenu.cpp -------------------------------------------------------------------------------- /Sources/logViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/logViewer.cpp -------------------------------------------------------------------------------- /Sources/logViewerMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/logViewerMenu.cpp -------------------------------------------------------------------------------- /Sources/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/menu.cpp -------------------------------------------------------------------------------- /Sources/networkManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/networkManager.cpp -------------------------------------------------------------------------------- /Sources/networking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/networking.cpp -------------------------------------------------------------------------------- /Sources/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/renderer.cpp -------------------------------------------------------------------------------- /Sources/settingsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/settingsMenu.cpp -------------------------------------------------------------------------------- /Sources/sntpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/sntpClient.cpp -------------------------------------------------------------------------------- /Sources/subAppRouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/subAppRouter.cpp -------------------------------------------------------------------------------- /Sources/subsystems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/subsystems.cpp -------------------------------------------------------------------------------- /Sources/timeMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/timeMenu.cpp -------------------------------------------------------------------------------- /Sources/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/timing.cpp -------------------------------------------------------------------------------- /Sources/videoMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/videoMenu.cpp -------------------------------------------------------------------------------- /Sources/wipeCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/wipeCache.cpp -------------------------------------------------------------------------------- /Sources/xbeLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/xbeLauncher.cpp -------------------------------------------------------------------------------- /Sources/xbeScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/Sources/xbeScanner.cpp -------------------------------------------------------------------------------- /githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/githooks/pre-commit -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/main.cpp -------------------------------------------------------------------------------- /sampleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracc/NevolutionX/HEAD/sampleconfig.json --------------------------------------------------------------------------------