Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move Icon Creation to GenerateIssuerIconAssets.sh #60

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
xcuserdata
.DS_Store

55 changes: 55 additions & 0 deletions GenerateIssuerIconAssets.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
#!/usr/bin/env bash
set -euo pipefail

get_name() {
# RegEx Explanation:
# Positive Lookbehind -- (?<=\.\/IssuerIcons\/)
# Asserts that the selected portion must be preceeded by ./IssuerIcons/
# Pattern Match -- .*
# Matches all characters, excluding newlines, of any length
# Positive Lookforward -- (?=\.png)
# Asserts that the selected portion must be followed by .png
echo $1 | sed -E 's:.+/(.+)\.png:\1:'
}

write_json() {
# JSON copied from Xcode output
cat << EOF > "$2"
{
"images" : [
{
"idiom" : "universal",
"filename" : "${1}.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "${1}@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "${1}@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
EOF
}

cd "$(dirname "$0")"
for file in ./IssuerIcons/*.png; do
calleluks marked this conversation as resolved.
Show resolved Hide resolved
name="$(get_name $file)"
echo "Generating icon for ${name}"
imageset="./Tofu/Assets.xcassets/${name}.imageset/"
mkdir -p "$imageset"
sips --resampleWidth 192 "$file" --out "${imageset}${name}@3x.png" >/dev/null
sips --resampleWidth 128 "$file" --out "${imageset}${name}@2x.png" >/dev/null
sips --resampleWidth 64 "$file" --out "${imageset}${name}.png" >/dev/null
write_json "$name" "${imageset}Contents.json"
done

Binary file removed IssuerIcons.sketch
Binary file not shown.
Binary file added IssuerIcons/AWS.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Adobe.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Amazon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Backblaze.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Bitbucket.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Coinbase.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/DNSimple.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/DigitalOcean.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Dropbox.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Evernote.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Facebook.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/FastMail.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/GitHub.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Gitea.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Google.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/GreenAddress.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Heroku.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Hover.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/IFTTT.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Intercom.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Kickstarter.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Linode.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/LocalBitcoins.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Microsoft.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Name.com.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added IssuerIcons/Privacy.png
Binary file added IssuerIcons/Slack.png
Binary file added IssuerIcons/Stripe.png
Binary file added IssuerIcons/Tumblr.png
Binary file modified Tofu/Assets.xcassets/AWS.imageset/AWS.png
Binary file modified Tofu/Assets.xcassets/AWS.imageset/AWS@2x.png
Binary file modified Tofu/Assets.xcassets/AWS.imageset/AWS@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/AWS.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Adobe.imageset/Adobe.png
Binary file modified Tofu/Assets.xcassets/Adobe.imageset/Adobe@2x.png
Binary file modified Tofu/Assets.xcassets/Adobe.imageset/Adobe@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Adobe.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Allegro.imageset/Allegro.png
Binary file modified Tofu/Assets.xcassets/Allegro.imageset/Allegro@2x.png
Binary file modified Tofu/Assets.xcassets/Allegro.imageset/Allegro@3x.png
Binary file modified Tofu/Assets.xcassets/Amazon.imageset/Amazon.png
Binary file modified Tofu/Assets.xcassets/Amazon.imageset/Amazon@2x.png
Binary file modified Tofu/Assets.xcassets/Amazon.imageset/Amazon@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Amazon.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/AnonAddy.imageset/AnonAddy.png
Binary file modified Tofu/Assets.xcassets/AnonAddy.imageset/AnonAddy@2x.png
Binary file modified Tofu/Assets.xcassets/AnonAddy.imageset/AnonAddy@3x.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon-iTC.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon29@1x.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon29@2x-1.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon29@2x.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon29@3x.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon40@1x.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon40@2x-1.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon40@2x.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon40@3x.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon60@2x.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon60@3x.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon76@1x.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon76@2x.png
Binary file modified Tofu/Assets.xcassets/AppIcon.appiconset/AppIcon83.5@2x.png
Binary file modified Tofu/Assets.xcassets/Atlassian.imageset/Atlassian.png
Binary file modified Tofu/Assets.xcassets/Atlassian.imageset/Atlassian@2x.png
Binary file modified Tofu/Assets.xcassets/Atlassian.imageset/Atlassian@3x.png
Binary file modified Tofu/Assets.xcassets/Backblaze.imageset/Backblaze.png
Binary file modified Tofu/Assets.xcassets/Backblaze.imageset/Backblaze@2x.png
Binary file modified Tofu/Assets.xcassets/Backblaze.imageset/Backblaze@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Backblaze.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Basecamp.imageset/Basecamp.png
Binary file modified Tofu/Assets.xcassets/Basecamp.imageset/Basecamp@2x.png
Binary file modified Tofu/Assets.xcassets/Basecamp.imageset/Basecamp@3x.png
Binary file modified Tofu/Assets.xcassets/Binance.imageset/Binance.png
Binary file modified Tofu/Assets.xcassets/Binance.imageset/Binance@2x.png
Binary file modified Tofu/Assets.xcassets/Binance.imageset/Binance@3x.png
Binary file modified Tofu/Assets.xcassets/BitBay.imageset/BitBay.png
Binary file modified Tofu/Assets.xcassets/BitBay.imageset/BitBay@2x.png
Binary file modified Tofu/Assets.xcassets/BitBay.imageset/BitBay@3x.png
Binary file modified Tofu/Assets.xcassets/Bitbucket.imageset/Bitbucket.png
Binary file modified Tofu/Assets.xcassets/Bitbucket.imageset/Bitbucket@2x.png
Binary file modified Tofu/Assets.xcassets/Bitbucket.imageset/Bitbucket@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Bitbucket.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Bittrex.imageset/Bittrex.png
Binary file modified Tofu/Assets.xcassets/Bittrex.imageset/Bittrex@2x.png
Binary file modified Tofu/Assets.xcassets/Bittrex.imageset/Bittrex@3x.png
Binary file modified Tofu/Assets.xcassets/Bitwarden.imageset/Bitwarden.png
Binary file modified Tofu/Assets.xcassets/Bitwarden.imageset/Bitwarden@2x.png
Binary file modified Tofu/Assets.xcassets/Bitwarden.imageset/Bitwarden@3x.png
Binary file modified Tofu/Assets.xcassets/Cloudflare.imageset/Cloudflare.png
Binary file modified Tofu/Assets.xcassets/Cloudflare.imageset/Cloudflare@2x.png
Binary file modified Tofu/Assets.xcassets/Cloudflare.imageset/Cloudflare@3x.png
Binary file modified Tofu/Assets.xcassets/Coinbase.imageset/Coinbase.png
Binary file modified Tofu/Assets.xcassets/Coinbase.imageset/Coinbase@2x.png
Binary file modified Tofu/Assets.xcassets/Coinbase.imageset/Coinbase@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Coinbase.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/CorporateTrust.imageset/CorporateTrust.png
Binary file modified Tofu/Assets.xcassets/CyDIS.imageset/CyDIS.png
Binary file modified Tofu/Assets.xcassets/CyDIS.imageset/CyDIS@2x.png
Binary file modified Tofu/Assets.xcassets/CyDIS.imageset/CyDIS@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/DNSimple.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/DNSimple.imageset/DNSimple.png
Binary file modified Tofu/Assets.xcassets/DNSimple.imageset/DNSimple@2x.png
Binary file modified Tofu/Assets.xcassets/DNSimple.imageset/DNSimple@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/DigitalOcean.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/DigitalOcean.imageset/DigitalOcean.png
Binary file modified Tofu/Assets.xcassets/DigitalOcean.imageset/DigitalOcean@2x.png
Binary file modified Tofu/Assets.xcassets/DigitalOcean.imageset/DigitalOcean@3x.png
Binary file modified Tofu/Assets.xcassets/Discord.imageset/Discord.png
Binary file modified Tofu/Assets.xcassets/Discord.imageset/Discord@2x.png
Binary file modified Tofu/Assets.xcassets/Discord.imageset/Discord@3x.png
Binary file modified Tofu/Assets.xcassets/Docker.imageset/Docker.png
Binary file modified Tofu/Assets.xcassets/Docker.imageset/Docker@2x.png
Binary file modified Tofu/Assets.xcassets/Docker.imageset/Docker@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Dropbox.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Dropbox.imageset/Dropbox.png
Binary file modified Tofu/Assets.xcassets/Dropbox.imageset/Dropbox@2x.png
Binary file modified Tofu/Assets.xcassets/Dropbox.imageset/Dropbox@3x.png
Binary file modified Tofu/Assets.xcassets/ElectronicArts.imageset/ElectronicArts.png
Binary file modified Tofu/Assets.xcassets/ElectronicArts.imageset/ElectronicArts@2x.png
Binary file modified Tofu/Assets.xcassets/EpicGames.imageset/EpicGames.png
Binary file modified Tofu/Assets.xcassets/EpicGames.imageset/EpicGames@2x.png
Binary file modified Tofu/Assets.xcassets/EpicGames.imageset/EpicGames@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Evernote.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Evernote.imageset/Evernote.png
Binary file modified Tofu/Assets.xcassets/Evernote.imageset/Evernote@2x.png
Binary file modified Tofu/Assets.xcassets/Evernote.imageset/Evernote@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Facebook.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Facebook.imageset/Facebook.png
Binary file modified Tofu/Assets.xcassets/Facebook.imageset/Facebook@2x.png
Binary file modified Tofu/Assets.xcassets/Facebook.imageset/Facebook@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/FastMail.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/FastMail.imageset/FastMail.png
Binary file modified Tofu/Assets.xcassets/FastMail.imageset/FastMail@2x.png
Binary file modified Tofu/Assets.xcassets/FastMail.imageset/FastMail@3x.png
Binary file modified Tofu/Assets.xcassets/Firefox.imageset/Firefox.png
Binary file modified Tofu/Assets.xcassets/Firefox.imageset/Firefox@2x.png
Binary file modified Tofu/Assets.xcassets/Firefox.imageset/Firefox@3x.png
Binary file modified Tofu/Assets.xcassets/Gandi.imageset/Gandi.png
Binary file modified Tofu/Assets.xcassets/Gandi.imageset/Gandi@2x.png
Binary file modified Tofu/Assets.xcassets/Gandi.imageset/Gandi@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/GitHub.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/GitHub.imageset/GitHub.png
Binary file modified Tofu/Assets.xcassets/GitHub.imageset/GitHub@2x.png
Binary file modified Tofu/Assets.xcassets/GitHub.imageset/GitHub@3x.png
Binary file modified Tofu/Assets.xcassets/GitLab.imageset/GitLab.png
Binary file modified Tofu/Assets.xcassets/GitLab.imageset/GitLab@2x.png
Binary file modified Tofu/Assets.xcassets/GitLab.imageset/GitLab@3x.png
10 changes: 5 additions & 5 deletions Tofu/Assets.xcassets/Gitea.imageset/Contents.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"images" : [
{
"filename" : "Gitea.png",
"idiom" : "universal",
"filename" : "Gitea.png",
"scale" : "1x"
},
{
"filename" : "Gitea@2x.png",
"idiom" : "universal",
"filename" : "Gitea@2x.png",
"scale" : "2x"
},
{
"filename" : "Gitea@3x.png",
"idiom" : "universal",
"filename" : "Gitea@3x.png",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
"version" : 1,
"author" : "xcode"
}
}
Binary file modified Tofu/Assets.xcassets/Gitea.imageset/Gitea.png
Binary file modified Tofu/Assets.xcassets/Gitea.imageset/Gitea@2x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Google.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Google.imageset/Google.png
Binary file modified Tofu/Assets.xcassets/Google.imageset/Google@2x.png
Binary file modified Tofu/Assets.xcassets/Google.imageset/Google@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/GreenAddress.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/GreenAddress.imageset/GreenAddress.png
Binary file modified Tofu/Assets.xcassets/GreenAddress.imageset/GreenAddress@2x.png
Binary file modified Tofu/Assets.xcassets/HEY.imageset/HEY.png
Binary file modified Tofu/Assets.xcassets/HEY.imageset/HEY@2x.png
Binary file modified Tofu/Assets.xcassets/HEY.imageset/HEY@3x.png
Binary file modified Tofu/Assets.xcassets/HackTheBox.imageset/hackthebox.png
Binary file modified Tofu/Assets.xcassets/HackTheBox.imageset/hackthebox@2x.png
Binary file modified Tofu/Assets.xcassets/HackTheBox.imageset/hackthebox@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Heroku.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Heroku.imageset/Heroku.png
Binary file modified Tofu/Assets.xcassets/Heroku.imageset/Heroku@2x.png
Binary file modified Tofu/Assets.xcassets/Heroku.imageset/Heroku@3x.png
Binary file modified Tofu/Assets.xcassets/Hostek.imageset/Hostek.png
Binary file modified Tofu/Assets.xcassets/Hostek.imageset/Hostek@2x.png
Binary file modified Tofu/Assets.xcassets/Hostek.imageset/Hostek@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Hover.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Hover.imageset/Hover.png
Binary file modified Tofu/Assets.xcassets/Hover.imageset/Hover@2x.png
Binary file modified Tofu/Assets.xcassets/Hover.imageset/Hover@3x.png
Binary file modified Tofu/Assets.xcassets/HumbleBundle.imageset/HumbleBundle.png
Binary file modified Tofu/Assets.xcassets/HumbleBundle.imageset/HumbleBundle@2x.png
Binary file modified Tofu/Assets.xcassets/HumbleBundle.imageset/HumbleBundle@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/IFTTT.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/IFTTT.imageset/IFTTT.png
Binary file modified Tofu/Assets.xcassets/IFTTT.imageset/IFTTT@2x.png
Binary file modified Tofu/Assets.xcassets/IFTTT.imageset/IFTTT@3x.png
Binary file modified Tofu/Assets.xcassets/Instagram.imageset/Instagram.png
Binary file modified Tofu/Assets.xcassets/Instagram.imageset/Instagram@2x.png
Binary file modified Tofu/Assets.xcassets/Instagram.imageset/Instagram@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Intercom.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Intercom.imageset/Intercom.png
Binary file modified Tofu/Assets.xcassets/Intercom.imageset/Intercom@2x.png
Binary file modified Tofu/Assets.xcassets/Intercom.imageset/Intercom@3x.png
Binary file modified Tofu/Assets.xcassets/JetBrains.imageset/JetBrains.png
Binary file modified Tofu/Assets.xcassets/JetBrains.imageset/JetBrains@2x.png
Binary file modified Tofu/Assets.xcassets/JetBrains.imageset/JetBrains@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Kickstarter.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Kickstarter.imageset/Kickstarter.png
Binary file modified Tofu/Assets.xcassets/Kickstarter.imageset/Kickstarter@2x.png
Binary file modified Tofu/Assets.xcassets/Kickstarter.imageset/Kickstarter@3x.png
Binary file modified Tofu/Assets.xcassets/LastPass.imageset/LastPass.png
Binary file modified Tofu/Assets.xcassets/LastPass.imageset/LastPass@2.png
Binary file modified Tofu/Assets.xcassets/LastPass.imageset/LastPass@3.png
Binary file modified Tofu/Assets.xcassets/LinkedIn.imageset/LinkedIn.png
Binary file modified Tofu/Assets.xcassets/LinkedIn.imageset/LinkedIn@2x.png
Binary file modified Tofu/Assets.xcassets/LinkedIn.imageset/LinkedIn@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Linode.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Linode.imageset/Linode.png
Binary file modified Tofu/Assets.xcassets/Linode.imageset/Linode@2x.png
Binary file modified Tofu/Assets.xcassets/Linode.imageset/Linode@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/LocalBitcoins.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/LocalBitcoins.imageset/LocalBitcoins.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Microsoft.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Microsoft.imageset/Microsoft.png
Binary file modified Tofu/Assets.xcassets/Microsoft.imageset/Microsoft@2x.png
Binary file modified Tofu/Assets.xcassets/Microsoft.imageset/Microsoft@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Name.com.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Name.com.imageset/Name.com.png
Binary file modified Tofu/Assets.xcassets/Name.com.imageset/Name.com@2x.png
Binary file modified Tofu/Assets.xcassets/Name.com.imageset/Name.com@3x.png
Binary file modified Tofu/Assets.xcassets/Nextcloud.imageset/Nextcloud.png
Binary file modified Tofu/Assets.xcassets/Nextcloud.imageset/Nextcloud@2x.png
Binary file modified Tofu/Assets.xcassets/Nextcloud.imageset/Nextcloud@3x.png
Binary file modified Tofu/Assets.xcassets/NiceHash.imageset/NiceHash.png
Binary file modified Tofu/Assets.xcassets/NiceHash.imageset/NiceHash@2x.png
Binary file modified Tofu/Assets.xcassets/NiceHash.imageset/NiceHash@3x.png
Binary file modified Tofu/Assets.xcassets/NordPass.imageset/NordPass.png
Binary file modified Tofu/Assets.xcassets/NordPass.imageset/NordPass@2x.png
Binary file modified Tofu/Assets.xcassets/NordPass.imageset/NordPass@3x.png
Binary file modified Tofu/Assets.xcassets/Parler.imageset/Parler.png
Binary file modified Tofu/Assets.xcassets/Parler.imageset/Parler@2x.png
Binary file modified Tofu/Assets.xcassets/Parler.imageset/Parler@3x.png
Binary file modified Tofu/Assets.xcassets/PayPal.imageset/PayPal.png
Binary file modified Tofu/Assets.xcassets/PayPal.imageset/PayPal@2x.png
Binary file modified Tofu/Assets.xcassets/PayPal.imageset/PayPal@3x.png
Binary file modified Tofu/Assets.xcassets/Placeholder.imageset/Placeholder.png
Binary file modified Tofu/Assets.xcassets/Placeholder.imageset/Placeholder@2x.png
Binary file modified Tofu/Assets.xcassets/Placeholder.imageset/Placeholder@3x.png
Binary file modified Tofu/Assets.xcassets/Placeholder.imageset/PlaceholderDark.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Privacy.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Privacy.imageset/Privacy.png
Binary file modified Tofu/Assets.xcassets/Privacy.imageset/Privacy@2x.png
Binary file modified Tofu/Assets.xcassets/Privacy.imageset/Privacy@3x.png
Binary file modified Tofu/Assets.xcassets/ProtonMail.imageset/ProtonMail.png
Binary file modified Tofu/Assets.xcassets/ProtonMail.imageset/ProtonMail@2x.png
Binary file modified Tofu/Assets.xcassets/ProtonMail.imageset/ProtonMail@3x.png
Binary file modified Tofu/Assets.xcassets/Reddit.imageset/Reddit.png
Binary file modified Tofu/Assets.xcassets/Reddit.imageset/Reddit@2x.png
Binary file modified Tofu/Assets.xcassets/Reddit.imageset/Reddit@3x.png
Binary file modified Tofu/Assets.xcassets/Robinhood.imageset/Robinhood.png
Binary file modified Tofu/Assets.xcassets/Robinhood.imageset/Robinhood@2x.png
Binary file modified Tofu/Assets.xcassets/Robinhood.imageset/Robinhood@3x.png
Binary file modified Tofu/Assets.xcassets/STACK.imageset/STACK.png
Binary file modified Tofu/Assets.xcassets/STACK.imageset/STACK@2x.png
Binary file modified Tofu/Assets.xcassets/STACK.imageset/STACK@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Slack.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Slack.imageset/Slack.png
Binary file modified Tofu/Assets.xcassets/Slack.imageset/Slack@2x.png
Binary file modified Tofu/Assets.xcassets/Slack.imageset/Slack@3x.png
Binary file modified Tofu/Assets.xcassets/Snapchat.imageset/Snapchat.png
Binary file modified Tofu/Assets.xcassets/Snapchat.imageset/Snapchat@2x.png
Binary file modified Tofu/Assets.xcassets/Snapchat.imageset/Snapchat@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Stripe.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Stripe.imageset/Stripe.png
Binary file modified Tofu/Assets.xcassets/Stripe.imageset/Stripe@2x.png
Binary file modified Tofu/Assets.xcassets/Stripe.imageset/Stripe@3x.png
Binary file modified Tofu/Assets.xcassets/Surfshark.imageset/Surfshark.png
Binary file modified Tofu/Assets.xcassets/Surfshark.imageset/Surfshark@2x.png
Binary file modified Tofu/Assets.xcassets/Surfshark.imageset/Surfshark@3x.png
Binary file modified Tofu/Assets.xcassets/Time4VPS.imageset/Time4VPS.png
Binary file modified Tofu/Assets.xcassets/Time4VPS.imageset/Time4VPS@2x.png
Binary file modified Tofu/Assets.xcassets/Time4VPS.imageset/Time4VPS@3x.png
Binary file modified Tofu/Assets.xcassets/TorGuard.imageset/TorGuard.png
Binary file modified Tofu/Assets.xcassets/TorGuard.imageset/TorGuard@2x.png
Binary file modified Tofu/Assets.xcassets/TorGuard.imageset/TorGuard@3x.png
Binary file modified Tofu/Assets.xcassets/Tresorit.imageset/Tresorit.png
Binary file modified Tofu/Assets.xcassets/Tresorit.imageset/Tresorit@2x.png
Binary file modified Tofu/Assets.xcassets/Tresorit.imageset/Tresorit@3x.png
2 changes: 1 addition & 1 deletion Tofu/Assets.xcassets/Tumblr.imageset/Contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"version" : 1,
"author" : "xcode"
}
}
}
Binary file modified Tofu/Assets.xcassets/Tumblr.imageset/Tumblr.png
Binary file modified Tofu/Assets.xcassets/Tumblr.imageset/Tumblr@2x.png
Binary file modified Tofu/Assets.xcassets/Tumblr.imageset/Tumblr@3x.png
Binary file modified Tofu/Assets.xcassets/TurboTax.imageset/TurboTax.png
Binary file modified Tofu/Assets.xcassets/TurboTax.imageset/TurboTax@2x.png
Binary file modified Tofu/Assets.xcassets/TurboTax.imageset/TurboTax@3x.png
Binary file modified Tofu/Assets.xcassets/Tutanota.imageset/Tutanota.png
Binary file modified Tofu/Assets.xcassets/Tutanota.imageset/Tutanota@2x.png
Binary file modified Tofu/Assets.xcassets/Tutanota.imageset/Tutanota@3x.png
Binary file modified Tofu/Assets.xcassets/Twitter.imageset/Twitter.png
Binary file modified Tofu/Assets.xcassets/Twitter.imageset/Twitter@2x.png
Binary file modified Tofu/Assets.xcassets/Twitter.imageset/Twitter@3x.png
Binary file modified Tofu/Assets.xcassets/Ubisoft.imageset/Ubisoft.png