├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── AlinFoundation │ ├── AlinFoundation.swift │ ├── Authorization.swift │ ├── ColorPicker.swift │ ├── HelperToolManager.swift │ ├── LogStorage.swift │ ├── PermissionManager.swift │ ├── Styles.swift │ ├── ThemeManager.swift │ ├── TokenManager.swift │ ├── UpdateView.swift │ ├── Updater.swift │ ├── UpdaterModels.swift │ ├── UpdaterService.swift │ ├── Utilities.swift │ └── WindowController.swift └── announcements.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AlinFoundation/AlinFoundation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/AlinFoundation.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/Authorization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/Authorization.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/ColorPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/ColorPicker.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/HelperToolManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/HelperToolManager.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/LogStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/LogStorage.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/PermissionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/PermissionManager.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/Styles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/Styles.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/ThemeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/ThemeManager.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/TokenManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/TokenManager.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/UpdateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/UpdateView.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/Updater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/Updater.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/UpdaterModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/UpdaterModels.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/UpdaterService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/UpdaterService.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/Utilities.swift -------------------------------------------------------------------------------- /Sources/AlinFoundation/WindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/Sources/AlinFoundation/WindowController.swift -------------------------------------------------------------------------------- /announcements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alienator88/AlinFoundation/HEAD/announcements.json --------------------------------------------------------------------------------