├── .gitattributes ├── .github └── workflows │ ├── build-cmake.yml │ ├── build-docker.yml │ └── create-release.yml ├── .gitignore ├── .idea ├── .gitignore ├── KoalaBox.iml ├── cmake.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CMakeLists.txt ├── Dockerfile ├── README.md ├── README.template.md ├── UNLICENSE.txt ├── cmake ├── KoalaBox.cmake └── get_cpm.cmake ├── docs └── code_conventions.md ├── include └── koalabox │ ├── cache.hpp │ ├── config.hpp │ ├── core.hpp │ ├── globals.hpp │ ├── hook.hpp │ ├── http_client.hpp │ ├── io.hpp │ ├── json.hpp │ ├── lib.hpp │ ├── lib_monitor.hpp │ ├── logger.hpp │ ├── patcher.hpp │ ├── path.hpp │ ├── paths.hpp │ ├── platform.hpp │ ├── str.hpp │ ├── util.hpp │ └── win.hpp ├── res ├── build_config.gen.h ├── sync.schema.json └── version.gen.rc ├── src ├── cache.cpp ├── globals.cpp ├── hook.cpp ├── http_client.cpp ├── io.cpp ├── lib.cpp ├── lib_linux.cpp ├── lib_monitor.cpp ├── lib_monitor_linux.cpp ├── lib_monitor_win.cpp ├── lib_win.cpp ├── loader_win.cpp ├── logger.cpp ├── patcher.cpp ├── path.cpp ├── path_linux.cpp ├── path_win.cpp ├── paths.cpp ├── paths_linux.cpp ├── paths_win.cpp ├── pch.hpp ├── str.cpp ├── str_linux.cpp ├── str_win.cpp ├── util.cpp ├── util_linux.cpp ├── util_win.cpp └── win.cpp ├── sync.json ├── templates ├── .clang-tidy ├── .gitattributes ├── README.base.md ├── README.txt ├── UNLICENSE.txt ├── build.ps1 └── markdown │ ├── acknowledgements.md │ ├── building.md │ ├── configuration.md │ ├── install-linux.md │ ├── install-win.md │ ├── intro.md │ ├── license.md │ ├── links.md │ ├── troubleshooting.md │ └── usage.md └── tools ├── CMakeLists.txt ├── README.md ├── lib ├── CMakeLists.txt ├── include │ └── koalabox_tools │ │ ├── cmd.hpp │ │ ├── module.hpp │ │ ├── parser.hpp │ │ └── zip.hpp └── src │ ├── cmd.cpp │ ├── module.cpp │ ├── module_linux.cpp │ ├── module_win.cpp │ ├── parser.cpp │ └── zip.cpp └── src ├── exports_generator ├── linux_exports_generator.cpp └── windows_exports_generator.cpp └── sync ├── config.cpp ├── config.hpp └── sync.cpp /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | 3 | *.dll binary 4 | -------------------------------------------------------------------------------- /.github/workflows/build-cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.github/workflows/build-cmake.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.github/workflows/build-docker.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/KoalaBox.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.idea/KoalaBox.iml -------------------------------------------------------------------------------- /.idea/cmake.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.idea/cmake.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/README.md -------------------------------------------------------------------------------- /README.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/README.template.md -------------------------------------------------------------------------------- /UNLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/UNLICENSE.txt -------------------------------------------------------------------------------- /cmake/KoalaBox.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/cmake/KoalaBox.cmake -------------------------------------------------------------------------------- /cmake/get_cpm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/cmake/get_cpm.cmake -------------------------------------------------------------------------------- /docs/code_conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/docs/code_conventions.md -------------------------------------------------------------------------------- /include/koalabox/cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/cache.hpp -------------------------------------------------------------------------------- /include/koalabox/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/config.hpp -------------------------------------------------------------------------------- /include/koalabox/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/core.hpp -------------------------------------------------------------------------------- /include/koalabox/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/globals.hpp -------------------------------------------------------------------------------- /include/koalabox/hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/hook.hpp -------------------------------------------------------------------------------- /include/koalabox/http_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/http_client.hpp -------------------------------------------------------------------------------- /include/koalabox/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/io.hpp -------------------------------------------------------------------------------- /include/koalabox/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/json.hpp -------------------------------------------------------------------------------- /include/koalabox/lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/lib.hpp -------------------------------------------------------------------------------- /include/koalabox/lib_monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/lib_monitor.hpp -------------------------------------------------------------------------------- /include/koalabox/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/logger.hpp -------------------------------------------------------------------------------- /include/koalabox/patcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/patcher.hpp -------------------------------------------------------------------------------- /include/koalabox/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/path.hpp -------------------------------------------------------------------------------- /include/koalabox/paths.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/paths.hpp -------------------------------------------------------------------------------- /include/koalabox/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/platform.hpp -------------------------------------------------------------------------------- /include/koalabox/str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/str.hpp -------------------------------------------------------------------------------- /include/koalabox/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/util.hpp -------------------------------------------------------------------------------- /include/koalabox/win.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/include/koalabox/win.hpp -------------------------------------------------------------------------------- /res/build_config.gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/res/build_config.gen.h -------------------------------------------------------------------------------- /res/sync.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/res/sync.schema.json -------------------------------------------------------------------------------- /res/version.gen.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/res/version.gen.rc -------------------------------------------------------------------------------- /src/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/cache.cpp -------------------------------------------------------------------------------- /src/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/globals.cpp -------------------------------------------------------------------------------- /src/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/hook.cpp -------------------------------------------------------------------------------- /src/http_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/http_client.cpp -------------------------------------------------------------------------------- /src/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/io.cpp -------------------------------------------------------------------------------- /src/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/lib.cpp -------------------------------------------------------------------------------- /src/lib_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/lib_linux.cpp -------------------------------------------------------------------------------- /src/lib_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/lib_monitor.cpp -------------------------------------------------------------------------------- /src/lib_monitor_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/lib_monitor_linux.cpp -------------------------------------------------------------------------------- /src/lib_monitor_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/lib_monitor_win.cpp -------------------------------------------------------------------------------- /src/lib_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/lib_win.cpp -------------------------------------------------------------------------------- /src/loader_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/loader_win.cpp -------------------------------------------------------------------------------- /src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/logger.cpp -------------------------------------------------------------------------------- /src/patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/patcher.cpp -------------------------------------------------------------------------------- /src/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/path.cpp -------------------------------------------------------------------------------- /src/path_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/path_linux.cpp -------------------------------------------------------------------------------- /src/path_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/path_win.cpp -------------------------------------------------------------------------------- /src/paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/paths.cpp -------------------------------------------------------------------------------- /src/paths_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/paths_linux.cpp -------------------------------------------------------------------------------- /src/paths_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/paths_win.cpp -------------------------------------------------------------------------------- /src/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/pch.hpp -------------------------------------------------------------------------------- /src/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/str.cpp -------------------------------------------------------------------------------- /src/str_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/str_linux.cpp -------------------------------------------------------------------------------- /src/str_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/str_win.cpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/util_linux.cpp -------------------------------------------------------------------------------- /src/util_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/util_win.cpp -------------------------------------------------------------------------------- /src/win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/src/win.cpp -------------------------------------------------------------------------------- /sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/sync.json -------------------------------------------------------------------------------- /templates/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/.clang-tidy -------------------------------------------------------------------------------- /templates/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/.gitattributes -------------------------------------------------------------------------------- /templates/README.base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/README.base.md -------------------------------------------------------------------------------- /templates/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/README.txt -------------------------------------------------------------------------------- /templates/UNLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/UNLICENSE.txt -------------------------------------------------------------------------------- /templates/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/build.ps1 -------------------------------------------------------------------------------- /templates/markdown/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/markdown/acknowledgements.md -------------------------------------------------------------------------------- /templates/markdown/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/markdown/building.md -------------------------------------------------------------------------------- /templates/markdown/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/markdown/configuration.md -------------------------------------------------------------------------------- /templates/markdown/install-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/markdown/install-linux.md -------------------------------------------------------------------------------- /templates/markdown/install-win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/markdown/install-win.md -------------------------------------------------------------------------------- /templates/markdown/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/markdown/intro.md -------------------------------------------------------------------------------- /templates/markdown/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/markdown/license.md -------------------------------------------------------------------------------- /templates/markdown/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/markdown/links.md -------------------------------------------------------------------------------- /templates/markdown/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/markdown/troubleshooting.md -------------------------------------------------------------------------------- /templates/markdown/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/templates/markdown/usage.md -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/lib/CMakeLists.txt -------------------------------------------------------------------------------- /tools/lib/include/koalabox_tools/cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/lib/include/koalabox_tools/cmd.hpp -------------------------------------------------------------------------------- /tools/lib/include/koalabox_tools/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/lib/include/koalabox_tools/module.hpp -------------------------------------------------------------------------------- /tools/lib/include/koalabox_tools/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/lib/include/koalabox_tools/parser.hpp -------------------------------------------------------------------------------- /tools/lib/include/koalabox_tools/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/lib/include/koalabox_tools/zip.hpp -------------------------------------------------------------------------------- /tools/lib/src/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/lib/src/cmd.cpp -------------------------------------------------------------------------------- /tools/lib/src/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/lib/src/module.cpp -------------------------------------------------------------------------------- /tools/lib/src/module_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/lib/src/module_linux.cpp -------------------------------------------------------------------------------- /tools/lib/src/module_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/lib/src/module_win.cpp -------------------------------------------------------------------------------- /tools/lib/src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/lib/src/parser.cpp -------------------------------------------------------------------------------- /tools/lib/src/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/lib/src/zip.cpp -------------------------------------------------------------------------------- /tools/src/exports_generator/linux_exports_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/src/exports_generator/linux_exports_generator.cpp -------------------------------------------------------------------------------- /tools/src/exports_generator/windows_exports_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/src/exports_generator/windows_exports_generator.cpp -------------------------------------------------------------------------------- /tools/src/sync/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/src/sync/config.cpp -------------------------------------------------------------------------------- /tools/src/sync/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/src/sync/config.hpp -------------------------------------------------------------------------------- /tools/src/sync/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/KoalaBox/HEAD/tools/src/sync/sync.cpp --------------------------------------------------------------------------------