├── .gitignore ├── LICENSE ├── ProfilesManager.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── ProfilesManager ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── Localizable.strings │ └── MainMenu.xib ├── Category │ ├── NSData+JKBase64.h │ ├── NSData+JKBase64.m │ ├── NSFileManager+Trash.h │ ├── NSFileManager+Trash.m │ ├── NSOutlineView+Menu.h │ └── NSOutlineView+Menu.m ├── Controller │ ├── Base.lproj │ │ └── ProfilesManagerWindowController.xib │ ├── PreviewViewController.h │ ├── PreviewViewController.m │ ├── PreviewViewController.xib │ ├── ProfilesManagerViewController.h │ ├── ProfilesManagerViewController.m │ ├── ProfilesManagerViewController.xib │ ├── ProfilesManagerWindowController.h │ ├── ProfilesManagerWindowController.m │ ├── en.lproj │ │ └── ProfilesManagerWindowController.strings │ └── zh-Hans.lproj │ │ └── ProfilesManagerWindowController.strings ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon_128x128.png │ │ ├── Icon_128x128@2x.png │ │ ├── Icon_16x16.png │ │ ├── Icon_16x16@2x.png │ │ ├── Icon_256x256.png │ │ ├── Icon_256x256@2x.png │ │ ├── Icon_32x32.png │ │ ├── Icon_32x32@2x.png │ │ ├── Icon_512x512.png │ │ └── Icon_512x512@2x.png ├── Info.plist ├── Manager │ ├── CertificateManger │ │ ├── CertificateManager.h │ │ └── CertificateManager.m │ ├── DateManager │ │ ├── DateManager.h │ │ └── DateManager.m │ └── PlistManager │ │ ├── PlistManager.h │ │ └── PlistManager.m ├── Model │ ├── ProfilesNode.h │ └── ProfilesNode.m ├── ProfilesManager.entitlements ├── ProvisionQL.qlgenerator │ └── Contents │ │ ├── CodeResources │ │ ├── Info.plist │ │ ├── MacOS │ │ └── ProvisionQL │ │ ├── Resources │ │ ├── blankIcon.png │ │ ├── defaultIcon.png │ │ └── template.html │ │ └── _CodeSignature │ │ └── CodeResources ├── Vendor │ ├── GitHubUpdates │ │ ├── GitHubInstallWindowController.h │ │ ├── GitHubInstallWindowController.m │ │ ├── GitHubProgressWindowController.h │ │ ├── GitHubProgressWindowController.m │ │ ├── GitHubRelease.h │ │ ├── GitHubRelease.m │ │ ├── GitHubReleaseAsset.h │ │ ├── GitHubReleaseAsset.m │ │ ├── GitHubUpdater.h │ │ ├── GitHubUpdater.m │ │ ├── GitHubUpdaterDelegate.h │ │ ├── GitHubUpdates.h │ │ ├── GitHubVersion.h │ │ ├── GitHubVersion.m │ │ ├── Info.plist │ │ ├── Interface │ │ │ ├── Base.lproj │ │ │ │ ├── GitHubInstallWindowController.xib │ │ │ │ └── GitHubProgressWindowController.xib │ │ │ └── Images │ │ │ │ ├── GitHubTemplate.pdf │ │ │ │ └── Install.pdf │ │ ├── NSAttributedString+GitHubUpdates.h │ │ ├── NSAttributedString+GitHubUpdates.m │ │ ├── NSBundle+GitHubUpdates.h │ │ ├── NSBundle+GitHubUpdates.m │ │ ├── NSError+GitHubUpdates.h │ │ ├── NSError+GitHubUpdates.m │ │ ├── NSMutableAttributedString+GitHubUpdates.h │ │ ├── NSMutableAttributedString+GitHubUpdates.m │ │ ├── NSString+GitHubUpdates.h │ │ ├── NSString+GitHubUpdates.m │ │ ├── Pair.h │ │ └── Pair.m │ ├── iAlert.h │ └── iAlert.m ├── View │ ├── DragOutlineView.h │ └── DragOutlineView.m ├── en.lproj │ ├── Localizable.strings │ └── MainMenu.strings ├── main.m └── zh-Hans.lproj │ ├── Localizable.strings │ └── MainMenu.strings ├── README.md ├── demo.jpg └── icon.psd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/LICENSE -------------------------------------------------------------------------------- /ProfilesManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ProfilesManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ProfilesManager.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ProfilesManager/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/AppDelegate.h -------------------------------------------------------------------------------- /ProfilesManager/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/AppDelegate.m -------------------------------------------------------------------------------- /ProfilesManager/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /ProfilesManager/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /ProfilesManager/Category/NSData+JKBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Category/NSData+JKBase64.h -------------------------------------------------------------------------------- /ProfilesManager/Category/NSData+JKBase64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Category/NSData+JKBase64.m -------------------------------------------------------------------------------- /ProfilesManager/Category/NSFileManager+Trash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Category/NSFileManager+Trash.h -------------------------------------------------------------------------------- /ProfilesManager/Category/NSFileManager+Trash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Category/NSFileManager+Trash.m -------------------------------------------------------------------------------- /ProfilesManager/Category/NSOutlineView+Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Category/NSOutlineView+Menu.h -------------------------------------------------------------------------------- /ProfilesManager/Category/NSOutlineView+Menu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Category/NSOutlineView+Menu.m -------------------------------------------------------------------------------- /ProfilesManager/Controller/Base.lproj/ProfilesManagerWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Controller/Base.lproj/ProfilesManagerWindowController.xib -------------------------------------------------------------------------------- /ProfilesManager/Controller/PreviewViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Controller/PreviewViewController.h -------------------------------------------------------------------------------- /ProfilesManager/Controller/PreviewViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Controller/PreviewViewController.m -------------------------------------------------------------------------------- /ProfilesManager/Controller/PreviewViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Controller/PreviewViewController.xib -------------------------------------------------------------------------------- /ProfilesManager/Controller/ProfilesManagerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Controller/ProfilesManagerViewController.h -------------------------------------------------------------------------------- /ProfilesManager/Controller/ProfilesManagerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Controller/ProfilesManagerViewController.m -------------------------------------------------------------------------------- /ProfilesManager/Controller/ProfilesManagerViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Controller/ProfilesManagerViewController.xib -------------------------------------------------------------------------------- /ProfilesManager/Controller/ProfilesManagerWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Controller/ProfilesManagerWindowController.h -------------------------------------------------------------------------------- /ProfilesManager/Controller/ProfilesManagerWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Controller/ProfilesManagerWindowController.m -------------------------------------------------------------------------------- /ProfilesManager/Controller/en.lproj/ProfilesManagerWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Controller/en.lproj/ProfilesManagerWindowController.strings -------------------------------------------------------------------------------- /ProfilesManager/Controller/zh-Hans.lproj/ProfilesManagerWindowController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Controller/zh-Hans.lproj/ProfilesManagerWindowController.strings -------------------------------------------------------------------------------- /ProfilesManager/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_128x128.png -------------------------------------------------------------------------------- /ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_128x128@2x.png -------------------------------------------------------------------------------- /ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_16x16.png -------------------------------------------------------------------------------- /ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_16x16@2x.png -------------------------------------------------------------------------------- /ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_256x256.png -------------------------------------------------------------------------------- /ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_256x256@2x.png -------------------------------------------------------------------------------- /ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_32x32.png -------------------------------------------------------------------------------- /ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_32x32@2x.png -------------------------------------------------------------------------------- /ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_512x512.png -------------------------------------------------------------------------------- /ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Images.xcassets/AppIcon.appiconset/Icon_512x512@2x.png -------------------------------------------------------------------------------- /ProfilesManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Info.plist -------------------------------------------------------------------------------- /ProfilesManager/Manager/CertificateManger/CertificateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Manager/CertificateManger/CertificateManager.h -------------------------------------------------------------------------------- /ProfilesManager/Manager/CertificateManger/CertificateManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Manager/CertificateManger/CertificateManager.m -------------------------------------------------------------------------------- /ProfilesManager/Manager/DateManager/DateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Manager/DateManager/DateManager.h -------------------------------------------------------------------------------- /ProfilesManager/Manager/DateManager/DateManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Manager/DateManager/DateManager.m -------------------------------------------------------------------------------- /ProfilesManager/Manager/PlistManager/PlistManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Manager/PlistManager/PlistManager.h -------------------------------------------------------------------------------- /ProfilesManager/Manager/PlistManager/PlistManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Manager/PlistManager/PlistManager.m -------------------------------------------------------------------------------- /ProfilesManager/Model/ProfilesNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Model/ProfilesNode.h -------------------------------------------------------------------------------- /ProfilesManager/Model/ProfilesNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Model/ProfilesNode.m -------------------------------------------------------------------------------- /ProfilesManager/ProfilesManager.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/ProfilesManager.entitlements -------------------------------------------------------------------------------- /ProfilesManager/ProvisionQL.qlgenerator/Contents/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/ProvisionQL.qlgenerator/Contents/CodeResources -------------------------------------------------------------------------------- /ProfilesManager/ProvisionQL.qlgenerator/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/ProvisionQL.qlgenerator/Contents/Info.plist -------------------------------------------------------------------------------- /ProfilesManager/ProvisionQL.qlgenerator/Contents/MacOS/ProvisionQL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/ProvisionQL.qlgenerator/Contents/MacOS/ProvisionQL -------------------------------------------------------------------------------- /ProfilesManager/ProvisionQL.qlgenerator/Contents/Resources/blankIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/ProvisionQL.qlgenerator/Contents/Resources/blankIcon.png -------------------------------------------------------------------------------- /ProfilesManager/ProvisionQL.qlgenerator/Contents/Resources/defaultIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/ProvisionQL.qlgenerator/Contents/Resources/defaultIcon.png -------------------------------------------------------------------------------- /ProfilesManager/ProvisionQL.qlgenerator/Contents/Resources/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/ProvisionQL.qlgenerator/Contents/Resources/template.html -------------------------------------------------------------------------------- /ProfilesManager/ProvisionQL.qlgenerator/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/ProvisionQL.qlgenerator/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubInstallWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubInstallWindowController.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubInstallWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubInstallWindowController.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubProgressWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubProgressWindowController.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubProgressWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubProgressWindowController.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubRelease.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubRelease.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubRelease.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubRelease.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubReleaseAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubReleaseAsset.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubReleaseAsset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubReleaseAsset.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubUpdater.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubUpdater.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubUpdaterDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubUpdaterDelegate.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubUpdates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubUpdates.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubVersion.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/GitHubVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/GitHubVersion.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/Info.plist -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/Interface/Base.lproj/GitHubInstallWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/Interface/Base.lproj/GitHubInstallWindowController.xib -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/Interface/Base.lproj/GitHubProgressWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/Interface/Base.lproj/GitHubProgressWindowController.xib -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/Interface/Images/GitHubTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/Interface/Images/GitHubTemplate.pdf -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/Interface/Images/Install.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/Interface/Images/Install.pdf -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/NSAttributedString+GitHubUpdates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/NSAttributedString+GitHubUpdates.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/NSAttributedString+GitHubUpdates.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/NSAttributedString+GitHubUpdates.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/NSBundle+GitHubUpdates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/NSBundle+GitHubUpdates.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/NSBundle+GitHubUpdates.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/NSBundle+GitHubUpdates.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/NSError+GitHubUpdates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/NSError+GitHubUpdates.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/NSError+GitHubUpdates.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/NSError+GitHubUpdates.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/NSMutableAttributedString+GitHubUpdates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/NSMutableAttributedString+GitHubUpdates.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/NSMutableAttributedString+GitHubUpdates.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/NSMutableAttributedString+GitHubUpdates.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/NSString+GitHubUpdates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/NSString+GitHubUpdates.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/NSString+GitHubUpdates.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/NSString+GitHubUpdates.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/Pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/Pair.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/GitHubUpdates/Pair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/GitHubUpdates/Pair.m -------------------------------------------------------------------------------- /ProfilesManager/Vendor/iAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/iAlert.h -------------------------------------------------------------------------------- /ProfilesManager/Vendor/iAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/Vendor/iAlert.m -------------------------------------------------------------------------------- /ProfilesManager/View/DragOutlineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/View/DragOutlineView.h -------------------------------------------------------------------------------- /ProfilesManager/View/DragOutlineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/View/DragOutlineView.m -------------------------------------------------------------------------------- /ProfilesManager/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /ProfilesManager/en.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/en.lproj/MainMenu.strings -------------------------------------------------------------------------------- /ProfilesManager/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/main.m -------------------------------------------------------------------------------- /ProfilesManager/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /ProfilesManager/zh-Hans.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/ProfilesManager/zh-Hans.lproj/MainMenu.strings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/README.md -------------------------------------------------------------------------------- /demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/demo.jpg -------------------------------------------------------------------------------- /icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaojiankui/ProfilesManager/HEAD/icon.psd --------------------------------------------------------------------------------