Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 | |||
| 75a89d9931 | |||
| dcda2bdacc | |||
| 8fc7f748a7 | |||
| 529a5fac86 | |||
| 6e03f0eac1 | |||
| 91ca533b08 |
@@ -0,0 +1,28 @@
|
||||
//
|
||||
// UIImage+FlagKit.swift
|
||||
// FlagKit
|
||||
//
|
||||
// Created by Simon Blommegård on 22/09/15.
|
||||
// Copyright © 2015 Bowtie. All rights reserved.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
public class FlagKit {
|
||||
public enum SpecialFlag: String {
|
||||
case World = "WW"
|
||||
case EuropeanUnion = "EU"
|
||||
case NorthAmerica = "CNA"
|
||||
case SouthAmerica = "CSA"
|
||||
case Europe = "CEU"
|
||||
case Africa = "CAF"
|
||||
case Asia = "CAS"
|
||||
case Oceania = "COC"
|
||||
}
|
||||
|
||||
public class var assetBundle: NSBundle {
|
||||
get {
|
||||
return NSBundle(forClass: FlagKit.self)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// FlagKit.h
|
||||
// FlagKit-OSX
|
||||
//
|
||||
// Created by Simon Blommegard on 25/10/15.
|
||||
// Copyright © 2015 Bowtie. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
//! Project version number for FlagKit-OSX.
|
||||
FOUNDATION_EXPORT double FlagKitVersionNumber;
|
||||
|
||||
//! Project version string for FlagKit-OSX.
|
||||
FOUNDATION_EXPORT const unsigned char FlagKitVersionString[];
|
||||
|
||||
// In this header, you should import all the public headers of your framework using statements like #import <FlagKit/PublicHeader.h>
|
||||
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>$(PRODUCT_NAME)</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.7</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2015 Bowtie. All rights reserved.</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string></string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// NSImage.swift
|
||||
// FlagKit
|
||||
//
|
||||
// Created by Simon Blommegård on 21/10/15.
|
||||
// Copyright © 2015 Bowtie. All rights reserved.
|
||||
//
|
||||
|
||||
import Cocoa
|
||||
|
||||
public extension NSImage {
|
||||
|
||||
public convenience init?(flagImageWithCountryCode countryCode: String) {
|
||||
guard let image = FlagKit.assetBundle.imageForResource(countryCode) else {return nil}
|
||||
guard let CGImage = image.CGImageForProposedRect(nil, context: nil, hints: nil) else {return nil}
|
||||
self.init(CGImage:CGImage, size:image.size)
|
||||
}
|
||||
|
||||
public convenience init?(flagImageForSpecialFlag specialFlag: FlagKit.SpecialFlag) {
|
||||
self.init(flagImageWithCountryCode:specialFlag.rawValue)
|
||||
}
|
||||
}
|
||||
@@ -1,17 +1,17 @@
|
||||
//
|
||||
// FlagKit.h
|
||||
// FlagKit
|
||||
// FlagKit-iOS
|
||||
//
|
||||
// Created by Simon Blommegård on 22/09/15.
|
||||
// Created by Simon Blommegard on 25/10/15.
|
||||
// Copyright © 2015 Bowtie. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
//! Project version number for FlagKit.
|
||||
//! Project version number for FlagKit-iOS.
|
||||
FOUNDATION_EXPORT double FlagKitVersionNumber;
|
||||
|
||||
//! Project version string for FlagKit.
|
||||
//! Project version string for FlagKit-iOS.
|
||||
FOUNDATION_EXPORT const unsigned char FlagKitVersionString[];
|
||||
|
||||
// In this header, you should import all the public headers of your framework using statements like #import <FlagKit/PublicHeader.h>
|
||||
@@ -15,7 +15,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<string>1.0.7</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
@@ -0,0 +1,20 @@
|
||||
//
|
||||
// UIImage.swift
|
||||
// FlagKit
|
||||
//
|
||||
// Created by Simon Blommegård on 21/10/15.
|
||||
// Copyright © 2015 Bowtie. All rights reserved.
|
||||
//
|
||||
|
||||
import UIKit
|
||||
|
||||
public extension UIImage {
|
||||
|
||||
public convenience init?(flagImageWithCountryCode countryCode: String) {
|
||||
self.init(named:countryCode, inBundle:FlagKit.assetBundle, compatibleWithTraitCollection:nil)
|
||||
}
|
||||
|
||||
public convenience init?(flagImageForSpecialFlag specialFlag: FlagKit.SpecialFlag) {
|
||||
self.init(flagImageWithCountryCode:specialFlag.rawValue)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,140 @@
|
||||
#
|
||||
# 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.0.7"
|
||||
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/Simon Blommegård"
|
||||
|
||||
# ――― 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.0.7" }
|
||||
|
||||
|
||||
# ――― 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 = "FlagKit-Common", "FlagKit-iOS/"
|
||||
s.osx.source_files = "FlagKit-Common", "FlagKit-OSX/"
|
||||
#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: 629 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: 515 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 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: 607 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" : "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: 813 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.6 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: 835 B |
|
After Width: | Height: | Size: 2.3 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: 703 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: 466 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: 575 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: 554 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.6 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: 458 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: 875 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.7 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: 672 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: 551 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: 820 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: 661 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: 674 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.4 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: 531 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: 606 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: 438 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: 573 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: 996 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: 560 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: 813 B |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x",
|
||||
"filename" : "BM.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x",
|
||||
"filename" : "BM@2x.png"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x",
|
||||
"filename" : "BM@3x.png"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||