├── .gitignore ├── LICENSE ├── LLIconVersioning.sh ├── LLIconVersioningDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LLIconVersioningDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon-Debug.appiconset │ │ ├── Contents.json │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ └── ll_user.bat │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-60@2x.png │ │ └── icon-60@3x.png │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── README-cn.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LICENSE -------------------------------------------------------------------------------- /LLIconVersioning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioning.sh -------------------------------------------------------------------------------- /LLIconVersioningDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LLIconVersioningDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LLIconVersioningDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LLIconVersioningDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/AppDelegate.h -------------------------------------------------------------------------------- /LLIconVersioningDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/AppDelegate.m -------------------------------------------------------------------------------- /LLIconVersioningDemo/Assets.xcassets/AppIcon-Debug.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/Assets.xcassets/AppIcon-Debug.appiconset/Contents.json -------------------------------------------------------------------------------- /LLIconVersioningDemo/Assets.xcassets/AppIcon-Debug.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/Assets.xcassets/AppIcon-Debug.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /LLIconVersioningDemo/Assets.xcassets/AppIcon-Debug.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/Assets.xcassets/AppIcon-Debug.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /LLIconVersioningDemo/Assets.xcassets/AppIcon-Debug.appiconset/ll_user.bat: -------------------------------------------------------------------------------- 1 | 1.0.0\n(9) 2 | -------------------------------------------------------------------------------- /LLIconVersioningDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LLIconVersioningDemo/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /LLIconVersioningDemo/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /LLIconVersioningDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LLIconVersioningDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LLIconVersioningDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LLIconVersioningDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/Info.plist -------------------------------------------------------------------------------- /LLIconVersioningDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/ViewController.h -------------------------------------------------------------------------------- /LLIconVersioningDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/ViewController.m -------------------------------------------------------------------------------- /LLIconVersioningDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/LLIconVersioningDemo/main.m -------------------------------------------------------------------------------- /README-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/README-cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLIconVersioning/HEAD/README.md --------------------------------------------------------------------------------