summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2020-03-31 13:38:11 +0200
committerLinus Färnstrand <linus@mullvad.net>2020-03-31 13:38:11 +0200
commit7475bfee2774939f2d25cf3ae9eb71875839ee0a (patch)
tree8a9beedc51267bc9fc9dc80167f6f6815f739cfc
parent2d26eee7ff7c289d238abc12e71df8b2de7846bb (diff)
downloadmullvadvpn-7475bfee2774939f2d25cf3ae9eb71875839ee0a.tar.xz
mullvadvpn-7475bfee2774939f2d25cf3ae9eb71875839ee0a.zip
Move iOS app icon source svg to graphics/
-rw-r--r--README.md2
-rw-r--r--graphics/icon-ios.svg (renamed from dist-assets/ios-icon.svg)0
-rwxr-xr-xios/convert-assets.rb2
3 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 6cd340c687..b1377ed21c 100644
--- a/README.md
+++ b/README.md
@@ -571,7 +571,7 @@ Icons such as the logo and menubar icons are automatically generated. The source
|------|-------|
| `dist-assets/icon.svg` | The logo icon used for e.g. application icon and in app logo |
| `dist-assets/icon-mono.svg` | The logo icon used for the android notification icon |
-| `dist-assets/ios-icon.svg` | Logo icon used to generate the iOS application icon |
+| `graphics/icon-ios.svg` | Logo icon used to generate the iOS application icon |
| `gui/assets/images/*.svg` | Icons used to generate iOS icons and used in the desktop app |
| `gui/assets/images/menubar icons/svg/*.svg` | The frames for the menubar icon |
diff --git a/dist-assets/ios-icon.svg b/graphics/icon-ios.svg
index b07b29bdb1..b07b29bdb1 100644
--- a/dist-assets/ios-icon.svg
+++ b/graphics/icon-ios.svg
diff --git a/ios/convert-assets.rb b/ios/convert-assets.rb
index 5c4d73ff32..266e52d777 100755
--- a/ios/convert-assets.rb
+++ b/ios/convert-assets.rb
@@ -10,7 +10,7 @@ XCASSETS_DIR = File.join(SCRIPT_DIR, "MullvadVPN/Assets.xcassets")
XCASSETS_APPICON_DIR = File.join(XCASSETS_DIR, "AppIcon.appiconset")
# graphical assets sources
-APPICON_PATH = File.join(ROOT_DIR, "dist-assets/ios-icon.svg")
+APPICON_PATH = File.join(ROOT_DIR, "graphics/icon-ios.svg")
GRAPHICAL_ASSETS_DIR = File.join(ROOT_DIR, "gui/assets/images")
ADDITIONAL_ASSETS_DIR = File.join(SCRIPT_DIR, "AdditionalAssets")