├── .clang-format ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── ci.yml │ ├── remote-deploy.yml │ └── update-submodules.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── AirDrop.shortcut ├── build-actions.sh ├── extensions.json ├── logos-format.py ├── settings.json └── tasks.json ├── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── Unbound.plist ├── app-repo.json ├── control ├── flake.lock ├── flake.nix ├── headers ├── Analytics.h ├── ChatUI.h ├── Debug.h ├── FileSystem.h ├── Fonts.h ├── Logger.h ├── MobileGestalt.h ├── NotificationDelegate.h ├── PluginAPI.h ├── Plugins.h ├── RCTBridgeModule.h ├── RCTBundleManager.h ├── RCTCxxBridge.h ├── RCTDefines.h ├── RCTDeprecation.h ├── RCTJSThread.h ├── Settings.h ├── Sideloading.h ├── Themes.h ├── Toolbox.h ├── Unbound.h ├── UnboundNative.h ├── Updater.h └── Utilities.h └── sources ├── Analytics.x ├── ChatUI.x ├── Debug.x ├── FileSystem.m ├── Fonts.x ├── Logger.m ├── MobileGestalt.m ├── NotificationDelegate.x ├── PluginAPI.m ├── Plugins.m ├── Settings.m ├── Sideloading.x ├── Themes.x ├── Toolbox.x ├── Unbound.x ├── UnboundNative.m ├── Updater.m └── Utilities.m /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/remote-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.github/workflows/remote-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/update-submodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.github/workflows/update-submodules.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/AirDrop.shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.vscode/AirDrop.shortcut -------------------------------------------------------------------------------- /.vscode/build-actions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.vscode/build-actions.sh -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/logos-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.vscode/logos-format.py -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @acquitelol @marioparaschiv @castdrian 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/README.md -------------------------------------------------------------------------------- /Unbound.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/Unbound.plist -------------------------------------------------------------------------------- /app-repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/app-repo.json -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/control -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/flake.nix -------------------------------------------------------------------------------- /headers/Analytics.h: -------------------------------------------------------------------------------- 1 | #import "Unbound.h" 2 | -------------------------------------------------------------------------------- /headers/ChatUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/ChatUI.h -------------------------------------------------------------------------------- /headers/Debug.h: -------------------------------------------------------------------------------- 1 | #import "Unbound.h" 2 | -------------------------------------------------------------------------------- /headers/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/FileSystem.h -------------------------------------------------------------------------------- /headers/Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/Fonts.h -------------------------------------------------------------------------------- /headers/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/Logger.h -------------------------------------------------------------------------------- /headers/MobileGestalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/MobileGestalt.h -------------------------------------------------------------------------------- /headers/NotificationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/NotificationDelegate.h -------------------------------------------------------------------------------- /headers/PluginAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/PluginAPI.h -------------------------------------------------------------------------------- /headers/Plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/Plugins.h -------------------------------------------------------------------------------- /headers/RCTBridgeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/RCTBridgeModule.h -------------------------------------------------------------------------------- /headers/RCTBundleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/RCTBundleManager.h -------------------------------------------------------------------------------- /headers/RCTCxxBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/RCTCxxBridge.h -------------------------------------------------------------------------------- /headers/RCTDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/RCTDefines.h -------------------------------------------------------------------------------- /headers/RCTDeprecation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/RCTDeprecation.h -------------------------------------------------------------------------------- /headers/RCTJSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/RCTJSThread.h -------------------------------------------------------------------------------- /headers/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/Settings.h -------------------------------------------------------------------------------- /headers/Sideloading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/Sideloading.h -------------------------------------------------------------------------------- /headers/Themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/Themes.h -------------------------------------------------------------------------------- /headers/Toolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/Toolbox.h -------------------------------------------------------------------------------- /headers/Unbound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/Unbound.h -------------------------------------------------------------------------------- /headers/UnboundNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/UnboundNative.h -------------------------------------------------------------------------------- /headers/Updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/Updater.h -------------------------------------------------------------------------------- /headers/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/headers/Utilities.h -------------------------------------------------------------------------------- /sources/Analytics.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Analytics.x -------------------------------------------------------------------------------- /sources/ChatUI.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/ChatUI.x -------------------------------------------------------------------------------- /sources/Debug.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Debug.x -------------------------------------------------------------------------------- /sources/FileSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/FileSystem.m -------------------------------------------------------------------------------- /sources/Fonts.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Fonts.x -------------------------------------------------------------------------------- /sources/Logger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Logger.m -------------------------------------------------------------------------------- /sources/MobileGestalt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/MobileGestalt.m -------------------------------------------------------------------------------- /sources/NotificationDelegate.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/NotificationDelegate.x -------------------------------------------------------------------------------- /sources/PluginAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/PluginAPI.m -------------------------------------------------------------------------------- /sources/Plugins.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Plugins.m -------------------------------------------------------------------------------- /sources/Settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Settings.m -------------------------------------------------------------------------------- /sources/Sideloading.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Sideloading.x -------------------------------------------------------------------------------- /sources/Themes.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Themes.x -------------------------------------------------------------------------------- /sources/Toolbox.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Toolbox.x -------------------------------------------------------------------------------- /sources/Unbound.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Unbound.x -------------------------------------------------------------------------------- /sources/UnboundNative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/UnboundNative.m -------------------------------------------------------------------------------- /sources/Updater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Updater.m -------------------------------------------------------------------------------- /sources/Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbound-app/loader-ios/HEAD/sources/Utilities.m --------------------------------------------------------------------------------