wakmusic / wakmusic-iOS

WAKTAVERSE Music iOS App
https://wakmusic.xyz/
108 stars 8 forks source link

๐Ÿ”€ :: (#1320) ๊ธฐ๊ฐ„์— ๋งž๋Š” ์•ฑ ์•„์ด์ฝ˜ ์ž๋™ ๋ณ€๊ฒฝ #1321

Closed yongbeomkwak closed 1 month ago

yongbeomkwak commented 1 month ago

๐Ÿ’ก ๋ฐฐ๊ฒฝ ๋ฐ ๊ฐœ์š”

์‹ฌ์‚ฌ ํ•„์š”์—†์ด ์„œ๋ฒ„์—์„œ ๋ณด๋‚ด์ฃผ๋Š” ํ”Œ๋ž˜๊ทธ์— ๋”ฐ๋ฅธ ์•Œ๋งž์€ ์•ฑ ์•„์ด์ฝ˜์œผ๋กœ ๋ณ€๊ฒฝ์ด ํ•„์š”ํ•ฉ๋‹ˆ๋‹ค.

Resolves: #1320

๐Ÿ“ƒ ์ž‘์—…๋‚ด์šฉ

แ„‰แ…ณแ„แ…ณแ„…แ…ตแ†ซแ„‰แ…ฃแ†บ 2024-10-26 แ„‹แ…ฉแ„’แ…ฎ 4 29 16 แ„‰แ…ณแ„แ…ณแ„…แ…ตแ†ซแ„‰แ…ฃแ†บ 2024-10-26 แ„‹แ…ฉแ„’แ…ฎ 4 28 38
enum SplashLogoType: String {
    case usual = "Splash_Logo_Main"
    case halloween = "Splash_Logo_Halloween"
    case xmas = "Splash_Logo_Xmas"

    var icon: String? {
        switch self {
        case .usual:
            return nil
        case .halloween:
            return "HalloweenAppIcon"
        case .xmas:
            return "XmasAppIcon"
        }
    }
}

func changeAppIcon(_ type: SplashLogoType) {
    guard UIApplication.shared.alternateIconName != type.icon else {
        return
    }

    UIApplication.shared.setAlternateIconName(type.icon)
}

๐Ÿ™‹โ€โ™‚๏ธ ๋ฆฌ๋ทฐ๋…ธํŠธ

โœ… PR ์ฒดํฌ๋ฆฌ์ŠคํŠธ

๐ŸŽธ ๊ธฐํƒ€

github-actions[bot] commented 1 month ago

โœ… Successful finished SwiftLint

github-actions[bot] commented 1 month ago

โœ… Assign ์ž๋™ ์ง€์ •์„ ์„ฑ๊ณตํ–ˆ์–ด์š”!

@yongbeomkwak