├── .gitignore ├── .swiftpm └── xcode │ └── xcshareddata │ └── xcschemes │ ├── plist2profile.xcscheme │ ├── prefs.xcscheme │ ├── swift-prefs-Package.xcscheme │ └── swift-prefs.xcscheme ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── plist2profile │ └── Plist2Profile.swift └── prefs │ ├── Preferences.swift │ └── Prefs.swift ├── com.scriptingosx.example.plist └── pkgAndNotarize.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/plist2profile.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/plist2profile.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/prefs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/prefs.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/swift-prefs-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/swift-prefs-Package.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/swift-prefs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/swift-prefs.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/README.md -------------------------------------------------------------------------------- /Sources/plist2profile/Plist2Profile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/Sources/plist2profile/Plist2Profile.swift -------------------------------------------------------------------------------- /Sources/prefs/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/Sources/prefs/Preferences.swift -------------------------------------------------------------------------------- /Sources/prefs/Prefs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/Sources/prefs/Prefs.swift -------------------------------------------------------------------------------- /com.scriptingosx.example.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/com.scriptingosx.example.plist -------------------------------------------------------------------------------- /pkgAndNotarize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/swift-prefs/HEAD/pkgAndNotarize.sh --------------------------------------------------------------------------------