Revision 2f1651281b005e491a46cfe1f4375dfca49b0376
datallah at pidgin.im
datallah at pidgin.im
Wed Apr 4 17:57:24 EDT 2007
o -----------------------------------------------------------------
|\ Revision: 2f1651281b005e491a46cfe1f4375dfca49b0376
| | Ancestor: 4b0f41a73b406685da6c053dbdd7dc909b4e4183
| | Ancestor: 5e1e1599fddeeecfcd8b76796b71073f780cadfd
| | Author: datallah at pidgin.im
| | Date: 2007-04-04T21:57:05
| | Branch: im.pidgin.pidgin
| |
| | Deleted entries:
| | pidgin/pixmaps/window-icon.png
| | Added files:
| | pidgin/pixmaps/icons/16/Makefile.am
| | pidgin/pixmaps/icons/16/Makefile.mingw
| | pidgin/pixmaps/icons/16/pidgin.png
| | pidgin/pixmaps/icons/16/scalable/Makefile.am
| | pidgin/pixmaps/icons/16/scalable/pidgin.svg
| | pidgin/pixmaps/icons/24/Makefile.am
| | pidgin/pixmaps/icons/24/Makefile.mingw
| | pidgin/pixmaps/icons/24/pidgin.png
| | pidgin/pixmaps/icons/24/scalable/Makefile.am
| | pidgin/pixmaps/icons/24/scalable/pidgin.svg
| | pidgin/pixmaps/icons/32/Makefile.am
| | pidgin/pixmaps/icons/32/Makefile.mingw
| | pidgin/pixmaps/icons/32/pidgin.png
| | pidgin/pixmaps/icons/32/scalable/Makefile.am
| | pidgin/pixmaps/icons/32/scalable/pidgin.svg
| | pidgin/pixmaps/icons/48/Makefile.am
| | pidgin/pixmaps/icons/48/Makefile.mingw
| | pidgin/pixmaps/icons/48/pidgin.png
| | pidgin/pixmaps/icons/48/scalable/Makefile.am
| | pidgin/pixmaps/icons/48/scalable/pidgin.svg
| | pidgin/pixmaps/icons/Makefile.am
| | pidgin/pixmaps/icons/Makefile.mingw
| | Added directories:
| | pidgin/pixmaps/icons pidgin/pixmaps/icons/16
| | pidgin/pixmaps/icons/16/scalable pidgin/pixmaps/icons/24
| | pidgin/pixmaps/icons/24/scalable pidgin/pixmaps/icons/32
| | pidgin/pixmaps/icons/32/scalable pidgin/pixmaps/icons/48
| | pidgin/pixmaps/icons/48/scalable
| | Modified files:
| | configure.ac finch/libgnt/gntfilesel.c pidgin/gtkmain.c
| | pidgin/pixmaps/Makefile.am
| | Modified attrs:
| | pidgin/pixmaps/icons/16/pidgin.png
| | pidgin/pixmaps/icons/24/pidgin.png
| | pidgin/pixmaps/icons/32/pidgin.png
| | pidgin/pixmaps/icons/48/pidgin.png
| |
| | ChangeLog:
| |
| | merge of '4b0f41a73b406685da6c053dbdd7dc909b4e4183'
| | and '5e1e1599fddeeecfcd8b76796b71073f780cadfd'
| |
| | ============================================================
| | --- finch/libgnt/gntfilesel.c 2e03db8d836c1587e2d25cbd0f1693ae97dbd0d5
| | +++ finch/libgnt/gntfilesel.c 039ddea95c586f5e771ae93eea1f14ea3b451983
| | @@ -37,6 +37,106 @@ gnt_file_sel_destroy(GntWidget *widget)
| | }
| | }
| |
| | +#if !GLIB_CHECK_VERSION(2,8,0)
| | +/* ripped from glib/gfileutils.c */
| | +static gchar *
| | +g_build_path_va (const gchar *separator,
| | + gchar **str_array)
| | +{
| | + GString *result;
| | + gint separator_len = strlen (separator);
| | + gboolean is_first = TRUE;
| | + gboolean have_leading = FALSE;
| | + const gchar *single_element = NULL;
| | + const gchar *next_element;
| | + const gchar *last_trailing = NULL;
| | + gint i = 0;
| | +
| | + result = g_string_new (NULL);
| | +
| | + next_element = str_array[i++];
| | +
| | + while (TRUE) {
| | + const gchar *element;
| | + const gchar *start;
| | + const gchar *end;
| | +
| | + if (next_element) {
| | + element = next_element;
| | + next_element = str_array[i++];
| | + } else
| | + break;
| | +
| | + /* Ignore empty elements */
| | + if (!*element)
| | + continue;
| | +
| | + start = element;
| | +
| | + if (separator_len) {
| | + while (start &&
| | + strncmp (start, separator, separator_len) == 0)
| | + start += separator_len;
| | + }
| | +
| | + end = start + strlen (start);
| | +
| | + if (separator_len) {
| | + while (end >= start + separator_len &&
| | + strncmp (end - separator_len, separator, separator_len) == 0)
| | + end -= separator_len;
| | +
| | + last_trailing = end;
| | + while (last_trailing >= element + separator_len &&
| | + strncmp (last_trailing - separator_len, separator, separator_len) == 0)
| | + last_trailing -= separator_len;
| | +
| | + if (!have_leading) {
| | + /* If the leading and trailing separator strings are in the
| | + * same element and overlap, the result is exactly that element
| | + */
| | + if (last_trailing <= start)
| | + single_element = element;
| | +
| | + g_string_append_len (result, element, start - element);
| | + have_leading = TRUE;
| | + } else
| | + single_element = NULL;
| | + }
| | +
| | + if (end == start)
| | + continue;
| | +
| | + if (!is_first)
| | + g_string_append (result, separator);
| | +
| | + g_string_append_len (result, start, end - start);
| | + is_first = FALSE;
| | + }
| | +
| | + if (single_element) {
| | + g_string_free (result, TRUE);
| | + return g_strdup (single_element);
| | + } else {
| | + if (last_trailing)
| | + g_string_append (result, last_trailing);
| | +
| | + return g_string_free (result, FALSE);
| | + }
| | +}
| | +
| | +static gchar *
| | +g_build_pathv (const gchar *separator,
| | + gchar **args)
| | +{
| | + if (!args)
| | + return NULL;
| | +
| | + return g_build_path_va (separator, args);
| | +}
| | +
| | +#endif
| | +
| | static char *
| | process_path(const char *path)
| | {
| | @@ -259,6 +359,11 @@ location_key_pressed(GntTree *tree, cons
| | path = g_strdup_printf("%s" G_DIR_SEPARATOR_S "%s", sel->current, str);
| | str = process_path(path);
| | g_free(path);
| | + path = str;
| | +
| | + if (gnt_file_sel_set_current_location(sel, path))
| | + goto success;
| | +
| | path = g_path_get_dirname(str);
| | g_free(str);
| |
| | @@ -298,8 +403,8 @@ location_key_pressed(GntTree *tree, cons
| | gnt_widget_draw(sel->files);
| | }
| | globfree(&gl);
| | +#endif
| | success:
| | -#endif
| | g_free(path);
| | return TRUE;
| | }
| | ============================================================
| | --- pidgin/pixmaps/icons/16/Makefile.am e8b4ba8ed9d92f7476e3e1c5d71be3e8cc60661f
| | +++ pidgin/pixmaps/icons/16/Makefile.am e8b4ba8ed9d92f7476e3e1c5d71be3e8cc60661f
| | @@ -0,0 +1,8 @@
| | +SUBDIRS = scalable
| | +
| | +EXTRA_DIST = pidgin.png
| | +
| | +pidginiconspixdir = $(datadir)/pixmaps/pidgin/icons/16
| | +
| | +pidginiconspix_DATA = $(EXTRA_DIST)
| | +
| | ============================================================
| | --- pidgin/pixmaps/icons/16/Makefile.mingw cab603edd1bbe2c735aa0362c0dbdcdca4efa764
| | +++ pidgin/pixmaps/icons/16/Makefile.mingw cab603edd1bbe2c735aa0362c0dbdcdca4efa764
| | @@ -0,0 +1,14 @@
| | +#
| | +# Makefile.mingw
| | +#
| | +# Description: Makefile for win32 (mingw) version of Gaim pixmaps
| | +#
| | +
| | +include ./Makefile.am
| | +
| | +install:
| | + if test '$(SUBDIRS)'; then \
| | + list='$(SUBDIRS)'; for subdir in $$list; do \
| | + $(MAKE) -C $$subdir -f Makefile.mingw install || exit 1; \
| | + done; \
| | + fi;
| | ============================================================
| | # pidgin/pixmaps/icons/16/pidgin.png is binary
| | ============================================================
| | --- pidgin/pixmaps/icons/16/scalable/Makefile.am d15ad124452d202c65ec0e6cc9ac8e203ee31e1d
| | +++ pidgin/pixmaps/icons/16/scalable/Makefile.am d15ad124452d202c65ec0e6cc9ac8e203ee31e1d
| | @@ -0,0 +1 @@
| | +EXTRA_DIST = pidgin.svg
| | ============================================================
| | --- pidgin/pixmaps/icons/16/scalable/pidgin.svg 3ee6ffc57b9a739bb16c76ce3f46a4dab216716b
| | +++ pidgin/pixmaps/icons/16/scalable/pidgin.svg 3ee6ffc57b9a739bb16c76ce3f46a4dab216716b
| | @@ -0,0 +1,265 @@
| | +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
| | +<!-- Created with Inkscape (http://www.inkscape.org/) -->
| | +<svg
| | + xmlns:dc="http://purl.org/dc/elements/1.1/"
| | + xmlns:cc="http://web.resource.org/cc/"
| | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
| | + xmlns:svg="http://www.w3.org/2000/svg"
| | + xmlns="http://www.w3.org/2000/svg"
| | + xmlns:xlink="http://www.w3.org/1999/xlink"
| | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
| | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
| | + width="16"
| | + height="16"
| | + id="svg4345"
| | + sodipodi:version="0.32"
| | + inkscape:version="0.44.1"
| | + sodipodi:docbase="/home/hbons/Desktop"
| | + sodipodi:docname="pidgin-16.svg"
| | + inkscape:export-filename="/home/hbons/Desktop/pidgin.png"
| | + inkscape:export-xdpi="90"
| | + inkscape:export-ydpi="90"
| | + version="1.0">
| | + <defs
| | + id="defs4347">
| | + <linearGradient
| | + id="linearGradient2804">
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="0"
| | + id="stop2806" />
| | + <stop
| | + id="stop2812"
| | + offset="0.5"
| | + style="stop-color:black;stop-opacity:1;" />
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="1"
| | + id="stop2808" />
| | + </linearGradient>
| | + <linearGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2804"
| | + id="linearGradient1516"
| | + gradientUnits="userSpaceOnUse"
| | + x1="21.875"
| | + y1="48.000977"
| | + x2="21.875"
| | + y2="40" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2781"
| | + id="radialGradient1514"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(2,0,0,0.8,36,8.8)"
| | + cx="1"
| | + cy="44"
| | + fx="1"
| | + fy="44"
| | + r="5" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient2781">
| | + <stop
| | + style="stop-color:black;stop-opacity:1;"
| | + offset="0"
| | + id="stop2783" />
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="1"
| | + id="stop2785" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2781"
| | + id="radialGradient1512"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(2,0,0,0.8,-13,-79.2)"
| | + cx="1"
| | + cy="44"
| | + fx="1"
| | + fy="44"
| | + r="5" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient5235">
| | + <stop
| | + style="stop-color:#2e3436;stop-opacity:1;"
| | + offset="0"
| | + id="stop5237" />
| | + <stop
| | + style="stop-color:#2e3436;stop-opacity:0;"
| | + offset="1"
| | + id="stop5239" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25572"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
| | + cx="7.8836637"
| | + cy="1.5104795"
| | + fx="7.8836637"
| | + fy="1.5104795"
| | + r="8.4883642" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25568"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
| | + cx="7.8836741"
| | + cy="0.14505707"
| | + fx="7.8836741"
| | + fy="0.14505707"
| | + r="8.4883642" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient25546">
| | + <stop
| | + style="stop-color:white;stop-opacity:1;"
| | + offset="0"
| | + id="stop25548" />
| | + <stop
| | + style="stop-color:white;stop-opacity:0;"
| | + offset="1"
| | + id="stop25550" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25554"
| | + cx="7.8836637"
| | + cy="2.6242435"
| | + fx="7.8836637"
| | + fy="2.6242435"
| | + r="8.4883642"
| | + gradientTransform="matrix(1.131317,0,0,1.125313,-1.035262,-0.301139)"
| | + gradientUnits="userSpaceOnUse" />
| | + <linearGradient
| | + id="linearGradient3800">
| | + <stop
| | + style="stop-color:#f4d9b1;stop-opacity:1.0000000;"
| | + offset="0.0000000"
| | + id="stop3802" />
| | + <stop
| | + style="stop-color:#df9725;stop-opacity:1.0000000;"
| | + offset="1.0000000"
| | + id="stop3804" />
| | + </linearGradient>
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient3816">
| | + <stop
| | + style="stop-color:#000000;stop-opacity:1;"
| | + offset="0"
| | + id="stop3818" />
| | + <stop
| | + style="stop-color:#000000;stop-opacity:0;"
| | + offset="1"
| | + id="stop3820" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient3816"
| | + id="radialGradient4179"
| | + gradientUnits="userSpaceOnUse"
| | + cx="31.112698"
| | + cy="19.008621"
| | + fx="31.112698"
| | + fy="19.008621"
| | + r="8.6620579" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient5235"
| | + id="radialGradient5241"
| | + cx="23.234518"
| | + cy="40.688972"
| | + fx="23.234518"
| | + fy="40.688972"
| | + r="16.956987"
| | + gradientTransform="matrix(1,0,0,0.133183,0,35.2699)"
| | + gradientUnits="userSpaceOnUse" />
| | + </defs>
| | + <sodipodi:namedview
| | + id="base"
| | + pagecolor="#ffffff"
| | + bordercolor="#666666"
| | + borderopacity="1.0"
| | + inkscape:pageopacity="0.0"
| | + inkscape:pageshadow="2"
| | + inkscape:zoom="42.440064"
| | + inkscape:cx="12.433319"
| | + inkscape:cy="6.6578459"
| | + inkscape:current-layer="layer1"
| | + showgrid="true"
| | + inkscape:grid-bbox="true"
| | + inkscape:document-units="px"
| | + inkscape:window-width="1274"
| | + inkscape:window-height="966"
| | + inkscape:window-x="3"
| | + inkscape:window-y="25"
| | + width="16px"
| | + height="16px" />
| | + <metadata
| | + id="metadata4350">
| | + <rdf:RDF>
| | + <cc:Work
| | + rdf:about="">
| | + <dc:format>image/svg+xml</dc:format>
| | + <dc:type
| | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
| | + </cc:Work>
| | + </rdf:RDF>
| | + </metadata>
| | + <g
| | + id="layer1"
| | + inkscape:label="Layer 1"
| | + inkscape:groupmode="layer">
| | + <path
| | + style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:2.37280941;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.613999 C 1.5,27.393727 2.1210885,28.02025 2.875,28.020249 L 5.8475934,28.020249 L 5.8475934,32.22122 L 11.690916,27.991218 L 22.125,28.020249 C 22.878911,28.020249 23.5,27.393726 23.5,26.613999 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
| | + id="path5540"
| | + transform="matrix(-0.454545,0,0,0.390748,16.18182,-2.43061)"
| | + sodipodi:nodetypes="cccccccccccccccccc" />
| | + <path
| | + transform="matrix(-0.397516,0,0,0.329862,15.46895,-1.283212)"
| | + style="fill:none;fill-opacity:1;stroke:white;stroke-width:2.76157022;stroke-miterlimit:4;stroke-opacity:1"
| | + d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 7.1914464,26.68945 C 7.7065457,26.695834 7.4705404,28.897647 7.4769247,29.412746 L 11.299413,26.8125 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
| | + id="path5542"
| | + sodipodi:nodetypes="cccccccccccccccccc" />
| | + <path
| | + sodipodi:type="arc"
| | + style="opacity:0.52838428;fill:url(#radialGradient5241);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + id="path4340"
| | + sodipodi:cx="23.234518"
| | + sodipodi:cy="40.688972"
| | + sodipodi:rx="16.956987"
| | + sodipodi:ry="2.2583797"
| | + d="M 40.191505 40.688972 A 16.956987 2.2583797 0 1 1 6.2775307,40.688972 A 16.956987 2.2583797 0 1 1 40.191505 40.688972 z"
| | + transform="matrix(1.208941,0,0,1.980928,-1.589159,5.924394)" />
| | + <path
| | + transform="matrix(2.539812,0,0,0.410815,-57.0204,65.80212)"
| | + sodipodi:type="arc"
| | + style="opacity:1;color:black;fill:url(#radialGradient4179);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
| | + id="path4306"
| | + sodipodi:cx="31.112698"
| | + sodipodi:cy="19.008621"
| | + sodipodi:rx="8.6620579"
| | + sodipodi:ry="8.6620579"
| | + d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
| | + <path
| | + style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:2.37280941;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.613999 C 1.5,27.393727 2.1210885,28.02025 2.875,28.020249 L 5.8475934,28.020249 L 5.8475934,32.22122 L 11.690916,27.991218 L 22.125,28.020249 C 22.878911,28.020249 23.5,27.393726 23.5,26.613999 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
| | + id="path5534"
| | + transform="matrix(0.454545,0,0,0.390748,-0.181807,2.56939)"
| | + sodipodi:nodetypes="cccccccccccccccccc" />
| | + <path
| | + transform="matrix(0.397516,0,0,0.329862,0.531062,3.716788)"
| | + style="fill:none;fill-opacity:1;stroke:white;stroke-width:2.76157022;stroke-miterlimit:4;stroke-opacity:1"
| | + d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 7.1914464,26.68945 C 7.7065457,26.695834 7.4705404,28.897647 7.4769247,29.412746 L 11.299413,26.8125 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
| | + id="path5536"
| | + sodipodi:nodetypes="cccccccccccccccccc" />
| | + </g>
| | +</svg>
| | ============================================================
| | --- pidgin/pixmaps/icons/24/Makefile.am 5240a5935de477e6655e80adaca28da3fd13d2a2
| | +++ pidgin/pixmaps/icons/24/Makefile.am 5240a5935de477e6655e80adaca28da3fd13d2a2
| | @@ -0,0 +1,8 @@
| | +SUBDIRS = scalable
| | +
| | +EXTRA_DIST = pidgin.png
| | +
| | +pidginiconspixdir = $(datadir)/pixmaps/pidgin/icons/24
| | +
| | +pidginiconspix_DATA = $(EXTRA_DIST)
| | +
| | ============================================================
| | --- pidgin/pixmaps/icons/24/Makefile.mingw cab603edd1bbe2c735aa0362c0dbdcdca4efa764
| | +++ pidgin/pixmaps/icons/24/Makefile.mingw cab603edd1bbe2c735aa0362c0dbdcdca4efa764
| | @@ -0,0 +1,14 @@
| | +#
| | +# Makefile.mingw
| | +#
| | +# Description: Makefile for win32 (mingw) version of Gaim pixmaps
| | +#
| | +
| | +include ./Makefile.am
| | +
| | +install:
| | + if test '$(SUBDIRS)'; then \
| | + list='$(SUBDIRS)'; for subdir in $$list; do \
| | + $(MAKE) -C $$subdir -f Makefile.mingw install || exit 1; \
| | + done; \
| | + fi;
| | ============================================================
| | # pidgin/pixmaps/icons/24/pidgin.png is binary
| | ============================================================
| | --- pidgin/pixmaps/icons/24/scalable/Makefile.am d15ad124452d202c65ec0e6cc9ac8e203ee31e1d
| | +++ pidgin/pixmaps/icons/24/scalable/Makefile.am d15ad124452d202c65ec0e6cc9ac8e203ee31e1d
| | @@ -0,0 +1 @@
| | +EXTRA_DIST = pidgin.svg
| | ============================================================
| | --- pidgin/pixmaps/icons/24/scalable/pidgin.svg cf8278d0712b4ce2f02a96911105110fe9696e2d
| | +++ pidgin/pixmaps/icons/24/scalable/pidgin.svg cf8278d0712b4ce2f02a96911105110fe9696e2d
| | @@ -0,0 +1,292 @@
| | +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
| | +<!-- Created with Inkscape (http://www.inkscape.org/) -->
| | +<svg
| | + xmlns:dc="http://purl.org/dc/elements/1.1/"
| | + xmlns:cc="http://web.resource.org/cc/"
| | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
| | + xmlns:svg="http://www.w3.org/2000/svg"
| | + xmlns="http://www.w3.org/2000/svg"
| | + xmlns:xlink="http://www.w3.org/1999/xlink"
| | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
| | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
| | + width="24"
| | + height="24"
| | + id="svg4345"
| | + sodipodi:version="0.32"
| | + inkscape:version="0.44.1"
| | + sodipodi:docbase="/home/hbons/Desktop"
| | + sodipodi:docname="pidgin-24.svg"
| | + inkscape:export-filename="/home/hbons/Desktop/pidgin.png"
| | + inkscape:export-xdpi="90"
| | + inkscape:export-ydpi="90"
| | + version="1.0">
| | + <defs
| | + id="defs4347">
| | + <linearGradient
| | + id="linearGradient2804">
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="0"
| | + id="stop2806" />
| | + <stop
| | + id="stop2812"
| | + offset="0.5"
| | + style="stop-color:black;stop-opacity:1;" />
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="1"
| | + id="stop2808" />
| | + </linearGradient>
| | + <linearGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2804"
| | + id="linearGradient1516"
| | + gradientUnits="userSpaceOnUse"
| | + x1="21.875"
| | + y1="48.000977"
| | + x2="21.875"
| | + y2="40" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2781"
| | + id="radialGradient1514"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(2,0,0,0.8,36,8.8)"
| | + cx="1"
| | + cy="44"
| | + fx="1"
| | + fy="44"
| | + r="5" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient2781">
| | + <stop
| | + style="stop-color:black;stop-opacity:1;"
| | + offset="0"
| | + id="stop2783" />
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="1"
| | + id="stop2785" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2781"
| | + id="radialGradient1512"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(2,0,0,0.8,-13,-79.2)"
| | + cx="1"
| | + cy="44"
| | + fx="1"
| | + fy="44"
| | + r="5" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient5235">
| | + <stop
| | + style="stop-color:#2e3436;stop-opacity:1;"
| | + offset="0"
| | + id="stop5237" />
| | + <stop
| | + style="stop-color:#2e3436;stop-opacity:0;"
| | + offset="1"
| | + id="stop5239" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25572"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
| | + cx="7.8836637"
| | + cy="1.5104795"
| | + fx="7.8836637"
| | + fy="1.5104795"
| | + r="8.4883642" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25568"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
| | + cx="7.8836741"
| | + cy="0.14505707"
| | + fx="7.8836741"
| | + fy="0.14505707"
| | + r="8.4883642" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient25546">
| | + <stop
| | + style="stop-color:white;stop-opacity:1;"
| | + offset="0"
| | + id="stop25548" />
| | + <stop
| | + style="stop-color:white;stop-opacity:0;"
| | + offset="1"
| | + id="stop25550" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25554"
| | + cx="7.8836637"
| | + cy="2.6242435"
| | + fx="7.8836637"
| | + fy="2.6242435"
| | + r="8.4883642"
| | + gradientTransform="matrix(1.131317,0,0,1.125313,-1.035262,-0.301139)"
| | + gradientUnits="userSpaceOnUse" />
| | + <linearGradient
| | + id="linearGradient3800">
| | + <stop
| | + style="stop-color:#f4d9b1;stop-opacity:1.0000000;"
| | + offset="0.0000000"
| | + id="stop3802" />
| | + <stop
| | + style="stop-color:#df9725;stop-opacity:1.0000000;"
| | + offset="1.0000000"
| | + id="stop3804" />
| | + </linearGradient>
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient3816">
| | + <stop
| | + style="stop-color:#000000;stop-opacity:1;"
| | + offset="0"
| | + id="stop3818" />
| | + <stop
| | + style="stop-color:#000000;stop-opacity:0;"
| | + offset="1"
| | + id="stop3820" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient3816"
| | + id="radialGradient4179"
| | + gradientUnits="userSpaceOnUse"
| | + cx="31.112698"
| | + cy="19.008621"
| | + fx="31.112698"
| | + fy="19.008621"
| | + r="8.6620579" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient5235"
| | + id="radialGradient5241"
| | + cx="23.234518"
| | + cy="40.688972"
| | + fx="23.234518"
| | + fy="40.688972"
| | + r="16.956987"
| | + gradientTransform="matrix(1,0,0,0.133183,0,35.2699)"
| | + gradientUnits="userSpaceOnUse" />
| | + </defs>
| | + <sodipodi:namedview
| | + id="base"
| | + pagecolor="#ffffff"
| | + bordercolor="#666666"
| | + borderopacity="1.0"
| | + inkscape:pageopacity="0.0"
| | + inkscape:pageshadow="2"
| | + inkscape:zoom="28"
| | + inkscape:cx="17.768242"
| | + inkscape:cy="11.945133"
| | + inkscape:current-layer="layer1"
| | + showgrid="true"
| | + inkscape:grid-bbox="true"
| | + inkscape:document-units="px"
| | + inkscape:window-width="1274"
| | + inkscape:window-height="966"
| | + inkscape:window-x="3"
| | + inkscape:window-y="25"
| | + width="24px"
| | + height="24px" />
| | + <metadata
| | + id="metadata4350">
| | + <rdf:RDF>
| | + <cc:Work
| | + rdf:about="">
| | + <dc:format>image/svg+xml</dc:format>
| | + <dc:type
| | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
| | + </cc:Work>
| | + </rdf:RDF>
| | + </metadata>
| | + <g
| | + id="layer1"
| | + inkscape:label="Layer 1"
| | + inkscape:groupmode="layer">
| | + <g
| | + id="g1504"
| | + style="opacity:0.12663754"
| | + transform="matrix(0.496192,0,0,0.581846,-0.128303,-4.772994)">
| | + <rect
| | + transform="scale(-1,-1)"
| | + y="-48"
| | + x="-11"
| | + height="8"
| | + width="10"
| | + id="rect1506"
| | + style="opacity:1;color:black;fill:url(#radialGradient1512);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
| | + <rect
| | + y="40"
| | + x="38"
| | + height="8"
| | + width="10"
| | + id="rect1508"
| | + style="opacity:1;color:black;fill:url(#radialGradient1514);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
| | + <rect
| | + y="40"
| | + x="11"
| | + height="8"
| | + width="27"
| | + id="rect1510"
| | + style="opacity:1;color:black;fill:url(#linearGradient1516);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
| | + </g>
| | + <path
| | + sodipodi:type="arc"
| | + style="opacity:0.52838428;fill:url(#radialGradient5241);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + id="path4340"
| | + sodipodi:cx="23.234518"
| | + sodipodi:cy="40.688972"
| | + sodipodi:rx="16.956987"
| | + sodipodi:ry="2.2583797"
| | + d="M 40.191505 40.688972 A 16.956987 2.2583797 0 1 1 6.2775307,40.688972 A 16.956987 2.2583797 0 1 1 40.191505 40.688972 z"
| | + transform="matrix(1.208941,0,0,1.980928,-0.589159,7.924396)" />
| | + <path
| | + style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:1.69608581;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.613999 C 1.5,27.393727 2.1210885,28.02025 2.875,28.020249 L 4.9145119,28.020249 L 4.9145119,30.532781 L 8.1141033,27.991218 L 22.125,28.020249 C 22.878911,28.020249 23.5,27.393726 23.5,26.613999 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
| | + id="path4334"
| | + transform="matrix(-0.590909,0,0,0.588279,23.38636,-1.912091)"
| | + sodipodi:nodetypes="cccccccccccccccccc" />
| | + <path
| | + transform="matrix(-0.546584,0,0,0.546584,22.8323,-1.111803)"
| | + style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.82954407;stroke-miterlimit:4;stroke-opacity:1"
| | + d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.0575572,26.65625 C 5.5726565,26.662634 5.9886729,27.078651 5.9950572,27.59375 L 7.0909095,26.8125 C 7.2621189,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
| | + id="path4336"
| | + sodipodi:nodetypes="ccccccccccccccccccc" />
| | + <path
| | + transform="matrix(2.539812,0,0,0.410815,-56.0204,67.80212)"
| | + sodipodi:type="arc"
| | + style="opacity:1;color:black;fill:url(#radialGradient4179);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
| | + id="path4306"
| | + sodipodi:cx="31.112698"
| | + sodipodi:cy="19.008621"
| | + sodipodi:rx="8.6620579"
| | + sodipodi:ry="8.6620579"
| | + d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
| | + <path
| | + style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:1.69608581;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.613999 C 1.5,27.393727 2.1210885,28.02025 2.875,28.020249 L 4.9145119,28.020249 L 4.9145119,30.532781 L 8.1141033,27.991218 L 22.125,28.020249 C 22.878911,28.020249 23.5,27.393726 23.5,26.613999 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
| | + id="path5534"
| | + transform="matrix(0.590909,0,0,0.588279,0.613639,3.087907)"
| | + sodipodi:nodetypes="cccccccccccccccccc" />
| | + <path
| | + transform="matrix(0.546584,0,0,0.546584,1.167699,3.888195)"
| | + style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.82954407;stroke-miterlimit:4;stroke-opacity:1"
| | + d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.0575572,26.65625 C 5.5726565,26.662634 5.9886729,27.078651 5.9950572,27.59375 L 7.0909095,26.8125 C 7.2621189,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
| | + id="path5536"
| | + sodipodi:nodetypes="ccccccccccccccccccc" />
| | + </g>
| | +</svg>
| | ============================================================
| | --- pidgin/pixmaps/icons/32/Makefile.am 4f911af28b4367fd6948edf045bf968654a949a5
| | +++ pidgin/pixmaps/icons/32/Makefile.am 4f911af28b4367fd6948edf045bf968654a949a5
| | @@ -0,0 +1,8 @@
| | +SUBDIRS = scalable
| | +
| | +EXTRA_DIST = pidgin.png
| | +
| | +pidginiconspixdir = $(datadir)/pixmaps/pidgin/icons/32
| | +
| | +pidginiconspix_DATA = $(EXTRA_DIST)
| | +
| | ============================================================
| | --- pidgin/pixmaps/icons/32/Makefile.mingw cab603edd1bbe2c735aa0362c0dbdcdca4efa764
| | +++ pidgin/pixmaps/icons/32/Makefile.mingw cab603edd1bbe2c735aa0362c0dbdcdca4efa764
| | @@ -0,0 +1,14 @@
| | +#
| | +# Makefile.mingw
| | +#
| | +# Description: Makefile for win32 (mingw) version of Gaim pixmaps
| | +#
| | +
| | +include ./Makefile.am
| | +
| | +install:
| | + if test '$(SUBDIRS)'; then \
| | + list='$(SUBDIRS)'; for subdir in $$list; do \
| | + $(MAKE) -C $$subdir -f Makefile.mingw install || exit 1; \
| | + done; \
| | + fi;
| | ============================================================
| | # pidgin/pixmaps/icons/32/pidgin.png is binary
| | ============================================================
| | --- pidgin/pixmaps/icons/32/scalable/Makefile.am d15ad124452d202c65ec0e6cc9ac8e203ee31e1d
| | +++ pidgin/pixmaps/icons/32/scalable/Makefile.am d15ad124452d202c65ec0e6cc9ac8e203ee31e1d
| | @@ -0,0 +1 @@
| | +EXTRA_DIST = pidgin.svg
| | ============================================================
| | --- pidgin/pixmaps/icons/32/scalable/pidgin.svg e82fe7d550468ce66989abbc74f9bade315a0adb
| | +++ pidgin/pixmaps/icons/32/scalable/pidgin.svg e82fe7d550468ce66989abbc74f9bade315a0adb
| | @@ -0,0 +1,292 @@
| | +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
| | +<!-- Created with Inkscape (http://www.inkscape.org/) -->
| | +<svg
| | + xmlns:dc="http://purl.org/dc/elements/1.1/"
| | + xmlns:cc="http://web.resource.org/cc/"
| | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
| | + xmlns:svg="http://www.w3.org/2000/svg"
| | + xmlns="http://www.w3.org/2000/svg"
| | + xmlns:xlink="http://www.w3.org/1999/xlink"
| | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
| | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
| | + width="32"
| | + height="32"
| | + id="svg4345"
| | + sodipodi:version="0.32"
| | + inkscape:version="0.44.1"
| | + sodipodi:docbase="/home/hbons/Desktop"
| | + sodipodi:docname="pidgin-321.svg"
| | + inkscape:export-filename="/home/hbons/Desktop/pidgin.png"
| | + inkscape:export-xdpi="90"
| | + inkscape:export-ydpi="90"
| | + version="1.0">
| | + <defs
| | + id="defs4347">
| | + <linearGradient
| | + id="linearGradient2804">
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="0"
| | + id="stop2806" />
| | + <stop
| | + id="stop2812"
| | + offset="0.5"
| | + style="stop-color:black;stop-opacity:1;" />
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="1"
| | + id="stop2808" />
| | + </linearGradient>
| | + <linearGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2804"
| | + id="linearGradient1516"
| | + gradientUnits="userSpaceOnUse"
| | + x1="21.875"
| | + y1="48.000977"
| | + x2="21.875"
| | + y2="40" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2781"
| | + id="radialGradient1514"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(2,0,0,0.8,36,8.8)"
| | + cx="1"
| | + cy="44"
| | + fx="1"
| | + fy="44"
| | + r="5" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient2781">
| | + <stop
| | + style="stop-color:black;stop-opacity:1;"
| | + offset="0"
| | + id="stop2783" />
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="1"
| | + id="stop2785" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2781"
| | + id="radialGradient1512"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(2,0,0,0.8,-13,-79.2)"
| | + cx="1"
| | + cy="44"
| | + fx="1"
| | + fy="44"
| | + r="5" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient5235">
| | + <stop
| | + style="stop-color:#2e3436;stop-opacity:1;"
| | + offset="0"
| | + id="stop5237" />
| | + <stop
| | + style="stop-color:#2e3436;stop-opacity:0;"
| | + offset="1"
| | + id="stop5239" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25572"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
| | + cx="7.8836637"
| | + cy="1.5104795"
| | + fx="7.8836637"
| | + fy="1.5104795"
| | + r="8.4883642" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25568"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
| | + cx="7.8836741"
| | + cy="0.14505707"
| | + fx="7.8836741"
| | + fy="0.14505707"
| | + r="8.4883642" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient25546">
| | + <stop
| | + style="stop-color:white;stop-opacity:1;"
| | + offset="0"
| | + id="stop25548" />
| | + <stop
| | + style="stop-color:white;stop-opacity:0;"
| | + offset="1"
| | + id="stop25550" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25554"
| | + cx="7.8836637"
| | + cy="2.6242435"
| | + fx="7.8836637"
| | + fy="2.6242435"
| | + r="8.4883642"
| | + gradientTransform="matrix(1.131317,0,0,1.125313,-1.035262,-0.301139)"
| | + gradientUnits="userSpaceOnUse" />
| | + <linearGradient
| | + id="linearGradient3800">
| | + <stop
| | + style="stop-color:#f4d9b1;stop-opacity:1.0000000;"
| | + offset="0.0000000"
| | + id="stop3802" />
| | + <stop
| | + style="stop-color:#df9725;stop-opacity:1.0000000;"
| | + offset="1.0000000"
| | + id="stop3804" />
| | + </linearGradient>
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient3816">
| | + <stop
| | + style="stop-color:#000000;stop-opacity:1;"
| | + offset="0"
| | + id="stop3818" />
| | + <stop
| | + style="stop-color:#000000;stop-opacity:0;"
| | + offset="1"
| | + id="stop3820" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient3816"
| | + id="radialGradient4179"
| | + gradientUnits="userSpaceOnUse"
| | + cx="31.112698"
| | + cy="19.008621"
| | + fx="31.112698"
| | + fy="19.008621"
| | + r="8.6620579" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient5235"
| | + id="radialGradient5241"
| | + cx="23.234518"
| | + cy="40.688972"
| | + fx="23.234518"
| | + fy="40.688972"
| | + r="16.956987"
| | + gradientTransform="matrix(1,0,0,0.133183,0,35.2699)"
| | + gradientUnits="userSpaceOnUse" />
| | + </defs>
| | + <sodipodi:namedview
| | + id="base"
| | + pagecolor="#ffffff"
| | + bordercolor="#666666"
| | + borderopacity="1.0"
| | + inkscape:pageopacity="0.0"
| | + inkscape:pageshadow="2"
| | + inkscape:zoom="17.236022"
| | + inkscape:cx="24.250455"
| | + inkscape:cy="19.077116"
| | + inkscape:current-layer="layer1"
| | + showgrid="true"
| | + inkscape:grid-bbox="true"
| | + inkscape:document-units="px"
| | + inkscape:window-width="1274"
| | + inkscape:window-height="966"
| | + inkscape:window-x="3"
| | + inkscape:window-y="25"
| | + width="32px"
| | + height="32px" />
| | + <metadata
| | + id="metadata4350">
| | + <rdf:RDF>
| | + <cc:Work
| | + rdf:about="">
| | + <dc:format>image/svg+xml</dc:format>
| | + <dc:type
| | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
| | + </cc:Work>
| | + </rdf:RDF>
| | + </metadata>
| | + <g
| | + id="layer1"
| | + inkscape:label="Layer 1"
| | + inkscape:groupmode="layer">
| | + <g
| | + id="g1504"
| | + style="opacity:0.12663754"
| | + transform="matrix(0.697369,0,0,0.818888,-1.473712,-7.73599)">
| | + <rect
| | + transform="scale(-1,-1)"
| | + y="-48"
| | + x="-11"
| | + height="8"
| | + width="10"
| | + id="rect1506"
| | + style="opacity:1;color:black;fill:url(#radialGradient1512);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
| | + <rect
| | + y="40"
| | + x="38"
| | + height="8"
| | + width="10"
| | + id="rect1508"
| | + style="opacity:1;color:black;fill:url(#radialGradient1514);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
| | + <rect
| | + y="40"
| | + x="11"
| | + height="8"
| | + width="27"
| | + id="rect1510"
| | + style="opacity:1;color:black;fill:url(#linearGradient1516);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
| | + </g>
| | + <path
| | + sodipodi:type="arc"
| | + style="opacity:0.52838428;fill:url(#radialGradient5241);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + id="path4340"
| | + sodipodi:cx="23.234518"
| | + sodipodi:cy="40.688972"
| | + sodipodi:rx="16.956987"
| | + sodipodi:ry="2.2583797"
| | + d="M 40.191505 40.688972 A 16.956987 2.2583797 0 1 1 6.2775307,40.688972 A 16.956987 2.2583797 0 1 1 40.191505 40.688972 z"
| | + transform="matrix(1.208941,0,0,1.980928,-1.589151,7.924388)" />
| | + <path
| | + style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:1.16880918;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 4.9145119,27.595281 L 4.9145119,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
| | + id="path4334"
| | + transform="matrix(-0.863636,0,0,0.847582,31.79545,-3.856871)"
| | + sodipodi:nodetypes="cccccccccccccccccc" />
| | + <path
| | + transform="matrix(-0.84472,0,0,0.822913,31.55901,-3.443332)"
| | + style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.19940674;stroke-miterlimit:4;stroke-opacity:1"
| | + d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.0575572,26.65625 C 5.5726565,26.662634 5.9886729,27.078651 5.9950572,27.59375 L 5.9950572,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
| | + id="path4336"
| | + sodipodi:nodetypes="cccccccccccccccccccc" />
| | + <path
| | + transform="matrix(2.539812,0,0,0.410815,-57.02039,67.80211)"
| | + sodipodi:type="arc"
| | + style="opacity:1;color:black;fill:url(#radialGradient4179);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
| | + id="path4306"
| | + sodipodi:cx="31.112698"
| | + sodipodi:cy="19.008621"
| | + sodipodi:rx="8.6620579"
| | + sodipodi:ry="8.6620579"
| | + d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
| | + <path
| | + style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:1.16880918;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 4.9145119,27.595281 L 4.9145119,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
| | + id="path5528"
| | + transform="matrix(0.863636,0,0,0.847582,-0.795446,3.143135)"
| | + sodipodi:nodetypes="cccccccccccccccccc" />
| | + <path
| | + transform="matrix(0.84472,0,0,0.822913,-0.559006,3.556674)"
| | + style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.19940674;stroke-miterlimit:4;stroke-opacity:1"
| | + d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.0575572,26.65625 C 5.5726565,26.662634 5.9886729,27.078651 5.9950572,27.59375 L 5.9950572,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
| | + id="path5530"
| | + sodipodi:nodetypes="cccccccccccccccccccc" />
| | + </g>
| | +</svg>
| | ============================================================
| | --- pidgin/pixmaps/icons/48/Makefile.am 4e38dd56087c3a2b15da67e8360db0b11aed8027
| | +++ pidgin/pixmaps/icons/48/Makefile.am 4e38dd56087c3a2b15da67e8360db0b11aed8027
| | @@ -0,0 +1,8 @@
| | +SUBDIRS = scalable
| | +
| | +EXTRA_DIST = pidgin.png
| | +
| | +pidginiconspixdir = $(datadir)/pixmaps/pidgin/icons/48
| | +
| | +pidginiconspix_DATA = $(EXTRA_DIST)
| | +
| | ============================================================
| | --- pidgin/pixmaps/icons/48/Makefile.mingw cab603edd1bbe2c735aa0362c0dbdcdca4efa764
| | +++ pidgin/pixmaps/icons/48/Makefile.mingw cab603edd1bbe2c735aa0362c0dbdcdca4efa764
| | @@ -0,0 +1,14 @@
| | +#
| | +# Makefile.mingw
| | +#
| | +# Description: Makefile for win32 (mingw) version of Gaim pixmaps
| | +#
| | +
| | +include ./Makefile.am
| | +
| | +install:
| | + if test '$(SUBDIRS)'; then \
| | + list='$(SUBDIRS)'; for subdir in $$list; do \
| | + $(MAKE) -C $$subdir -f Makefile.mingw install || exit 1; \
| | + done; \
| | + fi;
| | ============================================================
| | # pidgin/pixmaps/icons/48/pidgin.png is binary
| | ============================================================
| | --- pidgin/pixmaps/icons/48/scalable/Makefile.am d15ad124452d202c65ec0e6cc9ac8e203ee31e1d
| | +++ pidgin/pixmaps/icons/48/scalable/Makefile.am d15ad124452d202c65ec0e6cc9ac8e203ee31e1d
| | @@ -0,0 +1 @@
| | +EXTRA_DIST = pidgin.svg
| | ============================================================
| | --- pidgin/pixmaps/icons/48/scalable/pidgin.svg b9fb5db3fffc1ef797af2b63b2d4767379c77af8
| | +++ pidgin/pixmaps/icons/48/scalable/pidgin.svg b9fb5db3fffc1ef797af2b63b2d4767379c77af8
| | @@ -0,0 +1,293 @@
| | +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
| | +<!-- Created with Inkscape (http://www.inkscape.org/) -->
| | +<svg
| | + xmlns:dc="http://purl.org/dc/elements/1.1/"
| | + xmlns:cc="http://web.resource.org/cc/"
| | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
| | + xmlns:svg="http://www.w3.org/2000/svg"
| | + xmlns="http://www.w3.org/2000/svg"
| | + xmlns:xlink="http://www.w3.org/1999/xlink"
| | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
| | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
| | + width="48px"
| | + height="48px"
| | + id="svg4345"
| | + sodipodi:version="0.32"
| | + inkscape:version="0.44.1"
| | + sodipodi:docbase="/home/hbons/Desktop"
| | + sodipodi:docname="pidgin-32.svg"
| | + inkscape:export-filename="/home/hbons/Desktop/pidgin.png"
| | + inkscape:export-xdpi="90"
| | + inkscape:export-ydpi="90">
| | + <defs
| | + id="defs4347">
| | + <linearGradient
| | + id="linearGradient2804">
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="0"
| | + id="stop2806" />
| | + <stop
| | + id="stop2812"
| | + offset="0.5"
| | + style="stop-color:black;stop-opacity:1;" />
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="1"
| | + id="stop2808" />
| | + </linearGradient>
| | + <linearGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2804"
| | + id="linearGradient1516"
| | + gradientUnits="userSpaceOnUse"
| | + x1="21.875"
| | + y1="48.000977"
| | + x2="21.875"
| | + y2="40" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2781"
| | + id="radialGradient1514"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(2,0,0,0.8,36,8.8)"
| | + cx="1"
| | + cy="44"
| | + fx="1"
| | + fy="44"
| | + r="5" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient2781">
| | + <stop
| | + style="stop-color:black;stop-opacity:1;"
| | + offset="0"
| | + id="stop2783" />
| | + <stop
| | + style="stop-color:black;stop-opacity:0;"
| | + offset="1"
| | + id="stop2785" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient2781"
| | + id="radialGradient1512"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(2,0,0,0.8,-13,-79.2)"
| | + cx="1"
| | + cy="44"
| | + fx="1"
| | + fy="44"
| | + r="5" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient5235">
| | + <stop
| | + style="stop-color:#2e3436;stop-opacity:1;"
| | + offset="0"
| | + id="stop5237" />
| | + <stop
| | + style="stop-color:#2e3436;stop-opacity:0;"
| | + offset="1"
| | + id="stop5239" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25572"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
| | + cx="7.8836637"
| | + cy="1.5104795"
| | + fx="7.8836637"
| | + fy="1.5104795"
| | + r="8.4883642" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25568"
| | + gradientUnits="userSpaceOnUse"
| | + gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
| | + cx="7.8836741"
| | + cy="0.14505707"
| | + fx="7.8836741"
| | + fy="0.14505707"
| | + r="8.4883642" />
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient25546">
| | + <stop
| | + style="stop-color:white;stop-opacity:1;"
| | + offset="0"
| | + id="stop25548" />
| | + <stop
| | + style="stop-color:white;stop-opacity:0;"
| | + offset="1"
| | + id="stop25550" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient25546"
| | + id="radialGradient25554"
| | + cx="7.8836637"
| | + cy="2.6242435"
| | + fx="7.8836637"
| | + fy="2.6242435"
| | + r="8.4883642"
| | + gradientTransform="matrix(1.131317,0,0,1.125313,-1.035262,-0.301139)"
| | + gradientUnits="userSpaceOnUse" />
| | + <linearGradient
| | + id="linearGradient3800">
| | + <stop
| | + style="stop-color:#f4d9b1;stop-opacity:1.0000000;"
| | + offset="0.0000000"
| | + id="stop3802" />
| | + <stop
| | + style="stop-color:#df9725;stop-opacity:1.0000000;"
| | + offset="1.0000000"
| | + id="stop3804" />
| | + </linearGradient>
| | + <linearGradient
| | + inkscape:collect="always"
| | + id="linearGradient3816">
| | + <stop
| | + style="stop-color:#000000;stop-opacity:1;"
| | + offset="0"
| | + id="stop3818" />
| | + <stop
| | + style="stop-color:#000000;stop-opacity:0;"
| | + offset="1"
| | + id="stop3820" />
| | + </linearGradient>
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient3816"
| | + id="radialGradient4179"
| | + gradientUnits="userSpaceOnUse"
| | + cx="31.112698"
| | + cy="19.008621"
| | + fx="31.112698"
| | + fy="19.008621"
| | + r="8.6620579" />
| | + <radialGradient
| | + inkscape:collect="always"
| | + xlink:href="#linearGradient5235"
| | + id="radialGradient5241"
| | + cx="23.234518"
| | + cy="40.688972"
| | + fx="23.234518"
| | + fy="40.688972"
| | + r="16.956987"
| | + gradientTransform="matrix(1,0,0,0.133183,0,35.2699)"
| | + gradientUnits="userSpaceOnUse" />
| | + </defs>
| | + <sodipodi:namedview
| | + id="base"
| | + pagecolor="#ffffff"
| | + bordercolor="#666666"
| | + borderopacity="1.0"
| | + inkscape:pageopacity="0.0"
| | + inkscape:pageshadow="2"
| | + inkscape:zoom="13.062462"
| | + inkscape:cx="40.814762"
| | + inkscape:cy="25.717712"
| | + inkscape:current-layer="layer1"
| | + showgrid="true"
| | + inkscape:grid-bbox="true"
| | + inkscape:document-units="px"
| | + inkscape:window-width="1274"
| | + inkscape:window-height="966"
| | + inkscape:window-x="3"
| | + inkscape:window-y="25" />
| | + <metadata
| | + id="metadata4350">
| | + <rdf:RDF>
| | + <cc:Work
| | + rdf:about="">
| | + <dc:format>image/svg+xml</dc:format>
| | + <dc:type
| | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
| | + </cc:Work>
| | + </rdf:RDF>
| | + </metadata>
| | + <g
| | + id="layer1"
| | + inkscape:label="Layer 1"
| | + inkscape:groupmode="layer">
| | + <g
| | + id="g1504"
| | + style="opacity:0.12663754"
| | + transform="matrix(0.851064,0,0,0.999995,3.148928,-3.9998)">
| | + <rect
| | + transform="scale(-1,-1)"
| | + y="-48"
| | + x="-11"
| | + height="8"
| | + width="10"
| | + id="rect1506"
| | + style="opacity:1;color:black;fill:url(#radialGradient1512);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
| | + <rect
| | + y="40"
| | + x="38"
| | + height="8"
| | + width="10"
| | + id="rect1508"
| | + style="opacity:1;color:black;fill:url(#radialGradient1514);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
| | + <rect
| | + y="40"
| | + x="11"
| | + height="8"
| | + width="27"
| | + id="rect1510"
| | + style="opacity:1;color:black;fill:url(#linearGradient1516);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
| | + </g>
| | + <path
| | + sodipodi:type="arc"
| | + style="opacity:0.52838428;fill:url(#radialGradient5241);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + id="path4340"
| | + sodipodi:cx="23.234518"
| | + sodipodi:cy="40.688972"
| | + sodipodi:rx="16.956987"
| | + sodipodi:ry="2.2583797"
| | + d="M 40.191505 40.688972 A 16.956987 2.2583797 0 1 1 6.2775307,40.688972 A 16.956987 2.2583797 0 1 1 40.191505 40.688972 z"
| | + transform="matrix(1.208941,0,0,1.980928,3.410841,15.87176)" />
| | + <path
| | + style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 5.5,27.595281 L 5.5,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
| | + id="path4334"
| | + transform="matrix(-1.045455,0,0,1.048433,44.0682,0.636752)"
| | + sodipodi:nodetypes="cccccccccccccccccc" />
| | + <path
| | + sodipodi:type="inkscape:offset"
| | + inkscape:radius="-0.94924349"
| | + inkscape:original="M 2.875 7.5 C 2.1210885 7.5 1.5 8.1265217 1.5 8.90625 L 1.5 15.71875 L 1.5 18.46875 L 1.5 26.1875 C 1.5 26.967227 2.1210885 27.593751 2.875 27.59375 L 5.5 27.59375 L 5.5 30.53125 L 9.1875 27.5625 L 22.125 27.59375 C 22.878911 27.593749 23.5 26.967227 23.5 26.1875 L 23.5 18.46875 L 23.5 15.71875 L 23.5 8.90625 C 23.5 8.1265221 22.878912 7.5000001 22.125 7.5 L 16.15625 7.5 L 8.375 7.5 L 2.875 7.5 z "
| | + style="opacity:1;fill:none;fill-opacity:1;stroke:white;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + id="path4336"
| | + d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.5,26.65625 C 6.0150993,26.662634 6.4311157,27.078651 6.4375,27.59375 L 6.4375,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
| | + transform="matrix(-1.045455,0,0,1.048433,44.0682,0.636752)" />
| | + <path
| | + transform="matrix(2.539812,0,0,0.410815,-52.0204,75.74948)"
| | + sodipodi:type="arc"
| | + style="opacity:1;color:black;fill:url(#radialGradient4179);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
| | + id="path4306"
| | + sodipodi:cx="31.112698"
| | + sodipodi:cy="19.008621"
| | + sodipodi:rx="8.6620579"
| | + sodipodi:ry="8.6620579"
| | + d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
| | + <path
| | + style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 5.5,27.595281 L 5.5,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
| | + id="rect1326"
| | + transform="matrix(1.045455,0,0,1.048433,3.931818,8.785079)"
| | + sodipodi:nodetypes="cccccccccccccccccc" />
| | + <path
| | + sodipodi:type="inkscape:offset"
| | + inkscape:radius="-0.94924349"
| | + inkscape:original="M 2.875 7.5 C 2.1210885 7.5 1.5 8.1265217 1.5 8.90625 L 1.5 15.71875 L 1.5 18.46875 L 1.5 26.1875 C 1.5 26.967227 2.1210885 27.593751 2.875 27.59375 L 5.5 27.59375 L 5.5 30.53125 L 9.1875 27.5625 L 22.125 27.59375 C 22.878911 27.593749 23.5 26.967227 23.5 26.1875 L 23.5 18.46875 L 23.5 15.71875 L 23.5 8.90625 C 23.5 8.1265221 22.878912 7.5000001 22.125 7.5 L 16.15625 7.5 L 8.375 7.5 L 2.875 7.5 z "
| | + style="opacity:1;fill:none;fill-opacity:1;stroke:white;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
| | + id="path5034"
| | + d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.5,26.65625 C 6.0150993,26.662634 6.4311157,27.078651 6.4375,27.59375 L 6.4375,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
| | + transform="matrix(1.045455,0,0,1.048433,3.931818,8.785079)" />
| | + </g>
| | +</svg>
| | ============================================================
| | --- pidgin/pixmaps/icons/Makefile.am 08ca69592887335b1b7e774586d8b07c8283e112
| | +++ pidgin/pixmaps/icons/Makefile.am 08ca69592887335b1b7e774586d8b07c8283e112
| | @@ -0,0 +1,9 @@
| | +SUBDIRS = 16 24 32 48
| | +
| | +EXTRA_DIST = \
| | + Makefile.mingw \
| | + 16/Makefile.mingw \
| | + 22/Makefile.mingw \
| | + 32/Makefile.mingw \
| | + 48/Makefile.mingw
| | +
| | ============================================================
| | --- pidgin/pixmaps/icons/Makefile.mingw cab603edd1bbe2c735aa0362c0dbdcdca4efa764
| | +++ pidgin/pixmaps/icons/Makefile.mingw cab603edd1bbe2c735aa0362c0dbdcdca4efa764
| | @@ -0,0 +1,14 @@
| | +#
| | +# Makefile.mingw
| | +#
| | +# Description: Makefile for win32 (mingw) version of Gaim pixmaps
| | +#
| | +
| | +include ./Makefile.am
| | +
| | +install:
| | + if test '$(SUBDIRS)'; then \
| | + list='$(SUBDIRS)'; for subdir in $$list; do \
| | + $(MAKE) -C $$subdir -f Makefile.mingw install || exit 1; \
| | + done; \
| | + fi;
| | ============================================================
| | --- configure.ac 1463e8d613851099a99bcae7e9c86800bfbacc3b
| | +++ configure.ac 8d6677f5fabdd2a96ed4263f32dc0eb0227ad3ac
| | @@ -1922,6 +1922,15 @@ AC_OUTPUT([Makefile
| | pidgin/pixmaps/emotes/default/22/Makefile
| | pidgin/pixmaps/emotes/default/22/scalable/Makefile
| | pidgin/pixmaps/emotes/none/Makefile
| | + pidgin/pixmaps/icons/Makefile
| | + pidgin/pixmaps/icons/16/Makefile
| | + pidgin/pixmaps/icons/16/scalable/Makefile
| | + pidgin/pixmaps/icons/24/Makefile
| | + pidgin/pixmaps/icons/24/scalable/Makefile
| | + pidgin/pixmaps/icons/32/Makefile
| | + pidgin/pixmaps/icons/32/scalable/Makefile
| | + pidgin/pixmaps/icons/48/Makefile
| | + pidgin/pixmaps/icons/48/scalable/Makefile
| | pidgin/pixmaps/protocols/Makefile
| | pidgin/pixmaps/protocols/16/Makefile
| | pidgin/pixmaps/protocols/16/scalable/Makefile
| | ============================================================
| | --- pidgin/gtkmain.c b13a7facca9f5611cc228e5bfe59f2abf3456dc2
| | +++ pidgin/gtkmain.c 23b4461df1ea7c12fa7eea3d381dcffebdf1101d
| | @@ -239,6 +239,14 @@ ui_main()
| | GList *icons = NULL;
| | GdkPixbuf *icon = NULL;
| | char *icon_path;
| | + int i;
| | + const char *icon_sizes[] = {
| | + "16",
| | + "24",
| | + "32",
| | + "48"
| | + };
| | +
| | #endif
| |
| | pidginthemes_init();
| | @@ -247,17 +255,24 @@ ui_main()
| |
| | #ifndef _WIN32
| | /* use the nice PNG icon for all the windows */
| | - icon_path = g_build_filename(DATADIR, "pixmaps", "pidgin", "icons", "window-icon.png", NULL);
| | - icon = gdk_pixbuf_new_from_file(icon_path, NULL);
| | - g_free(icon_path);
| | - if (icon) {
| | - icons = g_list_append(icons,icon);
| | + for(i=0; i<G_N_ELEMENTS(icon_sizes); i++) {
| | + icon_path = g_build_filename(DATADIR, "pixmaps", "pidgin", "icons", icon_sizes[i], "pidgin.png", NULL);
| | + icon = gdk_pixbuf_new_from_file(icon_path, NULL);
| | + g_free(icon_path);
| | + if (icon) {
| | + icons = g_list_append(icons,icon);
| | + } else {
| | + purple_debug_error("ui_main",
| | + "Failed to load the default window icon (%spx version)!\n", icon_sizes[i]);
| | + }
| | + }
| | + if(NULL == icons) {
| | + purple_debug_error("ui_main", "Unable to load any size of default window icon!\n");
| | + } else {
| | gtk_window_set_default_icon_list(icons);
| | - g_object_unref(G_OBJECT(icon));
| | +
| | + g_list_foreach(icons, (GFunc)g_object_unref, NULL);
| | g_list_free(icons);
| | - } else {
| | - purple_debug_error("ui_main",
| | - "Failed to load the default window icon!\n");
| | }
| | #endif
| |
| | ============================================================
| | --- pidgin/pixmaps/Makefile.am 36ed11a95f26f30c474646df70f4b07aef538fa9
| | +++ pidgin/pixmaps/Makefile.am 2b6f8697d7ede8793466b2dad97986131c222fba
| | @@ -1,4 +1,4 @@
| | -SUBDIRS = animations buddy_icons dialogs emblems emotes protocols status toolbar tray
| | +SUBDIRS = animations buddy_icons dialogs emblems emotes icons protocols status toolbar tray
| |
| | EXTRA_DIST = \
| | about_menu.png \
| | @@ -53,9 +53,6 @@ pidginbuttonpix_DATA = about_menu.png ac
| | pidginbuttonpixdir = $(datadir)/pixmaps/pidgin/buttons
| | pidginbuttonpix_DATA = about_menu.png accounts.png change-bgcolor-small.png change-fgcolor-small.png edit.png info.png insert-image-small.png insert-link-small.png insert-smiley-small.png pause.png text_bigger.png text_normal.png text_smaller.png send-im.png
| |
| | -pidginiconpixdir = $(datadir)/pixmaps/pidgin/icons
| | -pidginiconpix_DATA = window-icon.png
| | -
| | pidgindistpixdir = $(datadir)/pixmaps/pidgin
| | pidgindistpix_DATA = logo.png tb_drag_arrow_down.xpm tb_drag_arrow_left.xpm tb_drag_arrow_right.xpm tb_drag_arrow_up.xpm typed.png typing.png status-online.png status-offline.png status-away.png status-invisible.png status-typing0.png status-typing1.png status-typing2.png status-typing3.png status-connect0.png status-connect1.png status-connect2.png status-connect3.png phone.png insert-image.png
| |
To get the patch for this revision, please do this:
mtn log --last 1 --diffs --from 2f1651281b005e491a46cfe1f4375dfca49b0376
More information about the Commits
mailing list