明白な理由もなく、Textualに「パーティー」テーマアイコンがあるのはなぜですか?


4

IRCクライアントであるTextualのアイコンが通常とは異なることに気づきました。どうして?

これを説明できる通知はアプリにありません。私の誕生日でも、私が知っている人でもありません。

スクリーンショット

回答:


6

今日、7月23日はTextualの誕生日で、その日のアイコンが変わります。ソースコードから:

Textualの最初のパブリックコミットは、2010年7月23日に発生しました。これは、アプリケーションの誕生日を考慮する日です。

別のアイコンの条件を示すソースコードの抜粋:

/* THIS IS A SECRET!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

 Birthday icon designed by Alex Sørlie Glomsaas. */

NSCalendar *sysCalendar = [NSCalendar currentCalendar];

NSDateComponents *breakdownInfo = [sysCalendar components:(NSDayCalendarUnit | NSMonthCalendarUnit) fromDate:[NSDate date]];

/* The first public commit of Textual occured on July, 23, 2010. This is the day
 that we consider the birthday of the application. */
if ([breakdownInfo month] == 7 && [breakdownInfo day] == 23) {
    return [NSImage imageNamed:@"birthdayIcon"];
} else {
    return [NSImage imageNamed:@"NSApplicationIcon"];
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.