├── .gitignore ├── AppStoreUpdateKit ├── AppStoreUpdateKit.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── AppStoreUpdateKit │ ├── ASUButton.h │ ├── ASUButton.m │ ├── ASUView.h │ ├── ASUView.m │ ├── AppStoreUpdateAppObject.h │ ├── AppStoreUpdateAppObject.m │ ├── AppStoreUpdateKit.h │ ├── AppStoreUpdateManager.h │ ├── AppStoreUpdateManager.m │ ├── AppStoreUpdateUIConfigure.h │ ├── AppStoreUpdateUIConfigure.m │ ├── AppStoreUpdateWindowController.h │ ├── AppStoreUpdateWindowController.m │ └── Info.plist └── AppStoreUpdateKitDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── AppStoreUpdateKitDemo.entitlements │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── cat.imageset │ │ ├── Contents.json │ │ └── cat.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Info.plist │ └── main.m ├── LICENSE ├── README.md ├── README_zh.md └── doc └── screenshot1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/.gitignore -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/ASUButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/ASUButton.h -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/ASUButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/ASUButton.m -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/ASUView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/ASUView.h -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/ASUView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/ASUView.m -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateAppObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateAppObject.h -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateAppObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateAppObject.m -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateKit.h -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateManager.h -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateManager.m -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateUIConfigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateUIConfigure.h -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateUIConfigure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateUIConfigure.m -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateWindowController.h -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/AppStoreUpdateWindowController.m -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKit/Info.plist -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKitDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKitDemo/AppDelegate.h -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKitDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKitDemo/AppDelegate.m -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKitDemo/AppStoreUpdateKitDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKitDemo/AppStoreUpdateKitDemo.entitlements -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKitDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKitDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKitDemo/Assets.xcassets/cat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKitDemo/Assets.xcassets/cat.imageset/Contents.json -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKitDemo/Assets.xcassets/cat.imageset/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKitDemo/Assets.xcassets/cat.imageset/cat.png -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKitDemo/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKitDemo/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKitDemo/Info.plist -------------------------------------------------------------------------------- /AppStoreUpdateKit/AppStoreUpdateKitDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/AppStoreUpdateKit/AppStoreUpdateKitDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/README_zh.md -------------------------------------------------------------------------------- /doc/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsiangHo/AppStoreUpdateKit/HEAD/doc/screenshot1.png --------------------------------------------------------------------------------