From e302f773d94ea2f2e4a0ce237be454272f4a982b Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Sun, 18 Jun 2023 19:06:08 +0200 Subject: [PATCH] emoji: download gmail images Download original urls at Wayback Machine before their deletion: GMAILROOT=http://mail.google.com/mail/help/images/screenshots/chat GMAILROOT=https://web.archive.org/web/20120211075127/$GMAILROOT perl -E'ref $_ eq "ARRAY" and say $_->[0] for do "emoji-gmail.inc.pl"' | while read i; do wget $GMAILROOT/$i.gif -O data/emoji/gmail/$i.gif done Unofficial entries were never indexed, but still available at documented posts: http://tkhere.blogspot.com/2007/12/brand-new-google-chat-emoticons-no-one.html https://www.gtricks.com/google-talk-tricks/google-talk-hidden-emoticons/ Two degraded jpeg screenshots redrawn using later versions at Emojipedia. --- emoji-gmail.inc.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emoji-gmail.inc.pl b/emoji-gmail.inc.pl index 937c9b3..2cb6531 100644 --- a/emoji-gmail.inc.pl +++ b/emoji-gmail.inc.pl @@ -1,7 +1,7 @@ { name => 'Gmail', - icon => 'http://mail.google.com/mail/help/images/screenshots/chat/%s.gif', - iconext => 'http://usefulshortcuts.com/imgs/gtalk-hidden/%s.gif', + icon => '/data/emoji/gmail/%s.gif', + iconext => '/data/emoji/gmail/%s.png', source => 'http://mail.google.com/support/bin/answer.py?answer=34056', }, -- 2.30.0