├── .gitignore ├── Create_app.command ├── LICENSE ├── README.md ├── Sources ├── Info.plist ├── MacOS │ └── Config Validator └── Resources │ ├── AppIcon.icns │ ├── AppIconOff.icns │ ├── AppSettings.plist │ ├── Hero.aiff │ ├── MainMenu.nib │ ├── designable.nib │ └── keyedobjects.nib │ ├── ocvalidate │ └── script └── Technical background.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Create_app.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Create_app.command -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Sources/Info.plist -------------------------------------------------------------------------------- /Sources/MacOS/Config Validator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Sources/MacOS/Config Validator -------------------------------------------------------------------------------- /Sources/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Sources/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Sources/Resources/AppIconOff.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Sources/Resources/AppIconOff.icns -------------------------------------------------------------------------------- /Sources/Resources/AppSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Sources/Resources/AppSettings.plist -------------------------------------------------------------------------------- /Sources/Resources/Hero.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Sources/Resources/Hero.aiff -------------------------------------------------------------------------------- /Sources/Resources/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Sources/Resources/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /Sources/Resources/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Sources/Resources/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sources/Resources/ocvalidate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Sources/Resources/ocvalidate -------------------------------------------------------------------------------- /Sources/Resources/script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Sources/Resources/script -------------------------------------------------------------------------------- /Technical background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Config-Validator/HEAD/Technical background.md --------------------------------------------------------------------------------