Compare commits
47 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| af050725a9 | |||
| 3977b624c7 | |||
| b1fddf4d9f | |||
| ab9172df55 | |||
| 4c5b026b5c | |||
| 17f3b583ff | |||
| be92ec74be | |||
| 234fd9a423 | |||
| 75ad36ef89 | |||
| 5b0e7579d7 | |||
| 13ba0ac6c1 | |||
| 1b290bd796 | |||
| df4a63e7d7 | |||
| f33a7a1dca | |||
| 1862a641d0 | |||
| 4baa13c906 | |||
| c92bdbcae6 | |||
| 424e4b22cf | |||
| 27c30e44e8 | |||
| 3bee57b665 | |||
| fea6b640eb | |||
| 682cf67c21 | |||
| 1ce010c06a | |||
| 975215d0ea | |||
| 278cfa438e | |||
| 7f34596679 | |||
| 2cd6f3b7f7 | |||
| 8aaa27639b | |||
| 750434c8e4 | |||
| 7b57b0ec6c | |||
| 0295c8fd33 | |||
| cd9d200a93 | |||
| 3ba8ab6ab0 | |||
| d9da0c1ff7 | |||
| ccebc7bb22 | |||
| 231fd049cb | |||
| add74552f8 | |||
| 151eea4bfb | |||
| 08fb58b597 | |||
| 4a30475939 | |||
| 2900b04c39 | |||
| f760ba493b | |||
| 2f69353f68 | |||
| f8b97a0ee5 | |||
| bddd3074d9 | |||
| 243b4d0cef | |||
| 5adeaf2c72 |
@@ -0,0 +1,141 @@
|
||||
#
|
||||
# Be sure to run `pod spec lint FlagKit.podspec' to ensure this is a
|
||||
# valid spec and to remove all comments including this before submitting the spec.
|
||||
#
|
||||
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
|
||||
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
|
||||
#
|
||||
|
||||
Pod::Spec.new do |s|
|
||||
|
||||
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
|
||||
#
|
||||
# These will help people to find your library, and whilst it
|
||||
# can feel like a chore to fill in it's definitely to your advantage. The
|
||||
# summary should be tweet-length, and the description more in depth.
|
||||
#
|
||||
|
||||
s.name = "FlagKit"
|
||||
s.version = "1.1"
|
||||
s.summary = "Beautiful flag icons for usage in apps and on the web."
|
||||
|
||||
# This description is used to generate tags and improve search results.
|
||||
# * Think: What does it do? Why did you write it? What is the focus?
|
||||
# * Try to keep it short, snappy and to the point.
|
||||
# * Write the description between the DESC delimiters below.
|
||||
# * Finally, don't worry about the indent, CocoaPods strips it!
|
||||
s.description = <<-DESC
|
||||
Beautiful flag icons for usage in your apps.
|
||||
Includes the vast majority of country flags out there and some special ones (World, EU).
|
||||
DESC
|
||||
|
||||
s.homepage = "https://github.com/madebybowtie/FlagKit"
|
||||
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
|
||||
|
||||
|
||||
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
|
||||
#
|
||||
# Licensing your code is important. See http://choosealicense.com for more info.
|
||||
# CocoaPods will detect a license file if there is a named LICENSE*
|
||||
# Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
|
||||
#
|
||||
|
||||
#s.license = "MIT (example)"
|
||||
s.license = { :type => "MIT", :file => "LICENSE" }
|
||||
|
||||
|
||||
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
|
||||
#
|
||||
# Specify the authors of the library, with email addresses. Email addresses
|
||||
# of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
|
||||
# accepts just a name if you'd rather not provide an email address.
|
||||
#
|
||||
# Specify a social_media_url where others can refer to, for example a twitter
|
||||
# profile URL.
|
||||
#
|
||||
|
||||
s.author = { "Bowtie" => "howdy@madebybowtie.com" }
|
||||
# Or just: s.author = "Simon Blommegård"
|
||||
# s.authors = { "Simon Blommegård" => "simon@blommegard.se" }
|
||||
s.social_media_url = "http://twitter.com/madebybowtie"
|
||||
|
||||
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
|
||||
#
|
||||
# If this Pod runs only on iOS or OS X, then specify the platform and
|
||||
# the deployment target. You can optionally include the target after the platform.
|
||||
#
|
||||
|
||||
# s.platform = :ios
|
||||
# s.platform = :ios, "5.0"
|
||||
|
||||
# When using multiple platforms
|
||||
s.ios.deployment_target = "8.0"
|
||||
s.osx.deployment_target = "10.10"
|
||||
# s.watchos.deployment_target = "2.0"
|
||||
s.tvos.deployment_target = "9.0"
|
||||
|
||||
|
||||
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
|
||||
#
|
||||
# Specify the location from where the source should be retrieved.
|
||||
# Supports git, hg, bzr, svn and HTTP.
|
||||
#
|
||||
|
||||
s.source = { :git => "https://github.com/madebybowtie/FlagKit.git", :tag => "v1.1" }
|
||||
|
||||
|
||||
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
|
||||
#
|
||||
# CocoaPods is smart about how it includes source code. For source files
|
||||
# giving a folder will include any swift, h, m, mm, c & cpp files.
|
||||
# For header files it will include any header in the folder.
|
||||
# Not including the public_header_files will make all headers public.
|
||||
#
|
||||
|
||||
s.ios.source_files = "Source/FlagKit.swift", "Source/UIImage.swift"
|
||||
s.tvos.source_files = "Source/FlagKit.swift", "Source/UIImage.swift"
|
||||
s.osx.source_files = "Source/FlagKit.swift", "Source/NSImage.swift"
|
||||
#s.exclude_files = "Classes/Exclude"
|
||||
|
||||
# s.public_header_files = "Classes/**/*.h"
|
||||
|
||||
|
||||
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
|
||||
#
|
||||
# A list of resources included with the Pod. These are copied into the
|
||||
# target bundle with a build phase script. Anything else will be cleaned.
|
||||
# You can preserve files from being cleaned, please don't preserve
|
||||
# non-essential files like tests, examples and documentation.
|
||||
#
|
||||
|
||||
s.resource = "FlagKit.xcassets"
|
||||
#s.resources = "Resources/*.png"
|
||||
|
||||
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
|
||||
|
||||
|
||||
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
|
||||
#
|
||||
# Link your library with frameworks, or libraries. Libraries do not include
|
||||
# the lib prefix of their name.
|
||||
#
|
||||
|
||||
# s.framework = "SomeFramework"
|
||||
# s.frameworks = "SomeFramework", "AnotherFramework"
|
||||
|
||||
# s.library = "iconv"
|
||||
# s.libraries = "iconv", "xml2"
|
||||
|
||||
|
||||
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
|
||||
#
|
||||
# If your library depends on compiler flags you can set them in the xcconfig hash
|
||||
# where they will only apply to your library. If you depend on other Podspecs
|
||||
# you can include multiple dependencies to ensure it works.
|
||||
|
||||
# s.requires_arc = true
|
||||
|
||||
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
|
||||
# s.dependency "JSONKit", "~> 1.4"
|
||||
|
||||
end
|
||||
|
After Width: | Height: | Size: 633 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AD.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AD@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AD@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AD@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AD@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 522 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AE.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AE@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AE@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AE@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AE@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 613 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AF.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AF@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AF@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AF@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AF@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 814 B |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.7 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AG.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AG@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AG@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AG@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AG@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 838 B |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x",
|
||||
"filename" : "AI.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x",
|
||||
"filename" : "AI@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x",
|
||||
"filename" : "AI@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 705 B |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AL.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AL@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AL@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AL@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AL@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 469 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AM.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AM@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AM@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AM@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AM@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 577 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AO.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AO@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AO@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AO@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AO@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 542 B |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.7 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AR.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AR@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AR@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AR@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AR@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 887 B |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x",
|
||||
"filename" : "AS.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x",
|
||||
"filename" : "AS@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x",
|
||||
"filename" : "AS@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 459 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AT.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AT@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AT@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AT@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AT@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 885 B |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.8 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AU.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AU@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AU@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AU@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AU@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 670 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AX.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AX@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AX@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AX@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AX@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 557 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "AZ.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AZ@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "AZ@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "AZ@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "AZ@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 818 B |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "BA.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BA@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "BA@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BA@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "BA@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 664 B |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "BB.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BB@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "BB@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BB@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "BB@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 672 B |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "BD.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BD@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "BD@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BD@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "BD@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 535 B |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "BE.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BE@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "BE@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BE@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "BE@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 598 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "BF.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BF@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "BF@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BF@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "BF@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 446 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "BG.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BG@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "BG@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BG@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "BG@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 567 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "BH.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BH@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "BH@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BH@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "BH@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 1006 B |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "BI.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BI@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "BI@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BI@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "BI@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 563 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -2,21 +2,22 @@
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
"scale" : "1x",
|
||||
"filename" : "BJ.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BJ@2x.png",
|
||||
"scale" : "2x"
|
||||
"scale" : "2x",
|
||||
"filename" : "BJ@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "BJ@3x.png",
|
||||
"scale" : "3x"
|
||||
"scale" : "3x",
|
||||
"filename" : "BJ@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 677 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x",
|
||||
"filename" : "BL.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x",
|
||||
"filename" : "BL@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x",
|
||||
"filename" : "BL@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 810 B |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 4.2 KiB |