commit 5aacafcae2d58bed72370a73f8928a9ce0ff283e parent 7e227f2fa595721422bae86520bab5d1e6daf59d Author: triesap <tyson@radroots.org> Date: Thu, 11 Jun 2026 17:29:42 -0700 assets: add generated app iconset - add generated default, dark, and tinted AppIcon PNG assets - switch AppIcon.appiconset to the current universal iOS catalog shape - keep the asset catalog as tracked app resources only - leave generation ownership outside this repository Diffstat:
4 files changed, 35 insertions(+), 4 deletions(-)
diff --git a/Radroots/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon.png b/Radroots/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon.png Binary files differ. diff --git a/Radroots/Resources/Assets.xcassets/AppIcon.appiconset/AppIconDark.png b/Radroots/Resources/Assets.xcassets/AppIcon.appiconset/AppIconDark.png Binary files differ. diff --git a/Radroots/Resources/Assets.xcassets/AppIcon.appiconset/AppIconTinted.png b/Radroots/Resources/Assets.xcassets/AppIcon.appiconset/AppIconTinted.png Binary files differ. diff --git a/Radroots/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json b/Radroots/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -1,7 +1,38 @@ { - "images" : [], - "info" : { - "version" : 1, - "author" : "xcode" + "images": [ + { + "filename": "AppIcon.png", + "idiom": "universal", + "platform": "ios", + "size": "1024x1024" + }, + { + "appearances": [ + { + "appearance": "luminosity", + "value": "dark" + } + ], + "filename": "AppIconDark.png", + "idiom": "universal", + "platform": "ios", + "size": "1024x1024" + }, + { + "appearances": [ + { + "appearance": "luminosity", + "value": "tinted" + } + ], + "filename": "AppIconTinted.png", + "idiom": "universal", + "platform": "ios", + "size": "1024x1024" + } + ], + "info": { + "author": "xcode", + "version": 1 } }