Por que o Textual tem um ícone de tema de “festa” sem nenhuma razão óbvia?

4

Acabei de notar que o meu cliente de IRC, Textual , tem um ícone diferente do habitual. Por quê?

Não há notificações no aplicativo que possam explicar isso. Não é meu aniversário ou qualquer um que eu conheça também.

    
por Daniel Beck 23.07.2014 / 01:29

1 resposta

6

Hoje, dia 23 de julho, é o aniversário do Textual, e ele muda seu ícone para o dia. Do código-fonte :

The first public commit of Textual occured on July, 23, 2010. This is the day that we consider the birthday of the application.

Trecho do código-fonte mostrando a condição do ícone diferente:

/* 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"];
}
    
por 23.07.2014 / 01:29

Tags