fix social-app web icon
This commit is contained in:
16
README.md
16
README.md
@@ -85,20 +85,4 @@ $ curl -sL "syu.is/xrpc/com.atproto.repo.listRecords?repo=${handle}&collection=a
|
|||||||
./ios/build.zsh
|
./ios/build.zsh
|
||||||
```
|
```
|
||||||
|
|
||||||
## social-app
|
|
||||||
|
|
||||||
- https://github.com/bluesky-social/social-app/blob/main/LICENSE
|
|
||||||
|
|
||||||
```js
|
|
||||||
PrivacyPolicy: 'https://syu.is/about/support/privacy-policy',
|
|
||||||
TermsOfService: 'https://syu.is/about/support/tos',
|
|
||||||
License: 'https://syu.is/about/support/license',
|
|
||||||
```
|
|
||||||
|
|
||||||
```js
|
|
||||||
CommunityGuidelines: '/support/community-guidelines',
|
|
||||||
CopyrightPolicy: '/support/copyright',
|
|
||||||
```
|
|
||||||
|
|
||||||
- https://bsky.social/about/support/community-guidelines
|
|
||||||
- https://bsky.social/about/support/copyright
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ $ ./build.sh
|
|||||||
**必要な準備:**
|
**必要な準備:**
|
||||||
- Apple Distribution証明書: `Apple Distribution: syutaro inagaki (WN6KD5ZT49)`
|
- Apple Distribution証明書: `Apple Distribution: syutaro inagaki (WN6KD5ZT49)`
|
||||||
- App Store用Provisioning Profile: `store.mobileprovision`
|
- App Store用Provisioning Profile: `store.mobileprovision`
|
||||||
- App-Specific Password: キーチェーンに `AC_PASSWORD` として登録
|
- App-Specific Password: キーチェーンに`APP_KEYCHAIN_PASSWORD`として登録
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
# App-Specific Passwordの登録
|
# App-Specific Passwordの登録
|
||||||
|
|||||||
BIN
ios/assets/favicons/apple-touch-icon.png
Normal file
BIN
ios/assets/favicons/apple-touch-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.9 KiB |
BIN
ios/assets/favicons/favicon-16x16.png
Normal file
BIN
ios/assets/favicons/favicon-16x16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 574 B |
BIN
ios/assets/favicons/favicon-32x32.png
Normal file
BIN
ios/assets/favicons/favicon-32x32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1005 B |
BIN
ios/assets/favicons/favicon.png
Normal file
BIN
ios/assets/favicons/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1005 B |
@@ -115,7 +115,7 @@ index 000000000..000000002
|
|||||||
+ </div>
|
+ </div>
|
||||||
+
|
+
|
||||||
+ <div class="app-header">
|
+ <div class="app-header">
|
||||||
+ <img src="{{ staticCDNHost }}/static/favicon.png" alt="Aiat" class="app-icon">
|
+ <img src="{{ staticCDNHost }}/static/app.png" alt="Aiat" class="app-icon">
|
||||||
+ <div class="app-name">Aiat</div>
|
+ <div class="app-name">Aiat</div>
|
||||||
+ <div class="app-version">v1.111.0</div>
|
+ <div class="app-version">v1.111.0</div>
|
||||||
+ </div>
|
+ </div>
|
||||||
|
|||||||
@@ -179,6 +179,18 @@ function ios-copy-new-files() {
|
|||||||
echo "✅ Copied License.tsx"
|
echo "✅ Copied License.tsx"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Copy pre-generated favicons for bskyweb
|
||||||
|
local favicon_src="$d/ios/assets/favicons"
|
||||||
|
local bskyweb_static="$target_dir/bskyweb/static"
|
||||||
|
if [ -d "$favicon_src" ] && [ -d "$bskyweb_static" ]; then
|
||||||
|
cp -f "$d/ios/assets/logo.png" "$bskyweb_static/app.png"
|
||||||
|
cp -f "$favicon_src/favicon.png" "$bskyweb_static/favicon.png"
|
||||||
|
cp -f "$favicon_src/favicon-16x16.png" "$bskyweb_static/favicon-16x16.png"
|
||||||
|
cp -f "$favicon_src/favicon-32x32.png" "$bskyweb_static/favicon-32x32.png"
|
||||||
|
cp -f "$favicon_src/apple-touch-icon.png" "$bskyweb_static/apple-touch-icon.png"
|
||||||
|
echo "✅ Copied favicons to bskyweb/static"
|
||||||
|
fi
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user