├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .resources └── Assets │ ├── icon.png │ ├── icon.svg │ ├── logo.png │ ├── logo.svg │ ├── social.png │ └── social.svg ├── LICENSE.md ├── Package.swift ├── README.md ├── Sources └── AppIconGenerator │ ├── AppIconGenerator+View.swift │ ├── AppIconGenerator.swift │ ├── Components │ ├── IconSet.swift │ └── Logger.swift │ └── Extensions │ └── CGSize+Extensions.swift └── Tests └── AppIconGeneratorTests └── CGSize+Tests.swift /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /.resources/Assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/.resources/Assets/icon.png -------------------------------------------------------------------------------- /.resources/Assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/.resources/Assets/icon.svg -------------------------------------------------------------------------------- /.resources/Assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/.resources/Assets/logo.png -------------------------------------------------------------------------------- /.resources/Assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/.resources/Assets/logo.svg -------------------------------------------------------------------------------- /.resources/Assets/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/.resources/Assets/social.png -------------------------------------------------------------------------------- /.resources/Assets/social.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/.resources/Assets/social.svg -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AppIconGenerator/AppIconGenerator+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/Sources/AppIconGenerator/AppIconGenerator+View.swift -------------------------------------------------------------------------------- /Sources/AppIconGenerator/AppIconGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/Sources/AppIconGenerator/AppIconGenerator.swift -------------------------------------------------------------------------------- /Sources/AppIconGenerator/Components/IconSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/Sources/AppIconGenerator/Components/IconSet.swift -------------------------------------------------------------------------------- /Sources/AppIconGenerator/Components/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/Sources/AppIconGenerator/Components/Logger.swift -------------------------------------------------------------------------------- /Sources/AppIconGenerator/Extensions/CGSize+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/Sources/AppIconGenerator/Extensions/CGSize+Extensions.swift -------------------------------------------------------------------------------- /Tests/AppIconGeneratorTests/CGSize+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawello2222/AppIconGenerator/HEAD/Tests/AppIconGeneratorTests/CGSize+Tests.swift --------------------------------------------------------------------------------