├── .gitignore ├── .swiftpm └── xcode │ └── xcshareddata │ └── xcschemes │ └── VersionIcon.xcscheme ├── Bin ├── Font │ ├── TrumpGothicPro-Bold.ttf │ ├── TrumpGothicPro-BoldItalic.ttf │ ├── TrumpGothicPro-Italic.ttf │ ├── TrumpGothicPro-Medium.ttf │ ├── TrumpGothicPro-MediumIt.ttf │ └── TrumpGothicPro.ttf ├── PSD │ ├── Ribbon.psd │ └── Title.psd ├── Ribbons │ ├── Blue-BottomLeft.png │ ├── Blue-BottomRight.png │ ├── Blue-TopLeft.png │ ├── Blue-TopRight.png │ ├── Cyan-BottomLeft.png │ ├── Cyan-BottomRight.png │ ├── Cyan-TopLeft.png │ ├── Cyan-TopRight.png │ ├── Gold-BottomLeft.png │ ├── Gold-BottomRight.png │ ├── Gold-TopLeft.png │ ├── Gold-TopRight.png │ ├── Green-BottomLeft.png │ ├── Green-BottomRight.png │ ├── Green-TopLeft.png │ ├── Green-TopRight.png │ ├── Purple-BottomLeft.png │ ├── Purple-BottomRight.png │ ├── Purple-TopLeft.png │ ├── Purple-TopRight.png │ ├── Red-BottomLeft.png │ ├── Red-BottomRight.png │ ├── Red-TopLeft.png │ └── Red-TopRight.png ├── Titles │ ├── Alpha-BottomLeft.png │ ├── Alpha-BottomRight.png │ ├── Alpha-TopLeft.png │ ├── Alpha-TopRight.png │ ├── Beta-BottomLeft.png │ ├── Beta-BottomRight.png │ ├── Beta-TopLeft.png │ ├── Beta-TopRight.png │ ├── Debug-BottomLeft.png │ ├── Debug-BottomRight.png │ ├── Debug-TopLeft.png │ ├── Debug-TopRight.png │ ├── Demo-BottomLeft.png │ ├── Demo-BottomRight.png │ ├── Demo-TopLeft.png │ ├── Demo-TopRight.png │ ├── Dev-BottomLeft.png │ ├── Dev-BottomRight.png │ ├── Dev-TopLeft.png │ ├── Dev-TopRight.png │ ├── Devel-BottomLeft.png │ ├── Devel-BottomRight.png │ ├── Devel-TopLeft.png │ ├── Devel-TopRight.png │ ├── MVP-BottomLeft.png │ ├── MVP-BottomRight.png │ ├── MVP-TopLeft.png │ ├── MVP-TopRight.png │ ├── Prod-BottomLeft.png │ ├── Prod-BottomRight.png │ ├── Prod-TopLeft.png │ ├── Prod-TopRight.png │ ├── Staging-BottomLeft.png │ ├── Staging-BottomRight.png │ ├── Staging-TopLeft.png │ └── Staging-TopRight.png └── VersionIcon ├── Documentation ├── AppIcon60x60@2x.png ├── AppIcon60x60@3x.png └── SchemeSetup.png ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── VersionIcon │ ├── VersionIconDefinitions.swift │ └── main.swift ├── Tests ├── LinuxMain.swift └── VersionIconTests │ ├── VersionIconTests.swift │ └── XCTestManifests.swift ├── VersionIcon.podspec └── install.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/VersionIcon.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/VersionIcon.xcscheme -------------------------------------------------------------------------------- /Bin/Font/TrumpGothicPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Font/TrumpGothicPro-Bold.ttf -------------------------------------------------------------------------------- /Bin/Font/TrumpGothicPro-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Font/TrumpGothicPro-BoldItalic.ttf -------------------------------------------------------------------------------- /Bin/Font/TrumpGothicPro-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Font/TrumpGothicPro-Italic.ttf -------------------------------------------------------------------------------- /Bin/Font/TrumpGothicPro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Font/TrumpGothicPro-Medium.ttf -------------------------------------------------------------------------------- /Bin/Font/TrumpGothicPro-MediumIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Font/TrumpGothicPro-MediumIt.ttf -------------------------------------------------------------------------------- /Bin/Font/TrumpGothicPro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Font/TrumpGothicPro.ttf -------------------------------------------------------------------------------- /Bin/PSD/Ribbon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/PSD/Ribbon.psd -------------------------------------------------------------------------------- /Bin/PSD/Title.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/PSD/Title.psd -------------------------------------------------------------------------------- /Bin/Ribbons/Blue-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Blue-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Blue-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Blue-BottomRight.png -------------------------------------------------------------------------------- /Bin/Ribbons/Blue-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Blue-TopLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Blue-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Blue-TopRight.png -------------------------------------------------------------------------------- /Bin/Ribbons/Cyan-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Cyan-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Cyan-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Cyan-BottomRight.png -------------------------------------------------------------------------------- /Bin/Ribbons/Cyan-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Cyan-TopLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Cyan-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Cyan-TopRight.png -------------------------------------------------------------------------------- /Bin/Ribbons/Gold-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Gold-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Gold-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Gold-BottomRight.png -------------------------------------------------------------------------------- /Bin/Ribbons/Gold-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Gold-TopLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Gold-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Gold-TopRight.png -------------------------------------------------------------------------------- /Bin/Ribbons/Green-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Green-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Green-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Green-BottomRight.png -------------------------------------------------------------------------------- /Bin/Ribbons/Green-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Green-TopLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Green-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Green-TopRight.png -------------------------------------------------------------------------------- /Bin/Ribbons/Purple-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Purple-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Purple-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Purple-BottomRight.png -------------------------------------------------------------------------------- /Bin/Ribbons/Purple-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Purple-TopLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Purple-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Purple-TopRight.png -------------------------------------------------------------------------------- /Bin/Ribbons/Red-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Red-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Red-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Red-BottomRight.png -------------------------------------------------------------------------------- /Bin/Ribbons/Red-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Red-TopLeft.png -------------------------------------------------------------------------------- /Bin/Ribbons/Red-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Ribbons/Red-TopRight.png -------------------------------------------------------------------------------- /Bin/Titles/Alpha-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Alpha-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Alpha-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Alpha-BottomRight.png -------------------------------------------------------------------------------- /Bin/Titles/Alpha-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Alpha-TopLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Alpha-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Alpha-TopRight.png -------------------------------------------------------------------------------- /Bin/Titles/Beta-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Beta-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Beta-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Beta-BottomRight.png -------------------------------------------------------------------------------- /Bin/Titles/Beta-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Beta-TopLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Beta-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Beta-TopRight.png -------------------------------------------------------------------------------- /Bin/Titles/Debug-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Debug-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Debug-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Debug-BottomRight.png -------------------------------------------------------------------------------- /Bin/Titles/Debug-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Debug-TopLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Debug-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Debug-TopRight.png -------------------------------------------------------------------------------- /Bin/Titles/Demo-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Demo-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Demo-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Demo-BottomRight.png -------------------------------------------------------------------------------- /Bin/Titles/Demo-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Demo-TopLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Demo-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Demo-TopRight.png -------------------------------------------------------------------------------- /Bin/Titles/Dev-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Dev-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Dev-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Dev-BottomRight.png -------------------------------------------------------------------------------- /Bin/Titles/Dev-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Dev-TopLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Dev-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Dev-TopRight.png -------------------------------------------------------------------------------- /Bin/Titles/Devel-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Devel-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Devel-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Devel-BottomRight.png -------------------------------------------------------------------------------- /Bin/Titles/Devel-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Devel-TopLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Devel-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Devel-TopRight.png -------------------------------------------------------------------------------- /Bin/Titles/MVP-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/MVP-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Titles/MVP-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/MVP-BottomRight.png -------------------------------------------------------------------------------- /Bin/Titles/MVP-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/MVP-TopLeft.png -------------------------------------------------------------------------------- /Bin/Titles/MVP-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/MVP-TopRight.png -------------------------------------------------------------------------------- /Bin/Titles/Prod-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Prod-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Prod-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Prod-BottomRight.png -------------------------------------------------------------------------------- /Bin/Titles/Prod-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Prod-TopLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Prod-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Prod-TopRight.png -------------------------------------------------------------------------------- /Bin/Titles/Staging-BottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Staging-BottomLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Staging-BottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Staging-BottomRight.png -------------------------------------------------------------------------------- /Bin/Titles/Staging-TopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Staging-TopLeft.png -------------------------------------------------------------------------------- /Bin/Titles/Staging-TopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/Titles/Staging-TopRight.png -------------------------------------------------------------------------------- /Bin/VersionIcon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Bin/VersionIcon -------------------------------------------------------------------------------- /Documentation/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Documentation/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /Documentation/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Documentation/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /Documentation/SchemeSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Documentation/SchemeSetup.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/README.md -------------------------------------------------------------------------------- /Sources/VersionIcon/VersionIconDefinitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Sources/VersionIcon/VersionIconDefinitions.swift -------------------------------------------------------------------------------- /Sources/VersionIcon/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Sources/VersionIcon/main.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/VersionIconTests/VersionIconTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Tests/VersionIconTests/VersionIconTests.swift -------------------------------------------------------------------------------- /Tests/VersionIconTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/Tests/VersionIconTests/XCTestManifests.swift -------------------------------------------------------------------------------- /VersionIcon.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/VersionIcon.podspec -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strvcom/ios-version-icon/HEAD/install.sh --------------------------------------------------------------------------------