tangled mirror of catsky-🐱 Soothing soft social-app fork with all the niche toggles! (Unofficial); for issues and PRs please put them on github:NekoDrone/catsky-social

update app icon (#9219)

authored by samuel.fm and committed by GitHub d49d43f6 a482dae9

Changed files
+10 -6
assets
src
screens
Settings
AppIconSettings
+4 -4
app.config.js
··· 40 runtimeVersion: { 41 policy: 'appVersion', 42 }, 43 - icon: './assets/app-icons/ios_icon_default_light.png', 44 userInterfaceStyle: 'automatic', 45 primaryColor: '#1083fe', 46 newArchEnabled: false, ··· 143 barStyle: 'light-content', 144 }, 145 android: { 146 - icon: './assets/app-icons/android_icon_default_light.png', 147 adaptiveIcon: { 148 foregroundImage: './assets/icon-android-foreground.png', 149 monochromeImage: './assets/icon-android-foreground.png', ··· 305 prerendered: true, 306 }, 307 next: { 308 - ios: './assets/app-icons/icon_default_next.png', 309 - android: './assets/app-icons/icon_default_next.png', 310 prerendered: true, 311 }, 312
··· 40 runtimeVersion: { 41 policy: 'appVersion', 42 }, 43 + icon: './assets/app-icons/ios_icon_default_next.png', 44 userInterfaceStyle: 'automatic', 45 primaryColor: '#1083fe', 46 newArchEnabled: false, ··· 143 barStyle: 'light-content', 144 }, 145 android: { 146 + icon: './assets/app-icons/android_icon_default_next.png', 147 adaptiveIcon: { 148 foregroundImage: './assets/icon-android-foreground.png', 149 monochromeImage: './assets/icon-android-foreground.png', ··· 305 prerendered: true, 306 }, 307 next: { 308 + ios: './assets/app-icons/ios_icon_default_next.png', 309 + android: './assets/app-icons/android_icon_default_next.png', 310 prerendered: true, 311 }, 312
assets/app-icons/android_icon_default_next.png

This is a binary file and will not be displayed.

assets/app-icons/icon_default_next.png

This is a binary file and will not be displayed.

assets/app-icons/ios_icon_default_next.png

This is a binary file and will not be displayed.

+6 -2
src/screens/Settings/AppIconSettings/useAppIconSets.ts
··· 41 id: 'next', 42 name: _(msg({context: 'Name of app icon variant', message: 'Next'})), 43 iosImage: () => { 44 - return require(`../../../../assets/app-icons/icon_default_next.png`) 45 }, 46 androidImage: () => { 47 - return require(`../../../../assets/app-icons/icon_default_next.png`) 48 }, 49 }, 50 ] satisfies AppIconSet[]
··· 41 id: 'next', 42 name: _(msg({context: 'Name of app icon variant', message: 'Next'})), 43 iosImage: () => { 44 + return require( 45 + `../../../../assets/app-icons/ios_icon_default_next.png`, 46 + ) 47 }, 48 androidImage: () => { 49 + return require( 50 + `../../../../assets/app-icons/android_icon_default_next.png`, 51 + ) 52 }, 53 }, 54 ] satisfies AppIconSet[]