Moved images into directory structure
As requested in #122 moved all the image files into a correct directory structure. This does seem a bit logical indeed. And it makes it more clear where which replaced image goes. It also makes the `cp` command less error prone. Fixes #122
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 734 B After Width: | Height: | Size: 734 B |
Before Width: | Height: | Size: 734 B After Width: | Height: | Size: 734 B |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 372 B After Width: | Height: | Size: 372 B |
Before Width: | Height: | Size: 886 B After Width: | Height: | Size: 886 B |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
@ -15,18 +15,7 @@ if [[ -z ${PATCH_NAME} ]]; then
|
||||
fi
|
||||
|
||||
echo "Patching images"
|
||||
cp -vf ../resources/logo-dark@2x.png ./apps/web/src/images/logo-dark@2x.png
|
||||
cp -vf ../resources/logo-white@2x.png ./apps/web/src/images/logo-white@2x.png
|
||||
cp -vf ../resources/icon-white.png ./apps/web/src/images/icon-white.png
|
||||
|
||||
cp -vf ../resources/android-chrome-192x192.png ./apps/web/src/images/icons/android-chrome-192x192.png
|
||||
cp -vf ../resources/android-chrome-512x512.png ./apps/web/src/images/icons/android-chrome-512x512.png
|
||||
cp -vf ../resources/apple-touch-icon.png ./apps/web/src/images/icons/apple-touch-icon.png
|
||||
cp -vf ../resources/favicon-16x16.png ./apps/web/src/images/icons/favicon-16x16.png
|
||||
cp -vf ../resources/favicon-32x32.png ./apps/web/src/images/icons/favicon-32x32.png
|
||||
cp -vf ../resources/mstile-150x150.png ./apps/web/src/images/icons/mstile-150x150.png
|
||||
cp -vf ../resources/safari-pinned-tab.svg ./apps/web/src/images/icons/safari-pinned-tab.svg
|
||||
cp -vf ../resources/favicon.ico ./apps/web/src/favicon.ico
|
||||
cp -vfR ../resources/src/* ./apps/web/src/
|
||||
|
||||
echo "Using patch: ${PATCH_NAME}"
|
||||
git apply "../patches/${PATCH_NAME}" --reject
|
||||
|