From: Eric W. <war...@us...> - 2001-09-29 23:06:32
|
Update of /cvsroot/gaim/gaim/pixmaps In directory usw-pr-cvs1:/tmp/cvs-serv5211/pixmaps Modified Files: Makefile.am Added Files: gg_suncloud.xpm gg_sunred.xpm gg_sunwhitered.xpm gg_sunyellow.xpm Log Message: Arkadiusz Miskiewicz\'s Gadu-Gadu plugin. I was able to figure out enough polish to be able to download Gadu-Gadu, create an account, and test the plugin. Imagine my shock when I got my info and it said I was a woman. Whoops. Also splitting plugins.c so that non-gtk stuff is in modules.c. gaim-core is almost ready for protocol implantaion. Also fixing an IRC bug. Also patiently waiting for anoncvs_gaim's lock in /cvsroot/gaim/gaim/pixmaps --- NEW FILE: gg_suncloud.xpm --- /* XPM */ static char * gg_suncloud_xpm[] = { "18 18 7 1", " c None", ". c #FF0000", "+ c #7F7F7F", "@ c #FFFF00", "# c #000000", "$ c #00007F", "% c #00FFFF", " ", " . ", " .+ ", " . .+ . ", " . ..@.. .+ ", " .@@@@@.+ ", " .@@#@#@@.+ ", " .@@@@@@@.+ ", " ...@$@@@@@@@... ", " $$%$@@@#@$$$++ ", " $%%%%$##@$%%%$ ", " $%%%%%%$$$%%%%$ ", " $%%%%%%%%%%%%%%$ ", " $%%%%%%%%%%%%%$ ", " $%%%%%%%%%%%%$ ", " $%%%$$$%%%$$$ ", " $$$ $$$ ", " "}; --- NEW FILE: gg_sunred.xpm --- /* XPM */ static char * gg_sunred_xpm[] = { "19 18 4 1", " c None", ". c #FF0000", "+ c #7F7F7F", "@ c #000000", " ", " . ", " .+ ", " . .+ . ", " . ..... .+ ", " .......+ ", " ...@.@...+ ", " .........+ ", " ............... ", " ..@...@..++++ ", " ...@@@...+ ", " .......+ ", " .+..... .+ ", " .+ .++ .+ ", " + .+ ", " .+ ", " + ", " "}; --- NEW FILE: gg_sunwhitered.xpm --- /* XPM */ static char * gg_sunwhitered_xpm[] = { "19 18 6 1", " c None", ". c #7F0000", "+ c #FF0000", "@ c #7F7F7F", "# c #FFFFFF", "$ c #000000", " ", " . ", " +@ ", " + .@ + ", " . .+#+. .@ ", " +#####+@ ", " .##$#$##.@ ", " +#######+@ ", " .+.#########.+. ", " +#$###$#+@@@@ ", " .##$$$##.@ ", " +#####+@ ", " .@.+#+. .@ ", " +@ .@@ +@ ", " @ +@ ", " .@ ", " @ ", " "}; --- NEW FILE: gg_sunyellow.xpm --- /* XPM */ static char * gg_sunyellow_xpm[] = { "18 18 5 1", " c None", ". c #FF0000", "+ c #7F7F7F", "@ c #FFFF00", "# c #000000", " ", " . ", " .+ ", " . .+ . ", " . ..@.. .+ ", " .@@@@@.+ ", " .@@#@#@@.+ ", " .@@@@@@@.+ ", " ...@@@@@@@@@... ", " .@#@@@#@.++++ ", " .@@###@@.+ ", " .@@@@@.+ ", " .+..@.. .+ ", " .+ .++ .+ ", " + .+ ", " .+ ", " + ", " "}; Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/pixmaps/Makefile.am,v retrieving revision 1.55 retrieving revision 1.56 diff -u -d -r1.55 -r1.56 --- Makefile.am 2001/09/20 03:16:43 1.55 +++ Makefile.am 2001/09/29 23:06:30 1.56 @@ -34,6 +34,10 @@ fontface2.xpm \ free_icon.xpm \ gaim.xpm \ + gg_suncloud.xpm \ + gg_sunred.xpm \ + gg_sunwhitered.xpm \ + gg_sunyellow.xpm \ gnome_add.xpm \ gnome_preferences.xpm \ gnome_remove.xpm \ |