Add new deluge icons and update icon generation script
39
deluge/scripts/create_deluge_pngs
Executable file
|
@ -0,0 +1,39 @@
|
|||
#!/bin/bash
|
||||
|
||||
# A script to convert the Deluge svg icons to png.
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
data_dir="$DIR/../ui/data"
|
||||
|
||||
# Create deluge png icon pack for all sizes.
|
||||
for size in 16 22 24 32 36 48 64 72 96 128 192 256; do
|
||||
mkdir -p $data_dir/icons/hicolor/${size}x${size}/apps
|
||||
in_svg=$data_dir/pixmaps/deluge.svg
|
||||
out_png=$data_dir/icons/hicolor/${size}x${size}/apps/deluge.png
|
||||
rsvg-convert -w ${size} -h ${size} -o $out_png $in_svg; done
|
||||
|
||||
# Create deluge.ico icon from pngs.
|
||||
for size in 16 32 64 128 256; do
|
||||
ico_infiles+="$data_dir/icons/hicolor/${size}x${size}/apps/deluge.png "; done
|
||||
convert $ico_infiles $data_dir/pixmaps/deluge.ico
|
||||
|
||||
# Copy of deluge.svg to icon pack.
|
||||
mkdir -p $data_dir/icons/hicolor/scalable/apps/
|
||||
cp $data_dir/pixmaps/deluge.svg $data_dir/icons/hicolor/scalable/apps/deluge.svg
|
||||
|
||||
# Create 48px deluge.png.
|
||||
rsvg-convert -w 48 -h 48 -o $data_dir/pixmaps/deluge.png $data_dir/pixmaps/deluge.svg
|
||||
|
||||
# Create 16px png from deluge and status svgs.
|
||||
for file in $data_dir/pixmaps/*.svg; do
|
||||
rsvg-convert -w 16 -h 16 -o ${file%.*}16.png $file; done
|
||||
|
||||
# Copy 16px deluge and status pngs to webui icons folder.
|
||||
for icon in $data_dir/pixmaps/*16.png; do
|
||||
iconname=$(basename $icon)
|
||||
cp $icon $data_dir/../web/icons/${iconname::-6}.png; done
|
||||
rm $data_dir/../web/icons/tracker*.png
|
||||
|
||||
# Create apple and android touch icons with background colour.
|
||||
rsvg-convert -w 192 -h 192 -b '#abcdf7' -o $data_dir/../web/icons/deluge-android-192.png $data_dir/pixmaps/deluge.svg
|
||||
rsvg-convert -w 180 -h 180 -b '#abcdf7' -o $data_dir/../web/icons/deluge-apple-180.png $data_dir/pixmaps/deluge.svg
|
|
@ -1,9 +0,0 @@
|
|||
#!/bin/bash
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
data_dir="$DIR/../ui/data"
|
||||
for size in 16 22 24 32 36 48 64 72 96 128 192 256; do
|
||||
mkdir -p $data_dir/icons/hicolor/${size}x${size}/apps;
|
||||
rsvg-convert -w ${size} -h ${size} -o $data_dir/icons/hicolor/${size}x${size}/apps/deluge.png $data_dir/pixmaps/deluge.svg;
|
||||
mkdir -p $data_dir/icons/hicolor/scalable/apps/;
|
||||
cp $data_dir/pixmaps/deluge.svg $data_dir/icons/hicolor/scalable/apps/deluge.svg;
|
||||
done
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 700 B After Width: | Height: | Size: 610 B |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 8.5 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 867 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 975 B |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 2.2 KiB |
BIN
deluge/ui/data/icons/hicolor/512x512/apps/deluge.png
Normal file
After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 6 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 4.3 KiB |
|
@ -1,8 +1,9 @@
|
|||
<?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:cc="http://creativecommons.org/ns#"
|
||||
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"
|
||||
|
@ -13,16 +14,32 @@
|
|||
height="48px"
|
||||
id="svg3440"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45"
|
||||
sodipodi:docbase="/home/zach/deluge/trunk"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="deluge.svg"
|
||||
inkscape:export-filename="/home/zach/deluge.png"
|
||||
inkscape:export-xdpi="480"
|
||||
inkscape:export-ydpi="480"
|
||||
inkscape:export-xdpi="960"
|
||||
inkscape:export-ydpi="960"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="TRUE">
|
||||
sodipodi:modified="TRUE"
|
||||
version="1.1"
|
||||
inkscape:export-filename="/home/calum/projects/deluge-logo/deluge.512.w.png">
|
||||
<defs
|
||||
id="defs3">
|
||||
<color-profile
|
||||
name="sRGB"
|
||||
xlink:href="/usr/share/color/icc/sRGB.icc"
|
||||
id="color-profile4484" />
|
||||
<linearGradient
|
||||
id="linearGradient4345"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4347"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4349"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2973">
|
||||
|
@ -169,108 +186,161 @@
|
|||
id="linearGradient4989">
|
||||
<stop
|
||||
id="stop4991"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;" />
|
||||
offset="0"
|
||||
style="stop-color:#47abff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4993"
|
||||
offset="0.15517241"
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;" />
|
||||
offset="0.35955963"
|
||||
style="stop-color:#53a6ff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4995"
|
||||
offset="0.75000000"
|
||||
style="stop-color:#4074ae;stop-opacity:1.0000000;" />
|
||||
offset="0.79518169"
|
||||
style="stop-color:#286cbb;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4997"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#36486c;stop-opacity:1.0000000;" />
|
||||
offset="1"
|
||||
style="stop-color:#003d87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4977">
|
||||
<stop
|
||||
id="stop4979"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4981"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.16494845;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4825"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4827"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4829"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4114"
|
||||
id="radialGradient6090"
|
||||
xlink:href="#linearGradient4345"
|
||||
id="radialGradient5878"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(1.64399,0.608276)"
|
||||
cx="15.115514"
|
||||
cy="63.965388"
|
||||
fx="15.115514"
|
||||
fy="63.965388"
|
||||
r="12.289036" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="radialGradient6098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="12.071323"
|
||||
cy="12.493138"
|
||||
fx="12.071323"
|
||||
fy="12.493138"
|
||||
r="6.7175145" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient6103"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.25463,-0.898371,0.979785,0.277703,-18.00903,32.03312)"
|
||||
cx="17.903898"
|
||||
cy="40.159222"
|
||||
fx="17.903898"
|
||||
fy="40.159222"
|
||||
gradientTransform="matrix(0.56833945,-0.14774444,0.12240592,0.69984003,9.8157812,6.7018745)"
|
||||
cx="11.707551"
|
||||
cy="36.527763"
|
||||
fx="11.707551"
|
||||
fy="36.527763"
|
||||
r="14.33681" />
|
||||
<filter
|
||||
id="filter6406"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000000000000002"
|
||||
x="-0.050000000000000017">
|
||||
<feFlood
|
||||
id="feFlood6408"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
k1="8.1400000000000006"
|
||||
k2="4.9299999999999997"
|
||||
k3="5.5899999999999999"
|
||||
k4="-7.2400000000000002" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur"
|
||||
in="composite" />
|
||||
<feOffset
|
||||
id="feOffset6414"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4258">
|
||||
<feFlood
|
||||
flood-opacity="0.80200501253132828"
|
||||
flood-color="rgb(197,204,222)"
|
||||
result="flood"
|
||||
id="feFlood4260" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4262"
|
||||
flood-opacity="0.80000000000000004" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.5"
|
||||
result="blur"
|
||||
id="feGaussianBlur4264" />
|
||||
<feOffset
|
||||
dx="-0"
|
||||
dy="-0.5"
|
||||
result="offset"
|
||||
id="feOffset4266" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4268" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter4290"
|
||||
inkscape:label="Drop Shadow"
|
||||
style="color-interpolation-filters:sRGB;">
|
||||
<feFlood
|
||||
id="feFlood4292"
|
||||
result="flood"
|
||||
flood-color="rgb(255,255,255)"
|
||||
flood-opacity="0.59999999999999998" />
|
||||
<feComposite
|
||||
id="feComposite4294"
|
||||
result="composite1"
|
||||
operator="in"
|
||||
in2="SourceGraphic"
|
||||
in="flood" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4296"
|
||||
result="blur"
|
||||
stdDeviation="6.7999999999999998"
|
||||
in="composite1" />
|
||||
<feOffset
|
||||
id="feOffset4298"
|
||||
result="offset"
|
||||
dy="1.9000000000000004"
|
||||
dx="0.69999999999999996"
|
||||
flood-opacity="0.68000000000000005" />
|
||||
<feComposite
|
||||
id="feComposite4300"
|
||||
result="composite2"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient6106"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.583269,-0.431533,0.577146,0.78008,-5.80022,4.004109)"
|
||||
cx="12.525543"
|
||||
cy="38.09042"
|
||||
fx="12.525543"
|
||||
fy="38.09042"
|
||||
r="14.33681" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1312"
|
||||
id="radialGradient6109"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.768231,1.13675,-0.820972,0.554824,-3.72248,-85.07126)"
|
||||
cx="65.800331"
|
||||
cy="27.16758"
|
||||
fx="65.800331"
|
||||
fy="27.16758"
|
||||
r="12.972491" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4989"
|
||||
id="radialGradient6115"
|
||||
cx="16.651781"
|
||||
cy="32.187485"
|
||||
fx="16.651781"
|
||||
fy="32.187485"
|
||||
r="17.089519"
|
||||
gradientTransform="matrix(1.486175,-1.536108,0.932321,0.902016,-38.10476,31.42646)"
|
||||
xlink:href="#linearGradient4977"
|
||||
id="radialGradient4375"
|
||||
cx="19.015932"
|
||||
cy="19.611181"
|
||||
fx="19.015932"
|
||||
fy="19.611181"
|
||||
r="15.627373"
|
||||
gradientTransform="matrix(-0.21582873,1.1173231,-1.0803619,-0.20155681,42.177326,-6.1234)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
|
@ -280,18 +350,102 @@
|
|||
borderopacity="0.17254902"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="36.250498"
|
||||
inkscape:cy="38.275489"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="19.685853"
|
||||
inkscape:cx="26.317146"
|
||||
inkscape:cy="24.429162"
|
||||
inkscape:current-layer="g4476"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1266"
|
||||
inkscape:window-height="944"
|
||||
inkscape:window-x="124"
|
||||
inkscape:window-y="52"
|
||||
inkscape:showpageshadow="false" />
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
width="512px"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="4.331,47"
|
||||
id="guide3056"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(99,99,125)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="24,41.875"
|
||||
id="guide3058"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="40,25.375"
|
||||
id="guide5866" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="34.626135,29.742679"
|
||||
id="guide5868" />
|
||||
<sodipodi:guide
|
||||
position="3.8890873,1"
|
||||
orientation="0,1"
|
||||
id="guide4521"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(106,106,146)" />
|
||||
<sodipodi:guide
|
||||
position="1,17.324"
|
||||
orientation="1,0"
|
||||
id="guide4523"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(152,152,181)" />
|
||||
<sodipodi:guide
|
||||
position="47,33.852737"
|
||||
orientation="1,0"
|
||||
id="guide4525"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(121,121,172)" />
|
||||
<sodipodi:guide
|
||||
position="13.433908,46"
|
||||
orientation="0,1"
|
||||
id="guide4527"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,40,0)" />
|
||||
<sodipodi:guide
|
||||
position="8,36.135"
|
||||
orientation="1,0"
|
||||
id="guide4529"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,11,0)" />
|
||||
<sodipodi:guide
|
||||
position="40,26.436782"
|
||||
orientation="1,0"
|
||||
id="guide4531"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,6,0)" />
|
||||
<sodipodi:guide
|
||||
position="34.052,2"
|
||||
orientation="0,1"
|
||||
id="guide4533"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,0,5)" />
|
||||
<sodipodi:guide
|
||||
position="36.879276,26"
|
||||
orientation="0,1"
|
||||
id="guide4542"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="43.660795,14.731391"
|
||||
orientation="0,1"
|
||||
id="guide4546" />
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4297" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
|
@ -300,7 +454,7 @@
|
|||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Internet Category</dc:title>
|
||||
<dc:title />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
|
@ -343,60 +497,111 @@
|
|||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#4c90e8;fill-opacity:1;fill-rule:evenodd;stroke:#094491;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;"
|
||||
d="M 23.295622,2.4822833 35.490217,21.297229 C 43.30243,33.350632 35.08691,46.383433 23.287956,46.383433 11.489002,46.383433 3.2602089,33.346045 11.079504,21.30073 Z"
|
||||
id="path2069"
|
||||
sodipodi:nodetypes="cszsc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.90726715,0,0,0.89972834,2.9383017,2.518482)" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="wave fill"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="display:inline;fill:#094491;fill-opacity:1;fill-rule:evenodd;stroke-width:0.40552941;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 28.01172,24.438174 c -6.049549,-2.467385 -9.223551,3.836132 -8.214423,6.781163 2.195546,6.407462 10.475363,8.011557 16.589599,-2.66134 0,0 0.06518,1.28803 0.129838,1.900859 0.82106,7.781844 -5.723522,12.735535 -12.354975,12.638715 -6.631454,-0.09682 -8.657036,-2.672368 -10.611083,-5.637583 -3.170275,-4.810809 -2.37899,-12.648153 1.883276,-16.313692 4.864733,-4.020883 10.220622,-1.874329 12.577768,3.291878 z"
|
||||
id="path2969"
|
||||
sodipodi:nodetypes="cscszscc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="display:none"
|
||||
inkscape:label="wave fill light"
|
||||
id="g4327"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:url(#radialGradient6090);fill-opacity:1;stroke:none;stroke-opacity:1"
|
||||
id="path4112"
|
||||
sodipodi:cx="24.849752"
|
||||
sodipodi:cy="38.908627"
|
||||
sodipodi:rx="20.203051"
|
||||
sodipodi:ry="7.4751287"
|
||||
d="M 45.052803 38.908627 A 20.203051 7.4751287 0 1 1 4.6467018,38.908627 A 20.203051 7.4751287 0 1 1 45.052803 38.908627 z"
|
||||
transform="matrix(0.947409,0,0,1.17786,1.244375,-6.853427)"
|
||||
inkscape:export-xdpi="480"
|
||||
inkscape:export-ydpi="480" />
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cscszscc"
|
||||
id="path4329"
|
||||
d="m 24.811452,24.996951 c -6.049549,-2.467385 -7.648816,3.683738 -6.639688,6.628769 2.195546,6.407462 11.948502,7.605174 18.062738,-3.067723 0,0 0.11598,1.28803 0.180639,1.900859 0.82106,7.781844 -5.621926,12.735535 -12.253379,12.638715 -6.631454,-0.09682 -8.657036,-2.672368 -10.611083,-5.637583 -3.170275,-4.810809 -2.429788,-11.327408 1.78168,-14.840553 4.864733,-3.959831 8.798281,-0.09585 9.479093,2.377516 z"
|
||||
style="display:inline;fill:#99c3f9;fill-opacity:1;fill-rule:evenodd;stroke-width:0.40552941;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer6"
|
||||
inkscape:label="wave stroke 1.3px and fill "
|
||||
style="display:none">
|
||||
<path
|
||||
style="fill:url(#radialGradient6115);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 23.942923,0.9561338 L 37.330543,18.266721 C 46.998995,29.84687 41.49692,43.923891 26.7742,45.000491 C 6.0597413,45.582655 6.5086231,27.37483 11.255313,18.609381 L 23.942923,0.9561338 z "
|
||||
id="path2069"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
style="display:inline;fill:#99c3f9;fill-opacity:1;fill-rule:evenodd;stroke:#094491 icc-color(sRGB, 0.18046845, 0.27837034, 0.41960784);stroke-width:1.33399999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 23.761543,24.179576 c -6.481311,-1.72424 -6.932125,6.183803 -5.453851,8.969604 2.408248,4.538333 12.206251,5.377175 17.706883,-3.282742 0,0 0.07651,2.193563 0.02062,2.77892 -0.534334,5.596549 -6.848986,9.789262 -11.999526,9.621298 -5.243605,-0.170999 -8.282469,-2.549917 -10.154056,-5.379263 -3.036492,-4.590373 -2.048612,-10.811985 1.554101,-13.80496 4.248899,-3.646516 7.44994,-0.562347 8.325827,1.097143 z"
|
||||
id="path2969-6"
|
||||
sodipodi:nodetypes="cscssscc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="display:none"
|
||||
inkscape:label="wave stroke 2px and fill "
|
||||
id="g4217"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:#1b4075;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 35.111358,26.143133 C 28.972772,13.030586 17.560684,17.697957 17.274449,26.949974 C 16.894738,39.223415 34.748874,37.615429 36.715244,41.468778 C 28.821643,47.675479 14.973233,45.226508 10.962289,39.715204 C 6.9574776,34.212326 7.2383598,25.630263 10.784249,19.587632 C 24.158625,0.978654 39.749127,24.383766 35.111358,26.143133 z "
|
||||
id="path2969"
|
||||
sodipodi:nodetypes="cscscc" />
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cscssscc"
|
||||
id="path4219"
|
||||
d="m 23.507553,23.925586 c -6.495438,-1.064032 -6.790118,6.421446 -5.149063,9.579179 2.304561,4.434459 10.903063,6.282759 17.3005,-2.825561 0,0 -0.02509,1.990372 -0.08098,2.575729 -0.534334,5.596549 -6.391805,8.925697 -11.542345,8.757733 -5.243605,-0.170999 -8.247979,-2.119778 -10.001662,-5.023677 -2.772156,-4.590373 -2.467304,-9.592836 0.487345,-12.585811 3.100966,-3.879425 7.831125,-2.714919 8.986201,-0.477592 z"
|
||||
style="display:inline;fill:#99c3f9;fill-opacity:1;fill-rule:evenodd;stroke:#094491 icc-color(sRGB, 0.18046845, 0.27837034, 0.41960784);stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="gradient inner wave "
|
||||
style="display:none">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.1000706;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022"
|
||||
d="M 23.996861,3.5433428 L 36.057351,19.151045 C 44.769741,29.58253 39.419346,42.414092 26.125181,43.508521 C 7.3917365,44.015286 7.4275065,28.119221 12.17284,20.333442 L 23.996861,3.5433428 z "
|
||||
id="path2071"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.46;fill:url(#radialGradient6109);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 23.940758,0.96491709 L 34.727367,14.909752 C 42.647208,24.392311 40.447304,20.283975 28.362481,21.278846 C 25.083165,11.203805 18.13871,11.859899 13.523802,15.675236 L 23.940758,0.96491709 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient6106);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 35.159701,26.173667 C 29.021115,13.06112 18.734027,17.978491 18.447792,27.230508 C 18.068081,39.503949 34.797217,37.645963 36.763587,41.499312 C 28.869986,47.706013 15.021576,45.257042 11.010632,39.745738 C 7.0058197,34.24286 7.2867027,25.660797 10.832592,19.618166 C 24.206968,1.0091879 39.79747,24.4143 35.159701,26.173667 z "
|
||||
style="fill:url(#radialGradient5878);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 23.55546,23.805666 c -6.490966,-1.345852 -7.700279,4.84717 -6.759909,8.059555 1.100923,3.760845 4.033145,7.507508 11.754513,5.50458 -3.268904,5.846892 -11.255492,4.570412 -13.940353,0.387138 -2.563055,-3.993493 -2.992402,-9.05746 -1.115519,-11.776277 4.049097,-6.655711 9.485026,-4.029293 10.061268,-2.174996 z"
|
||||
id="path3868"
|
||||
sodipodi:nodetypes="cscscc" />
|
||||
sodipodi:nodetypes="cscscc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:label="solid inner wavelet small"
|
||||
id="g4476"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:url(#radialGradient6103);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 35.120795,26.14195 C 28.553327,12.814962 15.685968,17.224233 15.399733,26.47625 C 15.020022,38.749691 32.874158,37.141705 34.840528,40.995054 C 26.946927,47.201755 13.098517,44.752784 9.0875727,39.24148 C 5.0827617,33.738602 5.3636437,25.156539 8.9095327,19.113908 C 22.315509,0.47615954 40.03233,23.660113 35.120795,26.14195 z "
|
||||
id="path4874"
|
||||
sodipodi:nodetypes="cscscc" />
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cscszc"
|
||||
id="path4478"
|
||||
d="m 24.212222,22.108293 c -6.775814,0.165164 -8.06207,7.974188 -6.185196,11.319336 2.609273,4.6505 6.568198,5.544881 11.985838,3.82825 -3.093408,3.363649 -9.442162,4.253857 -13.754465,-0.550821 -2.967234,-3.306031 -3.226596,-7.920245 -1.167373,-11.773724 2.059223,-3.853479 6.165286,-4.924896 9.121196,-2.823041 z"
|
||||
style="fill:#83b8f9;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g4486"
|
||||
inkscape:label="solid inner wavelet larger"
|
||||
style="display:none">
|
||||
<path
|
||||
transform="matrix(-0.829136,1.052307,1.239307,7.58326e-2,26.32898,25.58605)"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
d="M 18.788838 12.493138 A 6.7175145 6.7175145 0 1 1 5.3538089,12.493138 A 6.7175145 6.7175145 0 1 1 18.788838 12.493138 z"
|
||||
sodipodi:ry="6.7175145"
|
||||
sodipodi:rx="6.7175145"
|
||||
sodipodi:cy="12.493138"
|
||||
sodipodi:cx="12.071323"
|
||||
id="path4941"
|
||||
style="opacity:0.21999996;color:black;fill:url(#radialGradient6098);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;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"
|
||||
sodipodi:type="arc" />
|
||||
style="fill:#99c3f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 21.55277,22.974939 c -5.188765,1.005551 -6.173294,6.973638 -4.694095,10.155871 2.191227,4.714034 8.449957,8.07696 17.664862,0.691234 -5.828901,10.827975 -14.873199,7.043001 -17.313798,4.977307 -1.97159,-1.66873 -4.164846,-4.855384 -4.11832,-8.341257 0.09522,-7.134172 6.604293,-9.266569 8.461351,-7.483155 z"
|
||||
id="path4488"
|
||||
sodipodi:nodetypes="cscssc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Finish"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="display:inline;opacity:0.68800001;fill:url(#radialGradient4375);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.01508224;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 23.956644,1.939572 -11.98159,18.384686 c -3.9618093,5.166305 -3.6931007,11.439356 -2.4054307,15.8855 5.3079527,10.817522 14.5668877,9.659123 14.5668877,9.659123 0,0 6.868403,-0.005 11.475831,-5.120874 2.283123,-2.535051 5.325726,-9.801674 2.662706,-16.234991 -0.49634,-1.028711 -3.75284,-6.551522 -4.429455,-7.554788 z"
|
||||
id="path4279"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccsccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 21 KiB |
|
@ -1,150 +1,612 @@
|
|||
<?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://creativecommons.org/ns#"
|
||||
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="744.09448819"
|
||||
height="1052.3622047"
|
||||
id="svg4848"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3440"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/active16.png"
|
||||
inkscape:export-xdpi="1.7055545"
|
||||
inkscape:export-ydpi="1.7055545"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="active.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
inkscape:export-xdpi="30"
|
||||
inkscape:export-ydpi="30"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="TRUE"
|
||||
version="1.1"
|
||||
inkscape:export-filename="/home/calum/projects/deluge-logo/deluge_download16svg.png">
|
||||
<defs
|
||||
id="defs4850">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 526.18109 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||
id="perspective4856" />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath5467">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.69776249;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 792.51261,596.13496 C 1787.1961,462.38583 1788.2786,460.03989 1788.2786,460.03989 L 2050.3447,889.51678 C 1692.1626,1024.6476 1428.8778,1128.1462 1119.6165,1246.9702 L 792.51261,596.13496 z"
|
||||
id="path5469"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath5471">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.69776249;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 792.51261,596.13496 C 1787.1961,462.38583 1788.2786,460.03989 1788.2786,460.03989 L 2050.3447,889.51678 C 1692.1626,1024.6476 1428.8778,1128.1462 1119.6165,1246.9702 L 792.51261,596.13496 z"
|
||||
id="path5473"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath5475">
|
||||
<path
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.69776249;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 792.51261,596.13496 C 1787.1961,462.38583 1788.2786,460.03989 1788.2786,460.03989 L 2050.3447,889.51678 C 1692.1626,1024.6476 1428.8778,1128.1462 1119.6165,1246.9702 L 792.51261,596.13496 z"
|
||||
id="path5477"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</clipPath>
|
||||
id="defs3">
|
||||
<color-profile
|
||||
name="sRGB"
|
||||
xlink:href="/usr/share/color/icc/sRGB.icc"
|
||||
id="color-profile4484" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2973">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2975" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2977" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4126">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4128" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.16494845;"
|
||||
offset="1.0000000"
|
||||
id="stop4130" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4114">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4116" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4118" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3962">
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3964" />
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.15517241"
|
||||
id="stop4134" />
|
||||
<stop
|
||||
style="stop-color:#4074ae;stop-opacity:1.0000000;"
|
||||
offset="0.75000000"
|
||||
id="stop4346" />
|
||||
<stop
|
||||
style="stop-color:#36486c;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3966" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="13.994944"
|
||||
fy="33.506763"
|
||||
fx="-10.089286"
|
||||
cy="33.506763"
|
||||
cx="-10.089286"
|
||||
gradientTransform="matrix(1,0,0,0.791446,-14.01786,-11.28667)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4019"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
gradientTransform="matrix(1,0,0,0.792374,-19.58761,2.818569)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4004"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.792374,0,6.785475)"
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
id="radialGradient3999"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.341185,-0.153831,1.08001,2.395374,-15.42222,-25.62103)"
|
||||
r="13.994946"
|
||||
fy="24.241488"
|
||||
fx="61.662098"
|
||||
cy="24.241488"
|
||||
cx="61.662098"
|
||||
id="radialGradient3943"
|
||||
xlink:href="#linearGradient1312"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient1312">
|
||||
<stop
|
||||
id="stop1314"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop1316"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3993">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3995" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop3997" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient3866"
|
||||
cx="-22.375"
|
||||
cy="18.499998"
|
||||
fx="-22.375"
|
||||
fy="18.499998"
|
||||
r="14.33462"
|
||||
gradientTransform="matrix(1,0,0,1.140022,40.17678,1.347091)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="12.289036"
|
||||
fy="63.965388"
|
||||
fx="15.115514"
|
||||
cy="63.965388"
|
||||
cx="15.115514"
|
||||
gradientTransform="scale(1.643990,0.608276)"
|
||||
id="radialGradient5000"
|
||||
xlink:href="#linearGradient4114"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4989">
|
||||
<stop
|
||||
id="stop4991"
|
||||
offset="0"
|
||||
style="stop-color:#47abff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4993"
|
||||
offset="0.35955963"
|
||||
style="stop-color:#53a6ff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4995"
|
||||
offset="0.79518169"
|
||||
style="stop-color:#286cbb;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4997"
|
||||
offset="1"
|
||||
style="stop-color:#003d87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4977">
|
||||
<stop
|
||||
id="stop4979"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4981"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
id="filter6406"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000000000000002"
|
||||
x="-0.050000000000000017">
|
||||
<feFlood
|
||||
id="feFlood6408"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
k1="8.1400000000000006"
|
||||
k2="4.9299999999999997"
|
||||
k3="5.5899999999999999"
|
||||
k4="-7.2400000000000002" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur"
|
||||
in="composite" />
|
||||
<feOffset
|
||||
id="feOffset6414"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4258">
|
||||
<feFlood
|
||||
flood-opacity="0.80200501253132828"
|
||||
flood-color="rgb(197,204,222)"
|
||||
result="flood"
|
||||
id="feFlood4260" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4262"
|
||||
flood-opacity="0.80000000000000004" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.5"
|
||||
result="blur"
|
||||
id="feGaussianBlur4264" />
|
||||
<feOffset
|
||||
dx="-0"
|
||||
dy="-0.5"
|
||||
result="offset"
|
||||
id="feOffset4266" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4268" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter4290"
|
||||
inkscape:label="Drop Shadow"
|
||||
style="color-interpolation-filters:sRGB;">
|
||||
<feFlood
|
||||
id="feFlood4292"
|
||||
result="flood"
|
||||
flood-color="rgb(255,255,255)"
|
||||
flood-opacity="0.59999999999999998" />
|
||||
<feComposite
|
||||
id="feComposite4294"
|
||||
result="composite1"
|
||||
operator="in"
|
||||
in2="SourceGraphic"
|
||||
in="flood" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4296"
|
||||
result="blur"
|
||||
stdDeviation="6.7999999999999998"
|
||||
in="composite1" />
|
||||
<feOffset
|
||||
id="feOffset4298"
|
||||
result="offset"
|
||||
dy="1.9000000000000004"
|
||||
dx="0.69999999999999996"
|
||||
flood-opacity="0.68000000000000005" />
|
||||
<feComposite
|
||||
id="feComposite4300"
|
||||
result="composite2"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter6406-6"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000001"
|
||||
x="-0.050000001">
|
||||
<feFlood
|
||||
id="feFlood6408-0"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410-6"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412-2"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur" />
|
||||
<feOffset
|
||||
id="feOffset6414-6"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416-1"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.17254902"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.5"
|
||||
inkscape:cx="798.86898"
|
||||
inkscape:cy="436.74575"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="23.537703"
|
||||
inkscape:cy="24.61952"
|
||||
inkscape:current-layer="layer5"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="958"
|
||||
inkscape:window-x="1280"
|
||||
inkscape:window-y="0" />
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
width="512px"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="4.331,47"
|
||||
id="guide3056"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(99,99,125)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="23.9375,24.5625"
|
||||
id="guide3058"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="40,25.375"
|
||||
id="guide5866" />
|
||||
<sodipodi:guide
|
||||
position="3.8890873,1"
|
||||
orientation="0,1"
|
||||
id="guide4521"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(106,106,146)" />
|
||||
<sodipodi:guide
|
||||
position="1,17.324"
|
||||
orientation="1,0"
|
||||
id="guide4523"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(152,152,181)" />
|
||||
<sodipodi:guide
|
||||
position="47,33.852737"
|
||||
orientation="1,0"
|
||||
id="guide4525"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(121,121,172)" />
|
||||
<sodipodi:guide
|
||||
position="13.433908,46"
|
||||
orientation="0,1"
|
||||
id="guide4527"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,40,0)" />
|
||||
<sodipodi:guide
|
||||
position="8,36.135"
|
||||
orientation="1,0"
|
||||
id="guide4529"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,11,0)" />
|
||||
<sodipodi:guide
|
||||
position="40,26.436782"
|
||||
orientation="1,0"
|
||||
id="guide4531"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,6,0)" />
|
||||
<sodipodi:guide
|
||||
position="34.052,2"
|
||||
orientation="0,1"
|
||||
id="guide4533"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,0,5)" />
|
||||
<sodipodi:guide
|
||||
position="36.879276,26"
|
||||
orientation="0,1"
|
||||
id="guide4542"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="43.660795,14.731391"
|
||||
orientation="0,1"
|
||||
id="guide4546" />
|
||||
<sodipodi:guide
|
||||
position="21.25,21"
|
||||
orientation="0,1"
|
||||
id="guide4229" />
|
||||
<sodipodi:guide
|
||||
position="35.84375,19.53125"
|
||||
orientation="0,1"
|
||||
id="guide5116" />
|
||||
<sodipodi:guide
|
||||
position="30.21875,22.46875"
|
||||
orientation="0,1"
|
||||
id="guide5118" />
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4217" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4853">
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Tuomas Kuosmanen</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>internet</rdf:li>
|
||||
<rdf:li>tools</rdf:li>
|
||||
<rdf:li>applications</rdf:li>
|
||||
<rdf:li>category</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1"
|
||||
inkscape:label="base droplet"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
style="opacity:1"
|
||||
id="g4871">
|
||||
<path
|
||||
inkscape:export-ydpi="1.7060417"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path2069"
|
||||
d="M 335.10794,116.43168 L 610.53935,447.76408 C 809.45408,669.41324 696.25675,938.85368 393.35753,959.46028 C -32.813273,970.60316 -9.7709676,623.52458 107.82928,464.31364 L 335.10794,116.43168 z"
|
||||
style="fill:#5599ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:export-ydpi="1.7060417"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path2071"
|
||||
d="M 337.67292,165.87552 L 585.22638,464.67366 C 773.96211,684.57988 653.37942,910.02774 383.88559,930.97978 C 4.1291863,940.68143 29.040179,639.21796 125.2355,490.1649 L 337.67292,165.87552 z"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:21.67123985;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022" />
|
||||
<path
|
||||
inkscape:export-ydpi="1.7060417"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
id="rect2634"
|
||||
d="M 359.0208,369.47132 C 289.64507,437.53055 219.98727,505.41409 150.61154,573.47313 C 187.93874,573.54143 225.35922,573.40503 262.68661,573.47313 C 262.68661,654.06643 262.68661,734.65974 262.68661,815.25304 C 329.00806,815.25304 395.32971,815.25304 461.65134,815.25304 C 461.65134,734.86969 461.65134,654.48632 461.65134,574.10276 C 496.04273,574.16582 530.52013,574.0399 564.91152,574.10276 C 496.30183,505.79126 427.63028,437.78301 359.0208,369.47132 z"
|
||||
style="fill:#93beff;fill-opacity:1;stroke:#000000;stroke-width:14.10382843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
style="display:none">
|
||||
<path
|
||||
style="fill:#8dd35f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 1211.4629,48.95108 L 1486.8943,380.28348 C 1685.809,601.93264 1572.6117,871.37308 1269.7125,891.97968 C 843.5417,903.12256 866.584,556.04398 984.1842,396.83304 L 1211.4629,48.95108 z"
|
||||
id="path4864"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417"
|
||||
clip-path="url(#clipPath5475)"
|
||||
transform="translate(-876,68)" />
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#129b00;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6406)"
|
||||
d="M 23.295622,2.4822833 35.490217,21.297229 C 43.30243,33.350632 35.08691,46.383433 23.287956,46.383433 11.489002,46.383433 3.2602089,33.346045 11.079504,21.30073 Z"
|
||||
id="path2069"
|
||||
sodipodi:nodetypes="cszsc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.90726715,0,0,0.89972834,2.9383017,2.518482)" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="base droplet copy 1"
|
||||
style="display:none" />
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="base droplet copy"
|
||||
id="g4225">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:21.67123985;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022"
|
||||
d="M 1214.0279,98.39492 L 1461.5813,397.19306 C 1650.317,617.09928 1529.7344,842.54714 1260.2405,863.49918 C 880.4842,873.20083 905.3951,571.73736 1001.5905,422.6843 L 1214.0279,98.39492 z"
|
||||
id="path4866"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417"
|
||||
clip-path="url(#clipPath5471)"
|
||||
transform="translate(-876,68)" />
|
||||
transform="matrix(0.90726715,0,0,0.89972834,2.9383017,2.518482)"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csscc"
|
||||
id="path4227"
|
||||
d="m 38.395387,28.809989 c 1.339184,9.392872 -5.759479,17.573444 -15.107431,17.573444 -5.899477,0 -10.906414,-3.259347 -13.4610694,-8.024358 C 8.3379994,35.581962 7.7795043,32.31798 8.1679076,28.840613 Z"
|
||||
style="display:inline;fill:#16c816;fill-opacity:1;fill-rule:evenodd;stroke:#129b00;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#b7e399;fill-opacity:1;stroke:#000000;stroke-width:14.1288912;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 1235.158,785.66485 C 1165.4485,716.69801 1095.4555,647.90922 1025.7459,578.94258 C 1063.2527,578.87336 1100.8533,579.01159 1138.3603,578.94258 C 1138.3603,497.27453 1138.3603,415.60647 1138.3603,333.93841 C 1205.0008,333.93841 1271.6416,333.93841 1338.2823,333.93841 C 1338.2823,415.39371 1338.2823,496.84903 1338.2823,578.30455 C 1372.8392,578.24065 1407.4825,578.36825 1442.0394,578.30455 C 1373.0995,647.52701 1304.0976,716.44219 1235.158,785.66485 z"
|
||||
id="path4868"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417"
|
||||
clip-path="url(#clipPath5467)"
|
||||
transform="matrix(0.9958235,0,0,1.0000914,-871.02338,67.589213)" />
|
||||
style="display:inline;fill:#6699ff;fill-opacity:1;fill-rule:evenodd;stroke:#3366cc;stroke-width:2.96343851;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 24.073654,4.7518625 35.13741,21.680202 c 0.830822,1.271218 1.561747,2.541942 1.952222,3.843334 l -26.064146,0.03312 c 0.398283,-1.282502 1.126319,-2.592255 1.964886,-3.8733 z"
|
||||
id="path2069-8"
|
||||
sodipodi:nodetypes="csccsc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:#16c816;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 36.879847,27.238166 C 38.115698,38.19401 31.666974,44.823427 23.184624,44.750996 14.702274,44.678564 8.2127922,37.110525 9.6490039,27.219671 Z"
|
||||
id="path4228"
|
||||
sodipodi:nodetypes="czcc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.90726715,0,0,0.89972834,2.9383017,2.518482)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccsc"
|
||||
id="path4239"
|
||||
d="M 24.011154,7.3143625 33.51241,21.805202 c 0.832698,1.26999 2.522684,3.932567 2.920972,5.249584 l -24.751646,-0.02935 c 0.398283,-1.282502 2.041931,-3.742425 2.871136,-5.02955 z"
|
||||
style="display:inline;fill:#6699ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.96343851;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="seed/download icon"
|
||||
style="display:inline">
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#005000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path5039"
|
||||
sodipodi:sides="3"
|
||||
sodipodi:cx="23.9375"
|
||||
sodipodi:cy="21.1875"
|
||||
sodipodi:r1="4.6958261"
|
||||
sodipodi:r2="2.347913"
|
||||
sodipodi:arg1="0.52359878"
|
||||
sodipodi:arg2="1.5707963"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 28.004205,23.535413 -4.066705,0 -4.066705,0 2.033353,-3.521869 2.033352,-3.52187 2.033352,3.521869 z"
|
||||
transform="matrix(-1.8442451,0,0,-0.99379036,68.146617,57.377998)"
|
||||
inkscape:transform-center-y="-1.1666696" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#0e2960;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4364-1-7-0"
|
||||
width="8.3000002"
|
||||
height="4.2000003"
|
||||
x="19.75"
|
||||
y="21.788212" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#005000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4364-1-7"
|
||||
width="8.3000002"
|
||||
height="4.2000003"
|
||||
x="-28.049999"
|
||||
y="-32.268642"
|
||||
transform="scale(-1,-1)" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="display:inline;opacity:1;fill:#0e2960;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path5039-2"
|
||||
sodipodi:sides="3"
|
||||
sodipodi:cx="23.9375"
|
||||
sodipodi:cy="21.1875"
|
||||
sodipodi:r1="4.6958261"
|
||||
sodipodi:r2="2.347913"
|
||||
sodipodi:arg1="0.52359878"
|
||||
sodipodi:arg2="1.5707963"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 28.004205,23.535413 -4.066705,0 -4.066705,0 2.033353,-3.521869 2.033352,-3.52187 2.033352,3.521869 z"
|
||||
inkscape:transform-center-y="-1.1666662"
|
||||
transform="matrix(1.8442451,0,0,0.99379036,-20.146617,-3.2560397)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 742 B After Width: | Height: | Size: 588 B |
|
@ -1,96 +1,512 @@
|
|||
<?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://creativecommons.org/ns#"
|
||||
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="744.09448819"
|
||||
height="1052.3622047"
|
||||
id="svg5684"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3440"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/alert16.png"
|
||||
inkscape:export-xdpi="1.7055545"
|
||||
inkscape:export-ydpi="1.7055545"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="alert.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
inkscape:export-xdpi="960"
|
||||
inkscape:export-ydpi="960"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="TRUE"
|
||||
version="1.1"
|
||||
inkscape:export-filename="/home/calum/projects/deluge-logo/deluge.512.x.png">
|
||||
<defs
|
||||
id="defs5686">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 526.18109 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||
id="perspective5692" />
|
||||
id="defs3">
|
||||
<color-profile
|
||||
name="sRGB"
|
||||
xlink:href="/usr/share/color/icc/sRGB.icc"
|
||||
id="color-profile4484" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2973">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2975" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2977" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4126">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4128" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.16494845;"
|
||||
offset="1.0000000"
|
||||
id="stop4130" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4114">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4116" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4118" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3962">
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3964" />
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.15517241"
|
||||
id="stop4134" />
|
||||
<stop
|
||||
style="stop-color:#4074ae;stop-opacity:1.0000000;"
|
||||
offset="0.75000000"
|
||||
id="stop4346" />
|
||||
<stop
|
||||
style="stop-color:#36486c;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3966" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="13.994944"
|
||||
fy="33.506763"
|
||||
fx="-10.089286"
|
||||
cy="33.506763"
|
||||
cx="-10.089286"
|
||||
gradientTransform="matrix(1,0,0,0.791446,-14.01786,-11.28667)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4019"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
gradientTransform="matrix(1,0,0,0.792374,-19.58761,2.818569)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4004"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.792374,0,6.785475)"
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
id="radialGradient3999"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.341185,-0.153831,1.08001,2.395374,-15.42222,-25.62103)"
|
||||
r="13.994946"
|
||||
fy="24.241488"
|
||||
fx="61.662098"
|
||||
cy="24.241488"
|
||||
cx="61.662098"
|
||||
id="radialGradient3943"
|
||||
xlink:href="#linearGradient1312"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient1312">
|
||||
<stop
|
||||
id="stop1314"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop1316"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3993">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3995" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop3997" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient3866"
|
||||
cx="-22.375"
|
||||
cy="18.499998"
|
||||
fx="-22.375"
|
||||
fy="18.499998"
|
||||
r="14.33462"
|
||||
gradientTransform="matrix(1,0,0,1.140022,40.17678,1.347091)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="12.289036"
|
||||
fy="63.965388"
|
||||
fx="15.115514"
|
||||
cy="63.965388"
|
||||
cx="15.115514"
|
||||
gradientTransform="scale(1.643990,0.608276)"
|
||||
id="radialGradient5000"
|
||||
xlink:href="#linearGradient4114"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4989">
|
||||
<stop
|
||||
id="stop4991"
|
||||
offset="0"
|
||||
style="stop-color:#47abff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4993"
|
||||
offset="0.35955963"
|
||||
style="stop-color:#53a6ff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4995"
|
||||
offset="0.79518169"
|
||||
style="stop-color:#286cbb;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4997"
|
||||
offset="1"
|
||||
style="stop-color:#003d87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4977">
|
||||
<stop
|
||||
id="stop4979"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4981"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
id="filter6406"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000000000000002"
|
||||
x="-0.050000000000000017">
|
||||
<feFlood
|
||||
id="feFlood6408"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
k1="8.1400000000000006"
|
||||
k2="4.9299999999999997"
|
||||
k3="5.5899999999999999"
|
||||
k4="-7.2400000000000002" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur"
|
||||
in="composite" />
|
||||
<feOffset
|
||||
id="feOffset6414"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4258">
|
||||
<feFlood
|
||||
flood-opacity="0.80200501253132828"
|
||||
flood-color="rgb(197,204,222)"
|
||||
result="flood"
|
||||
id="feFlood4260" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4262"
|
||||
flood-opacity="0.80000000000000004" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.5"
|
||||
result="blur"
|
||||
id="feGaussianBlur4264" />
|
||||
<feOffset
|
||||
dx="-0"
|
||||
dy="-0.5"
|
||||
result="offset"
|
||||
id="feOffset4266" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4268" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter4290"
|
||||
inkscape:label="Drop Shadow"
|
||||
style="color-interpolation-filters:sRGB;">
|
||||
<feFlood
|
||||
id="feFlood4292"
|
||||
result="flood"
|
||||
flood-color="rgb(255,255,255)"
|
||||
flood-opacity="0.59999999999999998" />
|
||||
<feComposite
|
||||
id="feComposite4294"
|
||||
result="composite1"
|
||||
operator="in"
|
||||
in2="SourceGraphic"
|
||||
in="flood" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4296"
|
||||
result="blur"
|
||||
stdDeviation="6.7999999999999998"
|
||||
in="composite1" />
|
||||
<feOffset
|
||||
id="feOffset4298"
|
||||
result="offset"
|
||||
dy="1.9000000000000004"
|
||||
dx="0.69999999999999996"
|
||||
flood-opacity="0.68000000000000005" />
|
||||
<feComposite
|
||||
id="feComposite4300"
|
||||
result="composite2"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.17254902"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="807.63627"
|
||||
inkscape:cy="520"
|
||||
inkscape:document-units="px"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="28.836938"
|
||||
inkscape:cy="22.782595"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="686"
|
||||
inkscape:window-height="711"
|
||||
inkscape:window-x="1395"
|
||||
inkscape:window-y="223" />
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
width="512px"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="4.331,47"
|
||||
id="guide3056"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(99,99,125)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="23.9375,24.5625"
|
||||
id="guide3058"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="40,25.375"
|
||||
id="guide5866" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="38.448931,29.742679"
|
||||
id="guide5868" />
|
||||
<sodipodi:guide
|
||||
position="3.8890873,1"
|
||||
orientation="0,1"
|
||||
id="guide4521"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(106,106,146)" />
|
||||
<sodipodi:guide
|
||||
position="1,17.324"
|
||||
orientation="1,0"
|
||||
id="guide4523"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(152,152,181)" />
|
||||
<sodipodi:guide
|
||||
position="47,33.852737"
|
||||
orientation="1,0"
|
||||
id="guide4525"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(121,121,172)" />
|
||||
<sodipodi:guide
|
||||
position="13.433908,46"
|
||||
orientation="0,1"
|
||||
id="guide4527"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,40,0)" />
|
||||
<sodipodi:guide
|
||||
position="8,36.135"
|
||||
orientation="1,0"
|
||||
id="guide4529"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,11,0)" />
|
||||
<sodipodi:guide
|
||||
position="40,26.436782"
|
||||
orientation="1,0"
|
||||
id="guide4531"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,6,0)" />
|
||||
<sodipodi:guide
|
||||
position="34.052,2"
|
||||
orientation="0,1"
|
||||
id="guide4533"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,0,5)" />
|
||||
<sodipodi:guide
|
||||
position="36.879276,26"
|
||||
orientation="0,1"
|
||||
id="guide4542"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="43.660795,14.731391"
|
||||
orientation="0,1"
|
||||
id="guide4546" />
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4214" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata5689">
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Tuomas Kuosmanen</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>internet</rdf:li>
|
||||
<rdf:li>tools</rdf:li>
|
||||
<rdf:li>applications</rdf:li>
|
||||
<rdf:li>category</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1"
|
||||
inkscape:label="base droplet"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891000000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 335.10794,116.43168 L 610.53935,447.76408 C 809.45408,669.41324 696.25675,938.85368 393.35753,959.46028 C -32.813273,970.60316 -9.7709676,623.52458 107.82928,464.31364 L 335.10794,116.43168 z"
|
||||
style="fill:#e6381f;fill-opacity:1;fill-rule:evenodd;stroke:#a60e0e;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;"
|
||||
d="M 23.295622,2.4822833 35.490217,21.297229 C 43.30243,33.350632 35.08691,46.383433 23.287956,46.383433 11.489002,46.383433 3.2602089,33.346045 11.079504,21.30073 Z"
|
||||
id="path2069"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:21.67123984999999919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022000000000"
|
||||
d="M 337.67292,165.87552 L 585.22638,464.67366 C 773.96211,684.57988 653.37942,910.02774 383.88559,930.97978 C 4.1291863,940.68143 29.040179,639.21796 125.2355,490.1649 L 337.67292,165.87552 z"
|
||||
id="path2071"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
sodipodi:nodetypes="cszsc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.90726715,0,0,0.89972834,2.9383017,2.518482)" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="seed/download icon"
|
||||
style="display:none">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:1091.49255371px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#ff7878;fill-opacity:1;stroke:#000000;stroke-width:13.65081787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
||||
x="20.453644"
|
||||
y="1303.4996"
|
||||
id="text2767"
|
||||
transform="scale(1.4928735,0.6698491)"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
style="font-style:normal;font-weight:normal;font-size:17.90330505px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#630000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="12.545032"
|
||||
y="40.473927"
|
||||
id="text5111"
|
||||
sodipodi:linespacing="125%"
|
||||
transform="scale(1.0196557,0.98072319)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan2769"
|
||||
x="20.453644"
|
||||
y="1303.4996"
|
||||
style="font-size:1091.49255371px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;stroke-width:13.65081787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;font-family:Bitstream Vera Sans">!</tspan></text>
|
||||
id="tspan5113"
|
||||
x="12.545032"
|
||||
y="40.473927"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:35.80661011px;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch Bold';fill:#630000;fill-opacity:1;stroke:none">!</tspan></text>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="seed/download icon 1"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="display:inline;opacity:1;fill:#630000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 20.966529,17.53531 6,0 -0.97907,14.309359 -3.824288,0 z"
|
||||
id="rect4203"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="display:inline;opacity:1;fill:#630000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 21.203402,33.393779 5.5,0 0,5.5 -5.5,0 z"
|
||||
id="rect4206"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 590 B After Width: | Height: | Size: 545 B |
|
@ -1,191 +1,826 @@
|
|||
<?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://creativecommons.org/ns#"
|
||||
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="744.09448819"
|
||||
height="1052.3622047"
|
||||
id="svg3001"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3440"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="all.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
inkscape:export-xdpi="960"
|
||||
inkscape:export-ydpi="960"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="TRUE"
|
||||
version="1.1"
|
||||
inkscape:export-filename="/home/calum/projects/deluge-logo/deluge.512.x.png">
|
||||
<defs
|
||||
id="defs3003">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 526.18109 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||
id="perspective3009" />
|
||||
id="defs3">
|
||||
<color-profile
|
||||
name="sRGB"
|
||||
xlink:href="/usr/share/color/icc/sRGB.icc"
|
||||
id="color-profile4484" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2973">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2975" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2977" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4126">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4128" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.16494845;"
|
||||
offset="1.0000000"
|
||||
id="stop4130" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4114">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4116" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4118" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3962">
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3964" />
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.15517241"
|
||||
id="stop4134" />
|
||||
<stop
|
||||
style="stop-color:#4074ae;stop-opacity:1.0000000;"
|
||||
offset="0.75000000"
|
||||
id="stop4346" />
|
||||
<stop
|
||||
style="stop-color:#36486c;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3966" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="13.994944"
|
||||
fy="33.506763"
|
||||
fx="-10.089286"
|
||||
cy="33.506763"
|
||||
cx="-10.089286"
|
||||
gradientTransform="matrix(1,0,0,0.791446,-14.01786,-11.28667)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4019"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
gradientTransform="matrix(1,0,0,0.792374,-19.58761,2.818569)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4004"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.792374,0,6.785475)"
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
id="radialGradient3999"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.341185,-0.153831,1.08001,2.395374,-15.42222,-25.62103)"
|
||||
r="13.994946"
|
||||
fy="24.241488"
|
||||
fx="61.662098"
|
||||
cy="24.241488"
|
||||
cx="61.662098"
|
||||
id="radialGradient3943"
|
||||
xlink:href="#linearGradient1312"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient1312">
|
||||
<stop
|
||||
id="stop1314"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop1316"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3993">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3995" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop3997" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient3866"
|
||||
cx="-22.375"
|
||||
cy="18.499998"
|
||||
fx="-22.375"
|
||||
fy="18.499998"
|
||||
r="14.33462"
|
||||
gradientTransform="matrix(1,0,0,1.140022,40.17678,1.347091)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="12.289036"
|
||||
fy="63.965388"
|
||||
fx="15.115514"
|
||||
cy="63.965388"
|
||||
cx="15.115514"
|
||||
gradientTransform="scale(1.643990,0.608276)"
|
||||
id="radialGradient5000"
|
||||
xlink:href="#linearGradient4114"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4989">
|
||||
<stop
|
||||
id="stop4991"
|
||||
offset="0"
|
||||
style="stop-color:#47abff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4993"
|
||||
offset="0.35955963"
|
||||
style="stop-color:#53a6ff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4995"
|
||||
offset="0.79518169"
|
||||
style="stop-color:#286cbb;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4997"
|
||||
offset="1"
|
||||
style="stop-color:#003d87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4977">
|
||||
<stop
|
||||
id="stop4979"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4981"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
id="filter6406"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000000000000002"
|
||||
x="-0.050000000000000017">
|
||||
<feFlood
|
||||
id="feFlood6408"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
k1="8.1400000000000006"
|
||||
k2="4.9299999999999997"
|
||||
k3="5.5899999999999999"
|
||||
k4="-7.2400000000000002" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur"
|
||||
in="composite" />
|
||||
<feOffset
|
||||
id="feOffset6414"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4258">
|
||||
<feFlood
|
||||
flood-opacity="0.80200501253132828"
|
||||
flood-color="rgb(197,204,222)"
|
||||
result="flood"
|
||||
id="feFlood4260" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4262"
|
||||
flood-opacity="0.80000000000000004" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.5"
|
||||
result="blur"
|
||||
id="feGaussianBlur4264" />
|
||||
<feOffset
|
||||
dx="-0"
|
||||
dy="-0.5"
|
||||
result="offset"
|
||||
id="feOffset4266" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4268" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter4290"
|
||||
inkscape:label="Drop Shadow"
|
||||
style="color-interpolation-filters:sRGB;">
|
||||
<feFlood
|
||||
id="feFlood4292"
|
||||
result="flood"
|
||||
flood-color="rgb(255,255,255)"
|
||||
flood-opacity="0.59999999999999998" />
|
||||
<feComposite
|
||||
id="feComposite4294"
|
||||
result="composite1"
|
||||
operator="in"
|
||||
in2="SourceGraphic"
|
||||
in="flood" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4296"
|
||||
result="blur"
|
||||
stdDeviation="6.7999999999999998"
|
||||
in="composite1" />
|
||||
<feOffset
|
||||
id="feOffset4298"
|
||||
result="offset"
|
||||
dy="1.9000000000000004"
|
||||
dx="0.69999999999999996"
|
||||
flood-opacity="0.68000000000000005" />
|
||||
<feComposite
|
||||
id="feComposite4300"
|
||||
result="composite2"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter6406-6"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000001"
|
||||
x="-0.050000001">
|
||||
<feFlood
|
||||
id="feFlood6408-1"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410-2"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412-9"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur" />
|
||||
<feOffset
|
||||
id="feOffset6414-3"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416-1"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter6406-4"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000001"
|
||||
x="-0.050000001">
|
||||
<feFlood
|
||||
id="feFlood6408-7"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410-8"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412-4"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur" />
|
||||
<feOffset
|
||||
id="feOffset6414-5"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416-0"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter6406-1"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000001"
|
||||
x="-0.050000001">
|
||||
<feFlood
|
||||
id="feFlood6408-0"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410-6"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412-3"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur" />
|
||||
<feOffset
|
||||
id="feOffset6414-2"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416-06"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter6406-65"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000001"
|
||||
x="-0.050000001">
|
||||
<feFlood
|
||||
id="feFlood6408-6"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410-9"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412-37"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur" />
|
||||
<feOffset
|
||||
id="feOffset6414-4"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416-5"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.17254902"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="375"
|
||||
inkscape:cy="520"
|
||||
inkscape:document-units="px"
|
||||
inkscape:zoom="22.627418"
|
||||
inkscape:cx="24.522092"
|
||||
inkscape:cy="23.789911"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="640"
|
||||
inkscape:window-height="711"
|
||||
inkscape:window-x="1594"
|
||||
inkscape:window-y="77" />
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
width="512px"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="4.331,47"
|
||||
id="guide3056"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(99,99,125)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="23.9375,24.5625"
|
||||
id="guide3058"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="40,25.375"
|
||||
id="guide5866" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="38.448931,29.742679"
|
||||
id="guide5868" />
|
||||
<sodipodi:guide
|
||||
position="3.8890873,1"
|
||||
orientation="0,1"
|
||||
id="guide4521"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(106,106,146)" />
|
||||
<sodipodi:guide
|
||||
position="1,17.324"
|
||||
orientation="1,0"
|
||||
id="guide4523"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(152,152,181)" />
|
||||
<sodipodi:guide
|
||||
position="47,33.852737"
|
||||
orientation="1,0"
|
||||
id="guide4525"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(121,121,172)" />
|
||||
<sodipodi:guide
|
||||
position="13.433908,46"
|
||||
orientation="0,1"
|
||||
id="guide4527"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,40,0)" />
|
||||
<sodipodi:guide
|
||||
position="8,36.135"
|
||||
orientation="1,0"
|
||||
id="guide4529"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,11,0)" />
|
||||
<sodipodi:guide
|
||||
position="40,26.436782"
|
||||
orientation="1,0"
|
||||
id="guide4531"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,6,0)" />
|
||||
<sodipodi:guide
|
||||
position="34.052,2"
|
||||
orientation="0,1"
|
||||
id="guide4533"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,0,5)" />
|
||||
<sodipodi:guide
|
||||
position="36.879276,26"
|
||||
orientation="0,1"
|
||||
id="guide4542"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="43.660795,14.731391"
|
||||
orientation="0,1"
|
||||
id="guide4546" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3006">
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Tuomas Kuosmanen</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>internet</rdf:li>
|
||||
<rdf:li>tools</rdf:li>
|
||||
<rdf:li>applications</rdf:li>
|
||||
<rdf:li>category</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
id="layer5"
|
||||
inkscape:label="seed/download icon"
|
||||
style="display:none" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="paused"
|
||||
style="display:none">
|
||||
<g
|
||||
id="g3011"
|
||||
transform="matrix(7.4849593,0,0,7.4849593,52.997244,360.31942)"
|
||||
inkscape:export-filename="/home/andrew/g3060.png"
|
||||
inkscape:export-xdpi="2.4250078"
|
||||
inkscape:export-ydpi="2.4250078">
|
||||
id="g6424"
|
||||
transform="matrix(0.5,0,0,0.5,2.9837572,-5.2773854)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path2069"
|
||||
d="M 23.942923,0.9561338 L 37.330543,18.266721 C 46.998995,29.84687 41.49692,43.923891 26.7742,45.000491 C 6.0597413,45.582655 6.5086231,27.37483 11.255313,18.609381 L 23.942923,0.9561338 z"
|
||||
style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path2071"
|
||||
d="M 23.996861,3.5433428 L 36.057351,19.151045 C 44.769741,29.58253 39.419346,42.414092 26.125181,43.508521 C 7.3917365,44.015286 7.4275065,28.119221 12.17284,20.333442 L 23.996861,3.5433428 z"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.1000706;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022" />
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
transform="scale(1.4928735,0.6698491)"
|
||||
id="text2767"
|
||||
y="59.560848"
|
||||
x="5.0072942"
|
||||
style="font-size:55.97062302px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#ff7878;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-size:55.97062302px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;font-family:Bitstream Vera Sans"
|
||||
y="59.560848"
|
||||
x="5.0072942"
|
||||
id="tspan2769"
|
||||
sodipodi:role="line">!</tspan></text>
|
||||
transform="matrix(0.90726715,0,0,0.89972834,26.239516,15.92952)"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cszsc"
|
||||
id="path2069-9"
|
||||
d="M 23.295622,2.4822833 35.490217,21.297229 C 43.30243,33.350632 35.08691,46.383433 23.287956,46.383433 11.489002,46.383433 3.2602089,33.346045 11.079504,21.30073 Z"
|
||||
style="display:inline;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6406-6)" />
|
||||
<rect
|
||||
y="35.411037"
|
||||
x="48.613716"
|
||||
height="16"
|
||||
width="5.5"
|
||||
id="rect4364"
|
||||
style="display:inline;opacity:1;fill:#666666;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
y="35.411037"
|
||||
x="40.426212"
|
||||
height="16"
|
||||
width="5.5"
|
||||
id="rect4364-1"
|
||||
style="display:inline;opacity:1;fill:#666666;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="alert"
|
||||
inkscape:groupmode="layer"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="display:inline;fill:#e6381f;fill-opacity:1;fill-rule:evenodd;stroke:#a60e0e;stroke-width:1.48663402;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 23.83453,3.7818049 5.550226,8.4922441 c 3.555636,5.44038 -0.183561,11.322817 -5.553715,11.322817 -5.370156,0 -9.115393,-5.884508 -5.556534,-11.321236 z"
|
||||
id="path2069-8"
|
||||
sodipodi:nodetypes="cszsc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;opacity:1;fill:#630000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 22.275814,10.194729 3.009951,0 -0.491159,7.178411 -1.918487,0 z"
|
||||
id="rect4203"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="display:inline;opacity:1;fill:#630000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="m 22.394643,18.150264 2.759122,0 0,2.759121 -2.759122,0 z"
|
||||
id="rect4206"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer6"
|
||||
inkscape:label="queue"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g3022"
|
||||
transform="matrix(7.874057,0,0,7.874057,232.39499,356.39427)"
|
||||
inkscape:export-filename="/home/andrew/g3060.png"
|
||||
inkscape:export-xdpi="2.4250078"
|
||||
inkscape:export-ydpi="2.4250078">
|
||||
id="g4381"
|
||||
transform="matrix(0.50041261,0,0,0.50041261,10.301289,13.764121)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3030"
|
||||
d="M 23.854535,1.0445221 L 37.242155,18.355109 C 46.910607,29.935258 41.408532,44.012279 26.685812,45.088879 C 5.971353,45.671043 6.4202348,27.463218 11.166925,18.697769 L 23.854535,1.0445221 z"
|
||||
style="fill:#b3b3b3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cszsc"
|
||||
id="path2069-23"
|
||||
d="M 43.762814,0.18101753 54.826569,17.109357 c 7.087764,10.844788 -0.365907,22.570769 -11.07071,22.570769 -10.704803,0 -18.170517,-11.730108 -11.076327,-22.567619 z"
|
||||
style="display:inline;fill:#dcdc00;fill-opacity:1;fill-rule:evenodd;stroke:#b4b400;stroke-width:2.96343851;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
y="25.66815"
|
||||
x="35.689159"
|
||||
height="4"
|
||||
width="16"
|
||||
id="rect4221-3-6-7"
|
||||
style="display:inline;opacity:1;fill:#6a6a00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.03118205;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
y="19.302549"
|
||||
x="35.689159"
|
||||
height="4"
|
||||
width="16"
|
||||
id="rect4221-3-9-5"
|
||||
style="display:inline;opacity:1;fill:#6a6a00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.03118205;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3032"
|
||||
d="M 23.996861,3.5433428 L 36.057351,19.151045 C 44.769741,29.58253 39.419346,42.414092 26.125181,43.508521 C 7.3917365,44.015286 7.4275065,28.119221 12.17284,20.333442 L 23.996861,3.5433428 z"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.1000706;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022" />
|
||||
<g
|
||||
transform="matrix(0.9616363,0,0,0.855461,0.9207282,3.9296533)"
|
||||
id="g3590">
|
||||
<rect
|
||||
style="fill:#cfcfcf;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4415"
|
||||
width="7.7589664"
|
||||
height="14.866735"
|
||||
x="14.548919"
|
||||
y="19.754131" />
|
||||
<rect
|
||||
style="fill:#cfcfcf;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4417"
|
||||
width="7.7589664"
|
||||
height="14.866735"
|
||||
x="25.692116"
|
||||
y="19.754131" />
|
||||
</g>
|
||||
inkscape:transform-center-x="2.0998475e-05"
|
||||
inkscape:transform-center-y="-0.7497936"
|
||||
transform="matrix(0,121.76383,-210.90115,0,3630.2786,-2895.3827)"
|
||||
d="m 23.88441,17.006021 0.01848,-0.01067 0.01848,-0.01067 0,0.02134 0,0.02134 -0.01848,-0.01067 z"
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:arg2="4.1887903"
|
||||
sodipodi:arg1="3.1415927"
|
||||
sodipodi:r2="0.012318929"
|
||||
sodipodi:r1="0.024637857"
|
||||
sodipodi:cy="17.006021"
|
||||
sodipodi:cx="23.909048"
|
||||
sodipodi:sides="3"
|
||||
id="path4266-5-9"
|
||||
style="display:inline;opacity:1;fill:#6a6a00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.97536206;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="star" />
|
||||
<path
|
||||
inkscape:transform-center-x="-0.00022730407"
|
||||
inkscape:transform-center-y="0.74972138"
|
||||
transform="matrix(0,-121.76383,210.90115,0,-3542.9004,2944.2596)"
|
||||
d="m 23.88441,17.006021 0.01848,-0.01067 0.01848,-0.01067 0,0.02134 0,0.02134 -0.01848,-0.01067 z"
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:arg2="4.1887903"
|
||||
sodipodi:arg1="3.1415927"
|
||||
sodipodi:r2="0.012318929"
|
||||
sodipodi:r1="0.024637857"
|
||||
sodipodi:cy="17.006021"
|
||||
sodipodi:cx="23.909048"
|
||||
sodipodi:sides="3"
|
||||
id="path4266-5-3-2"
|
||||
style="display:inline;opacity:1;fill:#6a6a00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.97536206;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="star" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer4"
|
||||
inkscape:label="seed"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g3037"
|
||||
transform="matrix(8.0037561,0,0,8.0037561,-22.312009,464.83023)"
|
||||
inkscape:export-filename="/home/andrew/g3060.png"
|
||||
inkscape:export-xdpi="2.4250078"
|
||||
inkscape:export-ydpi="2.4250078">
|
||||
id="g4316"
|
||||
transform="matrix(0.50386528,0,0,0.50386528,18.968897,3.1952438)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3043"
|
||||
d="M 23.854535,1.0445221 L 37.242155,18.355109 C 46.910607,29.935258 41.408532,44.012279 26.685812,45.088879 C 5.971353,45.671043 6.4202348,27.463218 11.166925,18.697769 L 23.854535,1.0445221 z"
|
||||
style="fill:#d0b31d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cszsc"
|
||||
id="path2069-18"
|
||||
d="m -6.3533765,21.261638 11.063755,16.928339 c 7.0877645,10.844788 -0.365907,22.570769 -11.07071,22.570769 -10.7048035,0 -18.1705175,-11.730108 -11.0763275,-22.567619 z"
|
||||
style="display:inline;fill:#6699ff;fill-opacity:1;fill-rule:evenodd;stroke:#3366cc;stroke-width:2.96343851;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
y="49.509773"
|
||||
x="-10.666519"
|
||||
height="4.5"
|
||||
width="8.5"
|
||||
id="rect4364-1-36"
|
||||
style="display:inline;opacity:1;fill:#0f3171;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3045"
|
||||
d="M 23.996861,3.5433428 L 36.057351,19.151045 C 44.769741,29.58253 39.419346,42.414092 26.125181,43.508521 C 7.3917365,44.015286 7.4275065,28.119221 12.17284,20.333442 L 23.996861,3.5433428 z"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.1000706;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022" />
|
||||
<path
|
||||
id="rect2634"
|
||||
d="M 24.821384,15.512309 C 22.21433,17.952223 19.604921,20.381297 16.997867,22.821211 C 18.304685,22.818964 19.61477,22.823457 20.921589,22.821211 C 20.921589,25.684801 20.921589,28.548391 20.921589,31.411981 C 19.61477,31.409734 18.304685,31.414228 16.997867,31.411981 C 19.604921,33.851895 22.21433,36.280969 24.821384,38.720883 C 27.457552,36.289986 30.104432,33.865368 32.740602,31.43447 C 31.322226,31.432031 29.900305,31.43691 28.481929,31.43447 C 28.481929,28.555887 28.481929,25.677306 28.481929,22.798722 C 29.900305,22.796282 31.322226,22.80116 32.740602,22.798722 C 30.104432,20.367823 27.457552,17.943206 24.821384,15.512309 z"
|
||||
style="fill:#e1cf6f;fill-opacity:1;stroke:#000000;stroke-width:0.56882578;stroke-linecap:round;stroke-linejoin:round;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
inkscape:transform-center-y="1.3125004"
|
||||
transform="matrix(1.9671947,0,0,1.1180142,-53.583459,15.251026)"
|
||||
d="m 28.004205,23.535413 -4.066705,0 -4.066705,0 2.033353,-3.521869 2.033352,-3.52187 2.033352,3.521869 z"
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:arg2="1.5707963"
|
||||
sodipodi:arg1="0.52359878"
|
||||
sodipodi:r2="2.347913"
|
||||
sodipodi:r1="4.6958261"
|
||||
sodipodi:cy="21.1875"
|
||||
sodipodi:cx="23.9375"
|
||||
sodipodi:sides="3"
|
||||
id="path5039-7"
|
||||
style="display:inline;opacity:1;fill:#0f3171;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="star" />
|
||||
<rect
|
||||
y="43.411861"
|
||||
x="-10.68544"
|
||||
height="4.5"
|
||||
width="8.5"
|
||||
id="rect4364-1-3"
|
||||
style="display:inline;opacity:1;fill:#0f3171;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="down"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g3048"
|
||||
transform="matrix(7.6146585,0,0,7.6146585,318.27879,494.48113)"
|
||||
inkscape:export-filename="/home/andrew/g3060.png"
|
||||
inkscape:export-xdpi="2.4250078"
|
||||
inkscape:export-ydpi="2.4250078">
|
||||
transform="matrix(0.99398243,0,0,0.99398243,26.888997,23.507801)"
|
||||
style="display:inline"
|
||||
id="g4334">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3054"
|
||||
d="M 23.942923,0.9561338 L 37.330543,18.266721 C 46.998995,29.84687 41.49692,43.923891 26.7742,45.000491 C 6.0597413,45.582655 6.5086231,27.37483 11.255313,18.609381 L 23.942923,0.9561338 z"
|
||||
style="fill:#5599ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cszsc"
|
||||
id="path2069-7"
|
||||
d="M -2.9505196,0.78380503 2.6291501,9.3211008 C 6.2036493,14.790341 2.444616,20.703985 -2.9540272,20.703985 c -5.3986437,0 -9.1637498,-5.915725 -5.5860106,-11.3812956 z"
|
||||
style="display:inline;fill:#16c816;fill-opacity:1;fill-rule:evenodd;stroke:#129b00;stroke-width:1.49452055;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
transform="scale(-1,-1)"
|
||||
y="-10.455302"
|
||||
x="0.89548177"
|
||||
height="2.2694387"
|
||||
width="4.2766037"
|
||||
id="rect4364-1-9"
|
||||
style="display:inline;opacity:1;fill:#005000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3056"
|
||||
d="M 23.996861,3.5433428 L 36.057351,19.151045 C 44.769741,29.58253 39.419346,42.414092 26.125181,43.508521 C 7.3917365,44.015286 7.4275065,28.119221 12.17284,20.333442 L 23.996861,3.5433428 z"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.1000706;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022" />
|
||||
<path
|
||||
id="path3058"
|
||||
d="M 24.3125,14.9375 C 20.869248,18.315409 17.412003,21.684591 13.96875,25.0625 C 15.821373,25.065889 17.678627,25.059111 19.53125,25.0625 C 19.53125,29.0625 19.53125,33.0625 19.53125,37.0625 C 22.822917,37.0625 26.114582,37.0625 29.40625,37.0625 C 29.40625,33.072917 29.40625,29.083333 29.40625,25.09375 C 31.113161,25.096872 32.824339,25.090627 34.53125,25.09375 C 31.126025,21.703313 27.717725,18.327937 24.3125,14.9375 z"
|
||||
style="fill:#93beff;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g3060"
|
||||
transform="matrix(8.2631545,0,0,8.2631545,133.25792,542.4325)"
|
||||
inkscape:export-xdpi="2.4250078"
|
||||
inkscape:export-ydpi="2.4250078">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3066"
|
||||
d="M 23.942923,0.9561338 L 37.330543,18.266721 C 46.998995,29.84687 41.49692,43.923891 26.7742,45.000491 C 6.0597413,45.582655 6.5086231,27.37483 11.255313,18.609381 L 23.942923,0.9561338 z"
|
||||
style="fill:#8dd35f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3068"
|
||||
d="M 23.996861,3.5433428 L 36.057351,19.151045 C 44.769741,29.58253 39.419346,42.414092 26.125181,43.508521 C 7.3917365,44.015286 7.4275065,28.119221 12.17284,20.333442 L 23.996861,3.5433428 z"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.1000706;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022" />
|
||||
<path
|
||||
id="path3070"
|
||||
d="M 19.34375,17.5625 C 19.34375,21.552083 19.34375,25.541668 19.34375,29.53125 C 17.636839,29.528128 15.925661,29.534372 14.21875,29.53125 C 17.623975,32.921687 21.032275,36.297063 24.4375,39.6875 C 27.880752,36.309591 31.337996,32.94041 34.78125,29.5625 C 32.928627,29.559111 31.071373,29.565889 29.21875,29.5625 C 29.21875,25.5625 29.21875,21.562501 29.21875,17.5625 C 25.927083,17.5625 22.635418,17.562501 19.34375,17.5625 z"
|
||||
style="fill:#b7e399;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
inkscape:transform-center-y="-0.65561611"
|
||||
transform="matrix(-0.99209509,0,0,-0.55846672,20.75849,27.675627)"
|
||||
d="m 28.004205,23.535413 -4.066705,0 -4.066705,0 2.033353,-3.521869 2.033352,-3.52187 2.033352,3.521869 z"
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0"
|
||||
inkscape:flatsided="false"
|
||||
sodipodi:arg2="1.5707963"
|
||||
sodipodi:arg1="0.52359878"
|
||||
sodipodi:r2="2.347913"
|
||||
sodipodi:r1="4.6958261"
|
||||
sodipodi:cy="21.1875"
|
||||
sodipodi:cx="23.9375"
|
||||
sodipodi:sides="3"
|
||||
id="path5039-2"
|
||||
style="display:inline;opacity:1;fill:#005000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="star" />
|
||||
<rect
|
||||
transform="scale(-1,-1)"
|
||||
y="-13.625159"
|
||||
x="0.88536817"
|
||||
height="2.2694387"
|
||||
width="4.2766037"
|
||||
id="rect4364-1-3-0"
|
||||
style="display:inline;opacity:1;fill:#005000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 844 B After Width: | Height: | Size: 606 B |
|
@ -1,88 +1,504 @@
|
|||
<?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://creativecommons.org/ns#"
|
||||
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="744.09448819"
|
||||
height="1052.3622047"
|
||||
id="svg6930"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3440"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/checking16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417"
|
||||
sodipodi:docname="checking.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="deluge_checking.svg"
|
||||
inkscape:export-xdpi="960"
|
||||
inkscape:export-ydpi="960"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="TRUE"
|
||||
version="1.1"
|
||||
inkscape:export-filename="/home/calum/projects/deluge-logo/deluge.512.x.png">
|
||||
<defs
|
||||
id="defs6932">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 526.18109 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||
id="perspective6938" />
|
||||
id="defs3">
|
||||
<color-profile
|
||||
name="sRGB"
|
||||
xlink:href="/usr/share/color/icc/sRGB.icc"
|
||||
id="color-profile4484" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2973">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2975" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2977" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4126">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4128" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.16494845;"
|
||||
offset="1.0000000"
|
||||
id="stop4130" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4114">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4116" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4118" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3962">
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3964" />
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.15517241"
|
||||
id="stop4134" />
|
||||
<stop
|
||||
style="stop-color:#4074ae;stop-opacity:1.0000000;"
|
||||
offset="0.75000000"
|
||||
id="stop4346" />
|
||||
<stop
|
||||
style="stop-color:#36486c;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3966" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="13.994944"
|
||||
fy="33.506763"
|
||||
fx="-10.089286"
|
||||
cy="33.506763"
|
||||
cx="-10.089286"
|
||||
gradientTransform="matrix(1,0,0,0.791446,-14.01786,-11.28667)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4019"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
gradientTransform="matrix(1,0,0,0.792374,-19.58761,2.818569)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4004"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.792374,0,6.785475)"
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
id="radialGradient3999"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.341185,-0.153831,1.08001,2.395374,-15.42222,-25.62103)"
|
||||
r="13.994946"
|
||||
fy="24.241488"
|
||||
fx="61.662098"
|
||||
cy="24.241488"
|
||||
cx="61.662098"
|
||||
id="radialGradient3943"
|
||||
xlink:href="#linearGradient1312"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient1312">
|
||||
<stop
|
||||
id="stop1314"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop1316"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3993">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3995" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop3997" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient3866"
|
||||
cx="-22.375"
|
||||
cy="18.499998"
|
||||
fx="-22.375"
|
||||
fy="18.499998"
|
||||
r="14.33462"
|
||||
gradientTransform="matrix(1,0,0,1.140022,40.17678,1.347091)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="12.289036"
|
||||
fy="63.965388"
|
||||
fx="15.115514"
|
||||
cy="63.965388"
|
||||
cx="15.115514"
|
||||
gradientTransform="scale(1.643990,0.608276)"
|
||||
id="radialGradient5000"
|
||||
xlink:href="#linearGradient4114"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4989">
|
||||
<stop
|
||||
id="stop4991"
|
||||
offset="0"
|
||||
style="stop-color:#47abff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4993"
|
||||
offset="0.35955963"
|
||||
style="stop-color:#53a6ff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4995"
|
||||
offset="0.79518169"
|
||||
style="stop-color:#286cbb;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4997"
|
||||
offset="1"
|
||||
style="stop-color:#003d87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4977">
|
||||
<stop
|
||||
id="stop4979"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4981"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
id="filter6406"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000000000000002"
|
||||
x="-0.050000000000000017">
|
||||
<feFlood
|
||||
id="feFlood6408"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
k1="8.1400000000000006"
|
||||
k2="4.9299999999999997"
|
||||
k3="5.5899999999999999"
|
||||
k4="-7.2400000000000002" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur"
|
||||
in="composite" />
|
||||
<feOffset
|
||||
id="feOffset6414"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4258">
|
||||
<feFlood
|
||||
flood-opacity="0.80200501253132828"
|
||||
flood-color="rgb(197,204,222)"
|
||||
result="flood"
|
||||
id="feFlood4260" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4262"
|
||||
flood-opacity="0.80000000000000004" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.5"
|
||||
result="blur"
|
||||
id="feGaussianBlur4264" />
|
||||
<feOffset
|
||||
dx="-0"
|
||||
dy="-0.5"
|
||||
result="offset"
|
||||
id="feOffset4266" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4268" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter4290"
|
||||
inkscape:label="Drop Shadow"
|
||||
style="color-interpolation-filters:sRGB;">
|
||||
<feFlood
|
||||
id="feFlood4292"
|
||||
result="flood"
|
||||
flood-color="rgb(255,255,255)"
|
||||
flood-opacity="0.59999999999999998" />
|
||||
<feComposite
|
||||
id="feComposite4294"
|
||||
result="composite1"
|
||||
operator="in"
|
||||
in2="SourceGraphic"
|
||||
in="flood" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4296"
|
||||
result="blur"
|
||||
stdDeviation="6.7999999999999998"
|
||||
in="composite1" />
|
||||
<feOffset
|
||||
id="feOffset4298"
|
||||
result="offset"
|
||||
dy="1.9000000000000004"
|
||||
dx="0.69999999999999996"
|
||||
flood-opacity="0.68000000000000005" />
|
||||
<feComposite
|
||||
id="feComposite4300"
|
||||
result="composite2"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.17254902"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.7"
|
||||
inkscape:cx="284.02575"
|
||||
inkscape:cy="416.27643"
|
||||
inkscape:document-units="px"
|
||||
inkscape:zoom="11.313709"
|
||||
inkscape:cx="37.39656"
|
||||
inkscape:cy="17.410941"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="686"
|
||||
inkscape:window-height="711"
|
||||
inkscape:window-x="1387"
|
||||
inkscape:window-y="128" />
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
width="512px"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="4.331,47"
|
||||
id="guide3056"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(99,99,125)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="23.9375,24.5625"
|
||||
id="guide3058"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="40,25.375"
|
||||
id="guide5866" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="38.448931,29.742679"
|
||||
id="guide5868" />
|
||||
<sodipodi:guide
|
||||
position="3.8890873,1"
|
||||
orientation="0,1"
|
||||
id="guide4521"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(106,106,146)" />
|
||||
<sodipodi:guide
|
||||
position="1,17.324"
|
||||
orientation="1,0"
|
||||
id="guide4523"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(152,152,181)" />
|
||||
<sodipodi:guide
|
||||
position="47,33.852737"
|
||||
orientation="1,0"
|
||||
id="guide4525"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(121,121,172)" />
|
||||
<sodipodi:guide
|
||||
position="13.433908,46"
|
||||
orientation="0,1"
|
||||
id="guide4527"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,40,0)" />
|
||||
<sodipodi:guide
|
||||
position="8,36.135"
|
||||
orientation="1,0"
|
||||
id="guide4529"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,11,0)" />
|
||||
<sodipodi:guide
|
||||
position="40,26.436782"
|
||||
orientation="1,0"
|
||||
id="guide4531"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,6,0)" />
|
||||
<sodipodi:guide
|
||||
position="34.052,2"
|
||||
orientation="0,1"
|
||||
id="guide4533"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,0,5)" />
|
||||
<sodipodi:guide
|
||||
position="36.879276,26"
|
||||
orientation="0,1"
|
||||
id="guide4542"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="43.660795,14.731391"
|
||||
orientation="0,1"
|
||||
id="guide4546" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata6935">
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Tuomas Kuosmanen</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>internet</rdf:li>
|
||||
<rdf:li>tools</rdf:li>
|
||||
<rdf:li>applications</rdf:li>
|
||||
<rdf:li>category</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1"
|
||||
inkscape:label="base droplet"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#b3b3b3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891000000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 335.10794,116.43168 L 610.53935,447.76408 C 809.45408,669.41324 696.25675,938.85368 393.35753,959.46028 C -32.813273,970.60316 -9.7709676,623.52458 107.82928,464.31364 L 335.10794,116.43168 z"
|
||||
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6406)"
|
||||
d="M 23.295622,2.4822833 35.490217,21.297229 C 43.30243,33.350632 35.08691,46.383433 23.287956,46.383433 11.489002,46.383433 3.2602089,33.346045 11.079504,21.30073 Z"
|
||||
id="path2069"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/checking16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
sodipodi:nodetypes="cszsc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.90726715,0,0,0.89972834,2.9383017,2.518482)" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="paused icon"
|
||||
style="display:none">
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#666666;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4364"
|
||||
width="5.5"
|
||||
height="16"
|
||||
x="25.3125"
|
||||
y="22" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#666666;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4364-1"
|
||||
width="5.5"
|
||||
height="16"
|
||||
x="17.125"
|
||||
y="22" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="checking icon">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:21.67123984999999919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022000000000"
|
||||
d="M 337.67292,165.87552 L 585.22638,464.67366 C 773.96211,684.57988 653.37942,910.02774 383.88559,930.97978 C 4.1291863,940.68143 29.040179,639.21796 125.2355,490.1649 L 337.67292,165.87552 z"
|
||||
id="path2071"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
<path
|
||||
style="fill:#cfcfcf;fill-opacity:1;stroke:#000000;stroke-width:11.50416565;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 170.93275,447.12091 C 174.01359,451.92804 181.6932,659.85017 179.71907,656.9136 C 178.40947,654.12718 411.7223,649.25335 412.30092,648.76646 C 411.08134,648.85003 338.31478,584.63588 338.93986,585.53435 C 410.72174,567.77973 462.65633,588.73801 481.03861,645.01437 C 484.19544,690.33553 466.3409,711.71891 434.77285,736.14895 C 385.89389,754.17146 322.59241,745.84878 312.37017,673.09575 C 312.32389,674.48492 156.52907,675.28833 153.0572,676.51233 C 202.03372,799.5504 269.9646,882.62913 421.73005,870.01325 C 463.0283,867.02946 568.27041,836.89042 606.41655,717.64626 C 627.84208,623.51263 596.80367,549.4096 547.34944,496.26853 C 457.7753,416.4389 296.11292,421.8444 245.11698,507.64417 C 247.55313,508.23771 173.58263,449.35852 170.93275,447.12091 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.48776338;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 15.70911,22.157482 c 0.119914,0.199935 0.418813,8.847951 0.34197,8.725818 -0.05095,-0.115892 9.029726,-0.318613 9.052253,-0.33886 -0.04746,0.004 -2.879595,-2.667362 -2.855268,-2.629987 2.723225,-2.451281 6.566426,-1.740041 6.843087,3.098922 0.276661,4.838963 -7.571006,6.978129 -8.064694,0.917979 l -4.575574,-0.07664 c 0.742237,4.962428 4.540705,7.477492 7.550683,7.485704 3.009978,0.0082 8.821989,-1.590934 8.794824,-8.313673 -0.02717,-6.722739 -4.319772,-8.932187 -8.343129,-8.887584 -4.023357,0.0446 -5.694705,2.520898 -5.856847,2.535638 0,0 -2.784162,-2.424246 -2.887305,-2.517317 z"
|
||||
id="path3485"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
sodipodi:nodetypes="cccczcczzzcc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 699 B After Width: | Height: | Size: 738 B |
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 6 KiB |
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 99 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 2.2 KiB |
|
@ -1,8 +1,9 @@
|
|||
<?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:cc="http://creativecommons.org/ns#"
|
||||
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"
|
||||
|
@ -13,16 +14,32 @@
|
|||
height="48px"
|
||||
id="svg3440"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45"
|
||||
sodipodi:docbase="/home/zach/deluge/trunk"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="deluge.svg"
|
||||
inkscape:export-filename="/home/zach/deluge.png"
|
||||
inkscape:export-xdpi="480"
|
||||
inkscape:export-ydpi="480"
|
||||
inkscape:export-xdpi="960"
|
||||
inkscape:export-ydpi="960"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="TRUE">
|
||||
sodipodi:modified="TRUE"
|
||||
version="1.1"
|
||||
inkscape:export-filename="/home/calum/projects/deluge-logo/deluge.512.w.png">
|
||||
<defs
|
||||
id="defs3">
|
||||
<color-profile
|
||||
name="sRGB"
|
||||
xlink:href="/usr/share/color/icc/sRGB.icc"
|
||||
id="color-profile4484" />
|
||||
<linearGradient
|
||||
id="linearGradient4345"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4347"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4349"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2973">
|
||||
|
@ -169,108 +186,161 @@
|
|||
id="linearGradient4989">
|
||||
<stop
|
||||
id="stop4991"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;" />
|
||||
offset="0"
|
||||
style="stop-color:#47abff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4993"
|
||||
offset="0.15517241"
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;" />
|
||||
offset="0.35955963"
|
||||
style="stop-color:#53a6ff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4995"
|
||||
offset="0.75000000"
|
||||
style="stop-color:#4074ae;stop-opacity:1.0000000;" />
|
||||
offset="0.79518169"
|
||||
style="stop-color:#286cbb;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4997"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#36486c;stop-opacity:1.0000000;" />
|
||||
offset="1"
|
||||
style="stop-color:#003d87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4977">
|
||||
<stop
|
||||
id="stop4979"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4981"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.16494845;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4825"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4827"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4829"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4114"
|
||||
id="radialGradient6090"
|
||||
xlink:href="#linearGradient4345"
|
||||
id="radialGradient5878"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(1.64399,0.608276)"
|
||||
cx="15.115514"
|
||||
cy="63.965388"
|
||||
fx="15.115514"
|
||||
fy="63.965388"
|
||||
r="12.289036" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4825"
|
||||
id="radialGradient6098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="12.071323"
|
||||
cy="12.493138"
|
||||
fx="12.071323"
|
||||
fy="12.493138"
|
||||
r="6.7175145" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient6103"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.25463,-0.898371,0.979785,0.277703,-18.00903,32.03312)"
|
||||
cx="17.903898"
|
||||
cy="40.159222"
|
||||
fx="17.903898"
|
||||
fy="40.159222"
|
||||
gradientTransform="matrix(0.56833945,-0.14774444,0.12240592,0.69984003,9.8157812,6.7018745)"
|
||||
cx="11.707551"
|
||||
cy="36.527763"
|
||||
fx="11.707551"
|
||||
fy="36.527763"
|
||||
r="14.33681" />
|
||||
<filter
|
||||
id="filter6406"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000000000000002"
|
||||
x="-0.050000000000000017">
|
||||
<feFlood
|
||||
id="feFlood6408"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
k1="8.1400000000000006"
|
||||
k2="4.9299999999999997"
|
||||
k3="5.5899999999999999"
|
||||
k4="-7.2400000000000002" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur"
|
||||
in="composite" />
|
||||
<feOffset
|
||||
id="feOffset6414"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4258">
|
||||
<feFlood
|
||||
flood-opacity="0.80200501253132828"
|
||||
flood-color="rgb(197,204,222)"
|
||||
result="flood"
|
||||
id="feFlood4260" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4262"
|
||||
flood-opacity="0.80000000000000004" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.5"
|
||||
result="blur"
|
||||
id="feGaussianBlur4264" />
|
||||
<feOffset
|
||||
dx="-0"
|
||||
dy="-0.5"
|
||||
result="offset"
|
||||
id="feOffset4266" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4268" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter4290"
|
||||
inkscape:label="Drop Shadow"
|
||||
style="color-interpolation-filters:sRGB;">
|
||||
<feFlood
|
||||
id="feFlood4292"
|
||||
result="flood"
|
||||
flood-color="rgb(255,255,255)"
|
||||
flood-opacity="0.59999999999999998" />
|
||||
<feComposite
|
||||
id="feComposite4294"
|
||||
result="composite1"
|
||||
operator="in"
|
||||
in2="SourceGraphic"
|
||||
in="flood" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4296"
|
||||
result="blur"
|
||||
stdDeviation="6.7999999999999998"
|
||||
in="composite1" />
|
||||
<feOffset
|
||||
id="feOffset4298"
|
||||
result="offset"
|
||||
dy="1.9000000000000004"
|
||||
dx="0.69999999999999996"
|
||||
flood-opacity="0.68000000000000005" />
|
||||
<feComposite
|
||||
id="feComposite4300"
|
||||
result="composite2"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="" />
|
||||
</filter>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient6106"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.583269,-0.431533,0.577146,0.78008,-5.80022,4.004109)"
|
||||
cx="12.525543"
|
||||
cy="38.09042"
|
||||
fx="12.525543"
|
||||
fy="38.09042"
|
||||
r="14.33681" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1312"
|
||||
id="radialGradient6109"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.768231,1.13675,-0.820972,0.554824,-3.72248,-85.07126)"
|
||||
cx="65.800331"
|
||||
cy="27.16758"
|
||||
fx="65.800331"
|
||||
fy="27.16758"
|
||||
r="12.972491" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4989"
|
||||
id="radialGradient6115"
|
||||
cx="16.651781"
|
||||
cy="32.187485"
|
||||
fx="16.651781"
|
||||
fy="32.187485"
|
||||
r="17.089519"
|
||||
gradientTransform="matrix(1.486175,-1.536108,0.932321,0.902016,-38.10476,31.42646)"
|
||||
xlink:href="#linearGradient4977"
|
||||
id="radialGradient4375"
|
||||
cx="19.015932"
|
||||
cy="19.611181"
|
||||
fx="19.015932"
|
||||
fy="19.611181"
|
||||
r="15.627373"
|
||||
gradientTransform="matrix(-0.21582873,1.1173231,-1.0803619,-0.20155681,42.177326,-6.1234)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
|
@ -280,18 +350,102 @@
|
|||
borderopacity="0.17254902"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="36.250498"
|
||||
inkscape:cy="38.275489"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="19.685853"
|
||||
inkscape:cx="26.317146"
|
||||
inkscape:cy="24.429162"
|
||||
inkscape:current-layer="g4476"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1266"
|
||||
inkscape:window-height="944"
|
||||
inkscape:window-x="124"
|
||||
inkscape:window-y="52"
|
||||
inkscape:showpageshadow="false" />
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
width="512px"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="4.331,47"
|
||||
id="guide3056"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(99,99,125)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="24,41.875"
|
||||
id="guide3058"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="40,25.375"
|
||||
id="guide5866" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="34.626135,29.742679"
|
||||
id="guide5868" />
|
||||
<sodipodi:guide
|
||||
position="3.8890873,1"
|
||||
orientation="0,1"
|
||||
id="guide4521"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(106,106,146)" />
|
||||
<sodipodi:guide
|
||||
position="1,17.324"
|
||||
orientation="1,0"
|
||||
id="guide4523"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(152,152,181)" />
|
||||
<sodipodi:guide
|
||||
position="47,33.852737"
|
||||
orientation="1,0"
|
||||
id="guide4525"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(121,121,172)" />
|
||||
<sodipodi:guide
|
||||
position="13.433908,46"
|
||||
orientation="0,1"
|
||||
id="guide4527"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,40,0)" />
|
||||
<sodipodi:guide
|
||||
position="8,36.135"
|
||||
orientation="1,0"
|
||||
id="guide4529"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,11,0)" />
|
||||
<sodipodi:guide
|
||||
position="40,26.436782"
|
||||
orientation="1,0"
|
||||
id="guide4531"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,6,0)" />
|
||||
<sodipodi:guide
|
||||
position="34.052,2"
|
||||
orientation="0,1"
|
||||
id="guide4533"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,0,5)" />
|
||||
<sodipodi:guide
|
||||
position="36.879276,26"
|
||||
orientation="0,1"
|
||||
id="guide4542"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="43.660795,14.731391"
|
||||
orientation="0,1"
|
||||
id="guide4546" />
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4297" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
|
@ -300,7 +454,7 @@
|
|||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Internet Category</dc:title>
|
||||
<dc:title />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
|
@ -343,60 +497,111 @@
|
|||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#4c90e8;fill-opacity:1;fill-rule:evenodd;stroke:#094491;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;"
|
||||
d="M 23.295622,2.4822833 35.490217,21.297229 C 43.30243,33.350632 35.08691,46.383433 23.287956,46.383433 11.489002,46.383433 3.2602089,33.346045 11.079504,21.30073 Z"
|
||||
id="path2069"
|
||||
sodipodi:nodetypes="cszsc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.90726715,0,0,0.89972834,2.9383017,2.518482)" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="wave fill"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="display:inline;fill:#094491;fill-opacity:1;fill-rule:evenodd;stroke-width:0.40552941;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 28.01172,24.438174 c -6.049549,-2.467385 -9.223551,3.836132 -8.214423,6.781163 2.195546,6.407462 10.475363,8.011557 16.589599,-2.66134 0,0 0.06518,1.28803 0.129838,1.900859 0.82106,7.781844 -5.723522,12.735535 -12.354975,12.638715 -6.631454,-0.09682 -8.657036,-2.672368 -10.611083,-5.637583 -3.170275,-4.810809 -2.37899,-12.648153 1.883276,-16.313692 4.864733,-4.020883 10.220622,-1.874329 12.577768,3.291878 z"
|
||||
id="path2969"
|
||||
sodipodi:nodetypes="cscszscc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="display:none"
|
||||
inkscape:label="wave fill light"
|
||||
id="g4327"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:url(#radialGradient6090);fill-opacity:1;stroke:none;stroke-opacity:1"
|
||||
id="path4112"
|
||||
sodipodi:cx="24.849752"
|
||||
sodipodi:cy="38.908627"
|
||||
sodipodi:rx="20.203051"
|
||||
sodipodi:ry="7.4751287"
|
||||
d="M 45.052803 38.908627 A 20.203051 7.4751287 0 1 1 4.6467018,38.908627 A 20.203051 7.4751287 0 1 1 45.052803 38.908627 z"
|
||||
transform="matrix(0.947409,0,0,1.17786,1.244375,-6.853427)"
|
||||
inkscape:export-xdpi="480"
|
||||
inkscape:export-ydpi="480" />
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cscszscc"
|
||||
id="path4329"
|
||||
d="m 24.811452,24.996951 c -6.049549,-2.467385 -7.648816,3.683738 -6.639688,6.628769 2.195546,6.407462 11.948502,7.605174 18.062738,-3.067723 0,0 0.11598,1.28803 0.180639,1.900859 0.82106,7.781844 -5.621926,12.735535 -12.253379,12.638715 -6.631454,-0.09682 -8.657036,-2.672368 -10.611083,-5.637583 -3.170275,-4.810809 -2.429788,-11.327408 1.78168,-14.840553 4.864733,-3.959831 8.798281,-0.09585 9.479093,2.377516 z"
|
||||
style="display:inline;fill:#99c3f9;fill-opacity:1;fill-rule:evenodd;stroke-width:0.40552941;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer6"
|
||||
inkscape:label="wave stroke 1.3px and fill "
|
||||
style="display:none">
|
||||
<path
|
||||
style="fill:url(#radialGradient6115);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 23.942923,0.9561338 L 37.330543,18.266721 C 46.998995,29.84687 41.49692,43.923891 26.7742,45.000491 C 6.0597413,45.582655 6.5086231,27.37483 11.255313,18.609381 L 23.942923,0.9561338 z "
|
||||
id="path2069"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
style="display:inline;fill:#99c3f9;fill-opacity:1;fill-rule:evenodd;stroke:#094491 icc-color(sRGB, 0.18046845, 0.27837034, 0.41960784);stroke-width:1.33399999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 23.761543,24.179576 c -6.481311,-1.72424 -6.932125,6.183803 -5.453851,8.969604 2.408248,4.538333 12.206251,5.377175 17.706883,-3.282742 0,0 0.07651,2.193563 0.02062,2.77892 -0.534334,5.596549 -6.848986,9.789262 -11.999526,9.621298 -5.243605,-0.170999 -8.282469,-2.549917 -10.154056,-5.379263 -3.036492,-4.590373 -2.048612,-10.811985 1.554101,-13.80496 4.248899,-3.646516 7.44994,-0.562347 8.325827,1.097143 z"
|
||||
id="path2969-6"
|
||||
sodipodi:nodetypes="cscssscc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="display:none"
|
||||
inkscape:label="wave stroke 2px and fill "
|
||||
id="g4217"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:#1b4075;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 35.111358,26.143133 C 28.972772,13.030586 17.560684,17.697957 17.274449,26.949974 C 16.894738,39.223415 34.748874,37.615429 36.715244,41.468778 C 28.821643,47.675479 14.973233,45.226508 10.962289,39.715204 C 6.9574776,34.212326 7.2383598,25.630263 10.784249,19.587632 C 24.158625,0.978654 39.749127,24.383766 35.111358,26.143133 z "
|
||||
id="path2969"
|
||||
sodipodi:nodetypes="cscscc" />
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cscssscc"
|
||||
id="path4219"
|
||||
d="m 23.507553,23.925586 c -6.495438,-1.064032 -6.790118,6.421446 -5.149063,9.579179 2.304561,4.434459 10.903063,6.282759 17.3005,-2.825561 0,0 -0.02509,1.990372 -0.08098,2.575729 -0.534334,5.596549 -6.391805,8.925697 -11.542345,8.757733 -5.243605,-0.170999 -8.247979,-2.119778 -10.001662,-5.023677 -2.772156,-4.590373 -2.467304,-9.592836 0.487345,-12.585811 3.100966,-3.879425 7.831125,-2.714919 8.986201,-0.477592 z"
|
||||
style="display:inline;fill:#99c3f9;fill-opacity:1;fill-rule:evenodd;stroke:#094491 icc-color(sRGB, 0.18046845, 0.27837034, 0.41960784);stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="gradient inner wave "
|
||||
style="display:none">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.1000706;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022"
|
||||
d="M 23.996861,3.5433428 L 36.057351,19.151045 C 44.769741,29.58253 39.419346,42.414092 26.125181,43.508521 C 7.3917365,44.015286 7.4275065,28.119221 12.17284,20.333442 L 23.996861,3.5433428 z "
|
||||
id="path2071"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.46;fill:url(#radialGradient6109);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 23.940758,0.96491709 L 34.727367,14.909752 C 42.647208,24.392311 40.447304,20.283975 28.362481,21.278846 C 25.083165,11.203805 18.13871,11.859899 13.523802,15.675236 L 23.940758,0.96491709 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient6106);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 35.159701,26.173667 C 29.021115,13.06112 18.734027,17.978491 18.447792,27.230508 C 18.068081,39.503949 34.797217,37.645963 36.763587,41.499312 C 28.869986,47.706013 15.021576,45.257042 11.010632,39.745738 C 7.0058197,34.24286 7.2867027,25.660797 10.832592,19.618166 C 24.206968,1.0091879 39.79747,24.4143 35.159701,26.173667 z "
|
||||
style="fill:url(#radialGradient5878);fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 23.55546,23.805666 c -6.490966,-1.345852 -7.700279,4.84717 -6.759909,8.059555 1.100923,3.760845 4.033145,7.507508 11.754513,5.50458 -3.268904,5.846892 -11.255492,4.570412 -13.940353,0.387138 -2.563055,-3.993493 -2.992402,-9.05746 -1.115519,-11.776277 4.049097,-6.655711 9.485026,-4.029293 10.061268,-2.174996 z"
|
||||
id="path3868"
|
||||
sodipodi:nodetypes="cscscc" />
|
||||
sodipodi:nodetypes="cscscc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:label="solid inner wavelet small"
|
||||
id="g4476"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:url(#radialGradient6103);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 35.120795,26.14195 C 28.553327,12.814962 15.685968,17.224233 15.399733,26.47625 C 15.020022,38.749691 32.874158,37.141705 34.840528,40.995054 C 26.946927,47.201755 13.098517,44.752784 9.0875727,39.24148 C 5.0827617,33.738602 5.3636437,25.156539 8.9095327,19.113908 C 22.315509,0.47615954 40.03233,23.660113 35.120795,26.14195 z "
|
||||
id="path4874"
|
||||
sodipodi:nodetypes="cscscc" />
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cscszc"
|
||||
id="path4478"
|
||||
d="m 24.212222,22.108293 c -6.775814,0.165164 -8.06207,7.974188 -6.185196,11.319336 2.609273,4.6505 6.568198,5.544881 11.985838,3.82825 -3.093408,3.363649 -9.442162,4.253857 -13.754465,-0.550821 -2.967234,-3.306031 -3.226596,-7.920245 -1.167373,-11.773724 2.059223,-3.853479 6.165286,-4.924896 9.121196,-2.823041 z"
|
||||
style="fill:#83b8f9;fill-opacity:1;fill-rule:evenodd;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g4486"
|
||||
inkscape:label="solid inner wavelet larger"
|
||||
style="display:none">
|
||||
<path
|
||||
transform="matrix(-0.829136,1.052307,1.239307,7.58326e-2,26.32898,25.58605)"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
d="M 18.788838 12.493138 A 6.7175145 6.7175145 0 1 1 5.3538089,12.493138 A 6.7175145 6.7175145 0 1 1 18.788838 12.493138 z"
|
||||
sodipodi:ry="6.7175145"
|
||||
sodipodi:rx="6.7175145"
|
||||
sodipodi:cy="12.493138"
|
||||
sodipodi:cx="12.071323"
|
||||
id="path4941"
|
||||
style="opacity:0.21999996;color:black;fill:url(#radialGradient6098);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;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"
|
||||
sodipodi:type="arc" />
|
||||
style="fill:#99c3f9;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 21.55277,22.974939 c -5.188765,1.005551 -6.173294,6.973638 -4.694095,10.155871 2.191227,4.714034 8.449957,8.07696 17.664862,0.691234 -5.828901,10.827975 -14.873199,7.043001 -17.313798,4.977307 -1.97159,-1.66873 -4.164846,-4.855384 -4.11832,-8.341257 0.09522,-7.134172 6.604293,-9.266569 8.461351,-7.483155 z"
|
||||
id="path4488"
|
||||
sodipodi:nodetypes="cscssc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Finish"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="display:inline;opacity:0.68800001;fill:url(#radialGradient4375);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.01508224;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 23.956644,1.939572 -11.98159,18.384686 c -3.9618093,5.166305 -3.6931007,11.439356 -2.4054307,15.8855 5.3079527,10.817522 14.5668877,9.659123 14.5668877,9.659123 0,0 6.868403,-0.005 11.475831,-5.120874 2.283123,-2.535051 5.325726,-9.801674 2.662706,-16.234991 -0.49634,-1.028711 -3.75284,-6.551522 -4.429455,-7.554788 z"
|
||||
id="path4279"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccsccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 21 KiB |
|
@ -1,433 +0,0 @@
|
|||
/* XPM */
|
||||
static char * deluge_xpm[] = {
|
||||
"32 32 398 2",
|
||||
" c None",
|
||||
". c #7B869E",
|
||||
"+ c #7B869D",
|
||||
"@ c #A5ADBE",
|
||||
"# c #A7AFBE",
|
||||
"$ c #8894A9",
|
||||
"% c #A4ADBD",
|
||||
"& c #A7AFBF",
|
||||
"* c #95A0B4",
|
||||
"= c #6F7E99",
|
||||
"- c #A0AABD",
|
||||
"; c #8594AD",
|
||||
"> c #8A98B1",
|
||||
", c #A7B3C6",
|
||||
"' c #8496AF",
|
||||
") c #5B6F90",
|
||||
"! c #8F9EB6",
|
||||
"~ c #8194AF",
|
||||
"{ c #7C91AF",
|
||||
"] c #8096B3",
|
||||
"^ c #859BB8",
|
||||
"/ c #A0B1C8",
|
||||
"( c #728CAD",
|
||||
"_ c #758BAA",
|
||||
": c #849AB7",
|
||||
"< c #6F8AAE",
|
||||
"[ c #7591B3",
|
||||
"} c #7995B8",
|
||||
"| c #7A97B9",
|
||||
"1 c #86A0C0",
|
||||
"2 c #93ABC7",
|
||||
"3 c #6585AE",
|
||||
"4 c #5A78A0",
|
||||
"5 c #879FBE",
|
||||
"6 c #6485AF",
|
||||
"7 c #698CB5",
|
||||
"8 c #6E91BA",
|
||||
"9 c #7295BD",
|
||||
"0 c #7497BF",
|
||||
"a c #7296BF",
|
||||
"b c #89A6C8",
|
||||
"c c #809FC4",
|
||||
"d c #436B9C",
|
||||
"e c #7B99BE",
|
||||
"f c #5378A6",
|
||||
"g c #446A9A",
|
||||
"h c #4B6F9C",
|
||||
"i c #5577A2",
|
||||
"j c #6183AE",
|
||||
"k c #6D92BD",
|
||||
"l c #7097C3",
|
||||
"m c #6E96C1",
|
||||
"n c #8DACCF",
|
||||
"o c #6C93BF",
|
||||
"p c #587DA9",
|
||||
"q c #446592",
|
||||
"r c #1B4075",
|
||||
"s c #204478",
|
||||
"t c #2F5081",
|
||||
"u c #496791",
|
||||
"v c #4F6B94",
|
||||
"w c #5879A4",
|
||||
"x c #6B93BE",
|
||||
"y c #6E97C2",
|
||||
"z c #8EADCF",
|
||||
"A c #5E89BA",
|
||||
"B c #3E669A",
|
||||
"C c #567198",
|
||||
"D c #24477A",
|
||||
"E c #315281",
|
||||
"F c #365685",
|
||||
"G c #3A5A86",
|
||||
"H c #405E8A",
|
||||
"I c #567197",
|
||||
"J c #577298",
|
||||
"K c #516E97",
|
||||
"L c #6187B3",
|
||||
"M c #7098C4",
|
||||
"N c #85A7CC",
|
||||
"O c #5280B6",
|
||||
"P c #305C92",
|
||||
"Q c #5A759B",
|
||||
"R c #2B4D7E",
|
||||
"S c #3B5A88",
|
||||
"T c #4C6991",
|
||||
"U c #597397",
|
||||
"V c #60799D",
|
||||
"W c #5C769A",
|
||||
"X c #587298",
|
||||
"Y c #637C9E",
|
||||
"Z c #5D769B",
|
||||
"` c #526F96",
|
||||
" . c #5B84B0",
|
||||
".. c #759BC6",
|
||||
"+. c #7398C4",
|
||||
"@. c #325D95",
|
||||
"#. c #4C6A94",
|
||||
"$. c #3B5B87",
|
||||
"%. c #44628C",
|
||||
"&. c #5B7599",
|
||||
"*. c #6D84A5",
|
||||
"=. c #647D9F",
|
||||
"-. c #6784A8",
|
||||
";. c #7194BD",
|
||||
">. c #769EC9",
|
||||
",. c #709AC4",
|
||||
"'. c #7293B8",
|
||||
"). c #6D86A9",
|
||||
"!. c #526E96",
|
||||
"~. c #5782B1",
|
||||
"{. c #7A9EC8",
|
||||
"]. c #5D8ABC",
|
||||
"^. c #325485",
|
||||
"/. c #4F6C94",
|
||||
"(. c #3D5C88",
|
||||
"_. c #5E779B",
|
||||
":. c #7489A8",
|
||||
"<. c #667FA1",
|
||||
"[. c #8BA3C1",
|
||||
"}. c #8BAED4",
|
||||
"|. c #83A9D3",
|
||||
"1. c #82A8D2",
|
||||
"2. c #7FA6D1",
|
||||
"3. c #7CA4CE",
|
||||
"4. c #7AA0CC",
|
||||
"5. c #708EB4",
|
||||
"6. c #5F789C",
|
||||
"7. c #4E6C96",
|
||||
"8. c #5986B9",
|
||||
"9. c #7FA2CA",
|
||||
"0. c #4B7CB2",
|
||||
"a. c #2B5387",
|
||||
"b. c #567199",
|
||||
"c. c #305282",
|
||||
"d. c #506B93",
|
||||
"e. c #7187A5",
|
||||
"f. c #6F85A3",
|
||||
"g. c #8EA4BF",
|
||||
"h. c #9DBBDC",
|
||||
"i. c #8EB2D9",
|
||||
"j. c #8DB1D8",
|
||||
"k. c #8AAED6",
|
||||
"l. c #84AAD3",
|
||||
"m. c #7EA5D0",
|
||||
"n. c #779FCC",
|
||||
"o. c #6C8BB0",
|
||||
"p. c #5E779A",
|
||||
"q. c #5178A6",
|
||||
"r. c #5C89BC",
|
||||
"s. c #7198C4",
|
||||
"t. c #325486",
|
||||
"u. c #4C6993",
|
||||
"v. c #5E789B",
|
||||
"w. c #778CA8",
|
||||
"x. c #7389A7",
|
||||
"y. c #B6CADF",
|
||||
"z. c #9ABBDF",
|
||||
"A. c #9BBCE0",
|
||||
"B. c #9ABCDF",
|
||||
"C. c #97B9DE",
|
||||
"D. c #93B6DB",
|
||||
"E. c #8CB1D8",
|
||||
"F. c #85ABD4",
|
||||
"G. c #7CA4CF",
|
||||
"H. c #749BC9",
|
||||
"I. c #6783A6",
|
||||
"J. c #56739C",
|
||||
"K. c #5283B8",
|
||||
"L. c #6F96C3",
|
||||
"M. c #4E7BAE",
|
||||
"N. c #42618D",
|
||||
"O. c #3E5C88",
|
||||
"P. c #667E9F",
|
||||
"Q. c #7288A7",
|
||||
"R. c #8EA1BA",
|
||||
"S. c #B9CFE7",
|
||||
"T. c #A6C5E6",
|
||||
"U. c #A7C6E6",
|
||||
"V. c #A5C4E6",
|
||||
"W. c #A1C1E3",
|
||||
"X. c #93B6DC",
|
||||
"Y. c #8AAFD7",
|
||||
"Z. c #80A7D1",
|
||||
"`. c #769FCC",
|
||||
" + c #6992BF",
|
||||
".+ c #5D789D",
|
||||
"++ c #5483B9",
|
||||
"@+ c #5281B7",
|
||||
"#+ c #688FBB",
|
||||
"$+ c #557198",
|
||||
"%+ c #1E4277",
|
||||
"&+ c #3F5E88",
|
||||
"*+ c #687FA0",
|
||||
"=+ c #6F85A5",
|
||||
"-+ c #A0B2C8",
|
||||
";+ c #BFD5ED",
|
||||
">+ c #B3CFED",
|
||||
",+ c #B2CFED",
|
||||
"'+ c #AFCCEB",
|
||||
")+ c #A9C8E8",
|
||||
"!+ c #A2C2E4",
|
||||
"~+ c #99BADF",
|
||||
"{+ c #78A1CD",
|
||||
"]+ c #6C97C6",
|
||||
"^+ c #5D88B7",
|
||||
"/+ c #4779B2",
|
||||
"(+ c #7295BE",
|
||||
"_+ c #3C6699",
|
||||
":+ c #2B4F83",
|
||||
"<+ c #59749A",
|
||||
"[+ c #657D9E",
|
||||
"}+ c #6C83A3",
|
||||
"|+ c #A3B4CA",
|
||||
"1+ c #C7DDF2",
|
||||
"2+ c #BFD9F4",
|
||||
"3+ c #BDD7F2",
|
||||
"4+ c #B8D3F0",
|
||||
"5+ c #B0CDEC",
|
||||
"6+ c #9CBDE0",
|
||||
"7+ c #91B4DA",
|
||||
"8+ c #79A1CD",
|
||||
"9+ c #5F8DBF",
|
||||
"0+ c #4578B1",
|
||||
"a+ c #6B90BA",
|
||||
"b+ c #446A9B",
|
||||
"c+ c #2D5184",
|
||||
"d+ c #577299",
|
||||
"e+ c #305181",
|
||||
"f+ c #5B749A",
|
||||
"g+ c #6C82A2",
|
||||
"h+ c #98AAC3",
|
||||
"i+ c #D2E5F6",
|
||||
"j+ c #CAE2FA",
|
||||
"k+ c #C6DEF8",
|
||||
"l+ c #BED8F3",
|
||||
"m+ c #B4D0EE",
|
||||
"n+ c #9EBEE1",
|
||||
"o+ c #92B5DB",
|
||||
"p+ c #78A0CD",
|
||||
"q+ c #6B96C5",
|
||||
"r+ c #5D8BBE",
|
||||
"s+ c #5081B7",
|
||||
"t+ c #4276AF",
|
||||
"u+ c #6489B4",
|
||||
"v+ c #4B6E9B",
|
||||
"w+ c #2C5284",
|
||||
"x+ c #234679",
|
||||
"y+ c #4C6990",
|
||||
"z+ c #6C82A3",
|
||||
"A+ c #738AA9",
|
||||
"B+ c #D9E9F9",
|
||||
"C+ c #D3E9FF",
|
||||
"D+ c #CCE3FB",
|
||||
"E+ c #C2DBF5",
|
||||
"F+ c #B6D2EF",
|
||||
"G+ c #AAC8E8",
|
||||
"H+ c #9DBEE1",
|
||||
"I+ c #90B3DA",
|
||||
"J+ c #759ECB",
|
||||
"K+ c #6893C4",
|
||||
"L+ c #5A89BC",
|
||||
"M+ c #4D7EB5",
|
||||
"N+ c #3F73AD",
|
||||
"O+ c #6386B1",
|
||||
"P+ c #486A96",
|
||||
"Q+ c #2A5082",
|
||||
"R+ c #58739A",
|
||||
"S+ c #375685",
|
||||
"T+ c #5F789B",
|
||||
"U+ c #ADBED3",
|
||||
"V+ c #D4E9FE",
|
||||
"W+ c #CFE6FD",
|
||||
"X+ c #C2DCF6",
|
||||
"Y+ c #A8C7E7",
|
||||
"Z+ c #719BC9",
|
||||
"`+ c #6490C1",
|
||||
" @ c #5685BA",
|
||||
".@ c #487AB2",
|
||||
"+@ c #3F70A8",
|
||||
"@@ c #6B8BB2",
|
||||
"#@ c #3F608D",
|
||||
"$@ c #536F97",
|
||||
"%@ c #1F4377",
|
||||
"&@ c #224679",
|
||||
"*@ c #46638D",
|
||||
"=@ c #6880A0",
|
||||
"-@ c #6F86A5",
|
||||
";@ c #BBCDE0",
|
||||
">@ c #CEE4FC",
|
||||
",@ c #C0DAF4",
|
||||
"'@ c #A5C4E5",
|
||||
")@ c #96B9DD",
|
||||
"!@ c #88AED6",
|
||||
"~@ c #7CA3CE",
|
||||
"{@ c #719BC8",
|
||||
"]@ c #6692C2",
|
||||
"^@ c #5987BA",
|
||||
"/@ c #4C7CB3",
|
||||
"(@ c #4672A5",
|
||||
"_@ c #728DB1",
|
||||
":@ c #385884",
|
||||
"<@ c #3C5C89",
|
||||
"[@ c #385886",
|
||||
"}@ c #26497B",
|
||||
"|@ c #4B6790",
|
||||
"1@ c #6980A1",
|
||||
"2@ c #768BA9",
|
||||
"3@ c #9CB1CA",
|
||||
"4@ c #B9D3EE",
|
||||
"5@ c #ADCAEA",
|
||||
"6@ c #9EBFE2",
|
||||
"7@ c #90B4DA",
|
||||
"8@ c #87ACD5",
|
||||
"9@ c #7EA4CE",
|
||||
"0@ c #749CC8",
|
||||
"a@ c #6993C1",
|
||||
"b@ c #5C89BB",
|
||||
"c@ c #4F7DB1",
|
||||
"d@ c #5D80AC",
|
||||
"e@ c #617EA4",
|
||||
"f@ c #3A547B",
|
||||
"g@ c #2A4C7E",
|
||||
"h@ c #1C4176",
|
||||
"i@ c #27497B",
|
||||
"j@ c #45628D",
|
||||
"k@ c #60799C",
|
||||
"l@ c #7288A6",
|
||||
"m@ c #7D91AD",
|
||||
"n@ c #859FBE",
|
||||
"o@ c #93B4D7",
|
||||
"p@ c #8FB2D8",
|
||||
"q@ c #86ABD2",
|
||||
"r@ c #7EA4CD",
|
||||
"s@ c #759CC8",
|
||||
"t@ c #6A94C2",
|
||||
"u@ c #5C89BA",
|
||||
"v@ c #547EAE",
|
||||
"w@ c #7994B6",
|
||||
"x@ c #44628A",
|
||||
"y@ c #375786",
|
||||
"z@ c #476590",
|
||||
"A@ c #4C6890",
|
||||
"B@ c #5B7498",
|
||||
"C@ c #667EA0",
|
||||
"D@ c #6F86A7",
|
||||
"E@ c #738CAD",
|
||||
"F@ c #7592B7",
|
||||
"G@ c #779AC1",
|
||||
"H@ c #779DC7",
|
||||
"I@ c #6993C0",
|
||||
"J@ c #5B86B6",
|
||||
"K@ c #7B97BB",
|
||||
"L@ c #5A769E",
|
||||
"M@ c #394E6E",
|
||||
"N@ c #21426C",
|
||||
"O@ c #45638E",
|
||||
"P@ c #496691",
|
||||
"Q@ c #1D4176",
|
||||
"R@ c #41608B",
|
||||
"S@ c #4C6891",
|
||||
"T@ c #506D95",
|
||||
"U@ c #4E6B94",
|
||||
"V@ c #4B6A95",
|
||||
"W@ c #5176A3",
|
||||
"X@ c #7C99BC",
|
||||
"Y@ c #6280A8",
|
||||
"Z@ c #3E567A",
|
||||
"`@ c #25446F",
|
||||
" # c #395987",
|
||||
".# c #214579",
|
||||
"+# c #294C7E",
|
||||
"@# c #315383",
|
||||
"## c #3D5C8A",
|
||||
"$# c #43618D",
|
||||
"%# c #5C769C",
|
||||
"&# c #6D84A6",
|
||||
"*# c #405E8B",
|
||||
"=# c #375179",
|
||||
"-# c #1B304F",
|
||||
";# c #2E5181",
|
||||
"># c #415F8C",
|
||||
",# c #547098",
|
||||
"'# c #486590",
|
||||
")# c #43618E",
|
||||
"!# c #476690",
|
||||
"~# c #6981A4",
|
||||
"{# c #677FA3",
|
||||
"]# c #496690",
|
||||
"^# c #2E5283",
|
||||
"/# c #294467",
|
||||
"(# c #32507C",
|
||||
"_# c #325684",
|
||||
":# c #335484",
|
||||
"<# c #3F5E8B",
|
||||
"[# c #3E5F8D",
|
||||
"}# c #345887",
|
||||
"|# c #305383",
|
||||
"1# c #2A4466",
|
||||
" ",
|
||||
" . + ",
|
||||
" @ # ",
|
||||
" $ % & * ",
|
||||
" = - ; > , ' ",
|
||||
" ) ! ~ { ] ^ / ( ",
|
||||
" _ : < [ } | 1 2 3 ",
|
||||
" 4 5 6 7 8 9 0 a b c ",
|
||||
" d e f g h i j k l m n o ",
|
||||
" p q r r s t u v w x y z A ",
|
||||
" B C r D E F G H I J K L M N O ",
|
||||
" P Q R S T U V W I X Y Z ` ...+. ",
|
||||
" @.#.$.%.&.*.=.-.;.>.,.'.).V !.~.{.]. ",
|
||||
" ^./.(._.:.<.[.}.|.1.2.3.4.5.6.7.8.9.0. ",
|
||||
" a.b.c.d.e.f.g.h.i.i.j.k.l.m.n.o.p.q.r.s. ",
|
||||
" t.u.F v.w.x.y.z.A.B.C.D.E.F.G.H.I.J.K.L.M. ",
|
||||
" N.c.O.P.Q.R.S.T.U.V.W.A.X.Y.Z.`. +.+++@+#+ ",
|
||||
" $+%+&+*+=+-+;+>+,+'+)+!+~+i.|.{+]+^+++/+(+_+ ",
|
||||
" :+<+r G [+}+|+1+2+3+4+5+T.6+7+F.8+]+9+K.0+a+b+ ",
|
||||
" c+d+r e+f+g+h+i+j+k+l+m+)+n+o+l.p+q+r+s+t+u+v+ ",
|
||||
" w+Q r x+y+z+A+B+C+D+E+F+G+H+I+|.J+K+L+M+N+O+P+ ",
|
||||
" Q+R+r r S+T+*+U+V+W+X+F+Y+A.j.2.Z+`+ @.@+@@@#@ ",
|
||||
" $@%@r &@*@=@-@;@>@,@,+'@)@!@~@{@]@^@/@(@_@:@ ",
|
||||
" <@[@r r }@|@1@2@3@4@5@6@7@8@9@0@a@b@c@d@e@f@ ",
|
||||
" g@b.h@r r i@j@k@l@m@n@o@p@q@r@s@t@u@v@w@x@ ",
|
||||
" y@z@r r r %@y@A@B@C@D@E@F@G@H@I@J@K@L@M@ ",
|
||||
" N@O@P@Q@r r r s e+R@S@T@` U@V@W@X@Y@Z@ ",
|
||||
" `@ #Q y@Q@r r .#+#@#[@##$#%#&#*#=# ",
|
||||
" -#;#>#d+,#'#)#!#u.Q ~#{#]#^#/# ",
|
||||
" (#_#:# #<#$#[#}#|#1# ",
|
||||
" ",
|
||||
" "};
|
Before Width: | Height: | Size: 722 B After Width: | Height: | Size: 610 B |
|
@ -1,5 +1,6 @@
|
|||
<?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://creativecommons.org/ns#"
|
||||
|
@ -8,17 +9,17 @@
|
|||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="744.09448819"
|
||||
height="1052.3622047"
|
||||
width="128"
|
||||
height="128"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
sodipodi:docbase="/home/andrew"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="dht.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/dht16.png"
|
||||
inkscape:export-xdpi="1.9579109"
|
||||
inkscape:export-ydpi="1.9579109">
|
||||
inkscape:export-ydpi="1.9579109"
|
||||
version="1.1">
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:perspective
|
||||
|
@ -39,16 +40,18 @@
|
|||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.49497475"
|
||||
inkscape:cx="217.74745"
|
||||
inkscape:cy="658.24369"
|
||||
inkscape:zoom="5.6568542"
|
||||
inkscape:cx="51.409667"
|
||||
inkscape:cy="66.916781"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="1024"
|
||||
inkscape:window-height="711"
|
||||
inkscape:window-x="1280"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false" />
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
|
@ -57,117 +60,104 @@
|
|||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
id="layer1"
|
||||
transform="translate(0,-924.36219)">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:#8dd35f;fill-opacity:1;stroke:#000000;stroke-width:2.48568825;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3437"
|
||||
sodipodi:cx="325.71429"
|
||||
sodipodi:cy="215.21933"
|
||||
sodipodi:rx="85.714287"
|
||||
sodipodi:ry="85.714287"
|
||||
d="M 411.42858,215.21933 A 85.714287,85.714287 0 1 1 240.00001,215.21933 A 85.714287,85.714287 0 1 1 411.42858,215.21933 z"
|
||||
transform="matrix(1.6800176,0,0,1.6800176,-275.15013,-73.06899)"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:#5599ff;fill-opacity:1;stroke:#000000;stroke-width:2.81711386;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3439"
|
||||
sodipodi:cx="325.71429"
|
||||
sodipodi:cy="215.21933"
|
||||
sodipodi:rx="85.714287"
|
||||
sodipodi:ry="85.714287"
|
||||
d="M 411.42858,215.21933 A 85.714287,85.714287 0 1 1 240.00001,215.21933 A 85.714287,85.714287 0 1 1 411.42858,215.21933 z"
|
||||
transform="matrix(1.4823682,0,0,1.4823682,82.877111,311.11956)"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:#8dd35f;fill-opacity:1;stroke:#000000;stroke-width:3.2505155;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3441"
|
||||
sodipodi:cx="325.71429"
|
||||
sodipodi:cy="215.21933"
|
||||
sodipodi:rx="85.714287"
|
||||
sodipodi:ry="85.714287"
|
||||
d="M 411.42858,215.21933 A 85.714287,85.714287 0 1 1 240.00001,215.21933 A 85.714287,85.714287 0 1 1 411.42858,215.21933 z"
|
||||
transform="matrix(1.2847193,0,0,1.2847193,-104.04248,489.18828)"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:#5599ff;fill-opacity:1;stroke:#000000;stroke-width:3.29273035;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3443"
|
||||
sodipodi:cx="325.71429"
|
||||
sodipodi:cy="215.21933"
|
||||
sodipodi:rx="85.714287"
|
||||
sodipodi:ry="85.714287"
|
||||
d="M 411.42858,215.21933 A 85.714287,85.714287 0 1 1 240.00001,215.21933 A 85.714287,85.714287 0 1 1 411.42858,215.21933 z"
|
||||
transform="matrix(1.2682484,0,0,1.2682484,-282.25061,288.22576)"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#000000;stroke-width:4.08935796;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3445"
|
||||
sodipodi:cx="325.71429"
|
||||
sodipodi:cy="215.21933"
|
||||
sodipodi:rx="85.714287"
|
||||
sodipodi:ry="85.714287"
|
||||
d="M 411.42858,215.21933 A 85.714287,85.714287 0 1 1 240.00001,215.21933 A 85.714287,85.714287 0 1 1 411.42858,215.21933 z"
|
||||
transform="matrix(1.0211872,0,0,1.0211872,244.38469,139.31302)"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922" />
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.04848194;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 409.97291,329.4348 L 487.75261,344.44338"
|
||||
id="path3691"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:8.96934509;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 423.06163,747.83054 L 464.53048,708.21583"
|
||||
id="path3693"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:11.37722969;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 315.62445,431.58184 L 310.19863,651.84005"
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 51.371573,974.02754 4.703341,36.73196"
|
||||
id="path3695"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
sodipodi:nodetypes="cc" />
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.04848194;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 143.15025,452.25537 L 171.01599,395.38786"
|
||||
id="path3697"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:11.37722969;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 360.45007,405.53416 L 474.8177,539.94039"
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 63.256291,969.16777 23.581249,23.7999"
|
||||
id="path3699"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
sodipodi:nodetypes="cc" />
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 31.776499,981.71786 4.647106,-9.48366"
|
||||
id="path3697"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 69.943212,952.70635 12.971145,2.50294"
|
||||
id="path3691"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 67.557838,1019.8019 14.681475,-5.7109"
|
||||
id="path3693"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<circle
|
||||
style="opacity:1;fill:#16c816;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3437"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
cx="47.440121"
|
||||
cy="951.93445"
|
||||
r="24.014807" />
|
||||
<circle
|
||||
style="opacity:1;fill:#4c90e8;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3443"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
cx="23.889254"
|
||||
cy="997.40765"
|
||||
r="18.128822" />
|
||||
<circle
|
||||
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3445"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
cx="95.936546"
|
||||
cy="960.33722"
|
||||
r="14.597237" />
|
||||
<circle
|
||||
style="opacity:1;fill:#4c90e8;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3439"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
cx="99.223282"
|
||||
cy="1006.9724"
|
||||
r="21.189529" />
|
||||
<circle
|
||||
style="opacity:1;fill:#16c816;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3441"
|
||||
inkscape:export-filename="/home/andrew/dht16-2.png"
|
||||
inkscape:export-xdpi="3.8918922"
|
||||
inkscape:export-ydpi="3.8918922"
|
||||
cx="54.840214"
|
||||
cy="1026.1222"
|
||||
r="18.364264" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 793 B After Width: | Height: | Size: 764 B |
|
@ -1,90 +1,515 @@
|
|||
<?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://creativecommons.org/ns#"
|
||||
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="744.09448819"
|
||||
height="1052.3622047"
|
||||
id="svg3535"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3440"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/downloading16.png"
|
||||
inkscape:export-xdpi="1.7075963"
|
||||
inkscape:export-ydpi="1.7075963"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="downloading.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
inkscape:export-xdpi="30"
|
||||
inkscape:export-ydpi="30"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="TRUE"
|
||||
version="1.1"
|
||||
inkscape:export-filename="/home/calum/projects/deluge-logo/deluge_download16.svg.png">
|
||||
<defs
|
||||
id="defs3537">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 526.18109 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||
id="perspective3543" />
|
||||
id="defs3">
|
||||
<color-profile
|
||||
name="sRGB"
|
||||
xlink:href="/usr/share/color/icc/sRGB.icc"
|
||||
id="color-profile4484" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2973">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2975" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2977" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4126">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4128" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.16494845;"
|
||||
offset="1.0000000"
|
||||
id="stop4130" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4114">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4116" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4118" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3962">
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3964" />
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.15517241"
|
||||
id="stop4134" />
|
||||
<stop
|
||||
style="stop-color:#4074ae;stop-opacity:1.0000000;"
|
||||
offset="0.75000000"
|
||||
id="stop4346" />
|
||||
<stop
|
||||
style="stop-color:#36486c;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3966" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="13.994944"
|
||||
fy="33.506763"
|
||||
fx="-10.089286"
|
||||
cy="33.506763"
|
||||
cx="-10.089286"
|
||||
gradientTransform="matrix(1,0,0,0.791446,-14.01786,-11.28667)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4019"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
gradientTransform="matrix(1,0,0,0.792374,-19.58761,2.818569)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4004"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.792374,0,6.785475)"
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
id="radialGradient3999"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.341185,-0.153831,1.08001,2.395374,-15.42222,-25.62103)"
|
||||
r="13.994946"
|
||||
fy="24.241488"
|
||||
fx="61.662098"
|
||||
cy="24.241488"
|
||||
cx="61.662098"
|
||||
id="radialGradient3943"
|
||||
xlink:href="#linearGradient1312"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient1312">
|
||||
<stop
|
||||
id="stop1314"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop1316"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3993">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3995" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop3997" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient3866"
|
||||
cx="-22.375"
|
||||
cy="18.499998"
|
||||
fx="-22.375"
|
||||
fy="18.499998"
|
||||
r="14.33462"
|
||||
gradientTransform="matrix(1,0,0,1.140022,40.17678,1.347091)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="12.289036"
|
||||
fy="63.965388"
|
||||
fx="15.115514"
|
||||
cy="63.965388"
|
||||
cx="15.115514"
|
||||
gradientTransform="scale(1.643990,0.608276)"
|
||||
id="radialGradient5000"
|
||||
xlink:href="#linearGradient4114"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4989">
|
||||
<stop
|
||||
id="stop4991"
|
||||
offset="0"
|
||||
style="stop-color:#47abff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4993"
|
||||
offset="0.35955963"
|
||||
style="stop-color:#53a6ff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4995"
|
||||
offset="0.79518169"
|
||||
style="stop-color:#286cbb;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4997"
|
||||
offset="1"
|
||||
style="stop-color:#003d87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4977">
|
||||
<stop
|
||||
id="stop4979"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4981"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
id="filter6406"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000000000000002"
|
||||
x="-0.050000000000000017">
|
||||
<feFlood
|
||||
id="feFlood6408"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
k1="8.1400000000000006"
|
||||
k2="4.9299999999999997"
|
||||
k3="5.5899999999999999"
|
||||
k4="-7.2400000000000002" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur"
|
||||
in="composite" />
|
||||
<feOffset
|
||||
id="feOffset6414"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4258">
|
||||
<feFlood
|
||||
flood-opacity="0.80200501253132828"
|
||||
flood-color="rgb(197,204,222)"
|
||||
result="flood"
|
||||
id="feFlood4260" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4262"
|
||||
flood-opacity="0.80000000000000004" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.5"
|
||||
result="blur"
|
||||
id="feGaussianBlur4264" />
|
||||
<feOffset
|
||||
dx="-0"
|
||||
dy="-0.5"
|
||||
result="offset"
|
||||
id="feOffset4266" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4268" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter4290"
|
||||
inkscape:label="Drop Shadow"
|
||||
style="color-interpolation-filters:sRGB;">
|
||||
<feFlood
|
||||
id="feFlood4292"
|
||||
result="flood"
|
||||
flood-color="rgb(255,255,255)"
|
||||
flood-opacity="0.59999999999999998" />
|
||||
<feComposite
|
||||
id="feComposite4294"
|
||||
result="composite1"
|
||||
operator="in"
|
||||
in2="SourceGraphic"
|
||||
in="flood" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4296"
|
||||
result="blur"
|
||||
stdDeviation="6.7999999999999998"
|
||||
in="composite1" />
|
||||
<feOffset
|
||||
id="feOffset4298"
|
||||
result="offset"
|
||||
dy="1.9000000000000004"
|
||||
dx="0.69999999999999996"
|
||||
flood-opacity="0.68000000000000005" />
|
||||
<feComposite
|
||||
id="feComposite4300"
|
||||
result="composite2"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.17254902"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.49497475"
|
||||
inkscape:cx="183.87749"
|
||||
inkscape:cy="492.74541"
|
||||
inkscape:document-units="px"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="22.077879"
|
||||
inkscape:cy="23.209575"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="686"
|
||||
inkscape:window-height="711"
|
||||
inkscape:window-x="1941"
|
||||
inkscape:window-y="99" />
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
width="512px"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="4.331,47"
|
||||
id="guide3056"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(99,99,125)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="23.9375,24.5625"
|
||||
id="guide3058"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="40,25.375"
|
||||
id="guide5866" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="38.448931,29.742679"
|
||||
id="guide5868" />
|
||||
<sodipodi:guide
|
||||
position="3.8890873,1"
|
||||
orientation="0,1"
|
||||
id="guide4521"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(106,106,146)" />
|
||||
<sodipodi:guide
|
||||
position="1,17.324"
|
||||
orientation="1,0"
|
||||
id="guide4523"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(152,152,181)" />
|
||||
<sodipodi:guide
|
||||
position="47,33.852737"
|
||||
orientation="1,0"
|
||||
id="guide4525"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(121,121,172)" />
|
||||
<sodipodi:guide
|
||||
position="13.433908,46"
|
||||
orientation="0,1"
|
||||
id="guide4527"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,40,0)" />
|
||||
<sodipodi:guide
|
||||
position="8,36.135"
|
||||
orientation="1,0"
|
||||
id="guide4529"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,11,0)" />
|
||||
<sodipodi:guide
|
||||
position="40,26.436782"
|
||||
orientation="1,0"
|
||||
id="guide4531"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,6,0)" />
|
||||
<sodipodi:guide
|
||||
position="34.052,2"
|
||||
orientation="0,1"
|
||||
id="guide4533"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,0,5)" />
|
||||
<sodipodi:guide
|
||||
position="36.879276,26"
|
||||
orientation="0,1"
|
||||
id="guide4542"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="43.660795,14.731391"
|
||||
orientation="0,1"
|
||||
id="guide4546" />
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4225" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3540">
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Tuomas Kuosmanen</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>internet</rdf:li>
|
||||
<rdf:li>tools</rdf:li>
|
||||
<rdf:li>applications</rdf:li>
|
||||
<rdf:li>category</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1"
|
||||
inkscape:label="base droplet"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#8dd35f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891000000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 337.34641,113.574 L 612.77782,444.9064 C 811.69255,666.55556 698.49522,935.996 395.596,956.6026 C -30.5748,967.74548 -7.5325,620.6669 110.06775,461.45596 L 337.34641,113.574 z"
|
||||
style="fill:#16c816;fill-opacity:1;fill-rule:evenodd;stroke:#129b00;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;"
|
||||
d="M 23.295622,2.4822833 35.490217,21.297229 C 43.30243,33.350632 35.08691,46.383433 23.287956,46.383433 11.489002,46.383433 3.2602089,33.346045 11.079504,21.30073 Z"
|
||||
id="path2069"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
sodipodi:nodetypes="cszsc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.90726715,0,0,0.89972834,2.9383017,2.518482)" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="seed/download icon"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#005000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4364-1"
|
||||
width="8.4799452"
|
||||
height="4.5"
|
||||
x="-28.148525"
|
||||
y="-23.929176"
|
||||
transform="scale(-1,-1)" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:21.67123985;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022"
|
||||
d="M 339.91139,163.01784 L 587.46485,461.81598 C 776.20058,681.7222 655.61789,907.17006 386.12406,928.1221 C 6.36766,937.82375 31.27865,636.36028 127.47397,487.30722 L 339.91139,163.01784 z"
|
||||
id="path2071"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
<path
|
||||
style="fill:#b7e399;fill-opacity:1;stroke:#000000;stroke-width:14.10382843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 362.09611,847.31541 C 292.72038,779.25618 223.06258,711.37264 153.68685,643.3136 C 191.01405,643.2453 228.43453,643.3817 265.76192,643.3136 C 265.76192,562.7203 265.76192,482.12699 265.76192,401.53369 C 332.08337,401.53369 398.40502,401.53369 464.72665,401.53369 C 464.72665,481.91704 464.72665,562.30041 464.72665,642.68397 C 499.11804,642.62091 533.59544,642.74683 567.98683,642.68397 C 499.37714,710.99547 430.70559,779.00372 362.09611,847.31541 z"
|
||||
id="rect2634"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#005000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path5039"
|
||||
sodipodi:sides="3"
|
||||
sodipodi:cx="23.9375"
|
||||
sodipodi:cy="21.1875"
|
||||
sodipodi:r1="4.6958261"
|
||||
sodipodi:r2="2.347913"
|
||||
sodipodi:arg1="0.52359878"
|
||||
sodipodi:arg2="1.5707963"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 28.004205,23.535413 -4.066705,0 -4.066705,0 2.033353,-3.521869 2.033352,-3.52187 2.033352,3.521869 z"
|
||||
transform="matrix(-1.9671947,0,0,-1.1073664,71.085518,58.074825)"
|
||||
inkscape:transform-center-y="-1.3000008" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#005000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4364-1-3"
|
||||
width="8.4799452"
|
||||
height="4.5"
|
||||
x="-28.168579"
|
||||
y="-30.214588"
|
||||
transform="scale(-1,-1)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 686 B After Width: | Height: | Size: 566 B |
|
@ -1,101 +1,492 @@
|
|||
<?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://creativecommons.org/ns#"
|
||||
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="744.09448819"
|
||||
height="1052.3622047"
|
||||
id="svg8143"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3440"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/inactive16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417"
|
||||
sodipodi:docname="inactive.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="deluge_paused.svg"
|
||||
inkscape:export-xdpi="960"
|
||||
inkscape:export-ydpi="960"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="TRUE"
|
||||
version="1.1"
|
||||
inkscape:export-filename="/home/calum/projects/deluge-logo/deluge.512.x.png">
|
||||
<defs
|
||||
id="defs8145">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 526.18109 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||
id="perspective8151" />
|
||||
id="defs3">
|
||||
<color-profile
|
||||
name="sRGB"
|
||||
xlink:href="/usr/share/color/icc/sRGB.icc"
|
||||
id="color-profile4484" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2973">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2975" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2977" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4126">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4128" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.16494845;"
|
||||
offset="1.0000000"
|
||||
id="stop4130" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4114">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4116" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4118" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3962">
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3964" />
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.15517241"
|
||||
id="stop4134" />
|
||||
<stop
|
||||
style="stop-color:#4074ae;stop-opacity:1.0000000;"
|
||||
offset="0.75000000"
|
||||
id="stop4346" />
|
||||
<stop
|
||||
style="stop-color:#36486c;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3966" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="13.994944"
|
||||
fy="33.506763"
|
||||
fx="-10.089286"
|
||||
cy="33.506763"
|
||||
cx="-10.089286"
|
||||
gradientTransform="matrix(1,0,0,0.791446,-14.01786,-11.28667)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4019"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
gradientTransform="matrix(1,0,0,0.792374,-19.58761,2.818569)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4004"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.792374,0,6.785475)"
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
id="radialGradient3999"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.341185,-0.153831,1.08001,2.395374,-15.42222,-25.62103)"
|
||||
r="13.994946"
|
||||
fy="24.241488"
|
||||
fx="61.662098"
|
||||
cy="24.241488"
|
||||
cx="61.662098"
|
||||
id="radialGradient3943"
|
||||
xlink:href="#linearGradient1312"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient1312">
|
||||
<stop
|
||||
id="stop1314"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop1316"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3993">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3995" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop3997" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient3866"
|
||||
cx="-22.375"
|
||||
cy="18.499998"
|
||||
fx="-22.375"
|
||||
fy="18.499998"
|
||||
r="14.33462"
|
||||
gradientTransform="matrix(1,0,0,1.140022,40.17678,1.347091)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="12.289036"
|
||||
fy="63.965388"
|
||||
fx="15.115514"
|
||||
cy="63.965388"
|
||||
cx="15.115514"
|
||||
gradientTransform="scale(1.643990,0.608276)"
|
||||
id="radialGradient5000"
|
||||
xlink:href="#linearGradient4114"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4989">
|
||||
<stop
|
||||
id="stop4991"
|
||||
offset="0"
|
||||
style="stop-color:#47abff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4993"
|
||||
offset="0.35955963"
|
||||
style="stop-color:#53a6ff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4995"
|
||||
offset="0.79518169"
|
||||
style="stop-color:#286cbb;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4997"
|
||||
offset="1"
|
||||
style="stop-color:#003d87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4977">
|
||||
<stop
|
||||
id="stop4979"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4981"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
id="filter6406"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000000000000002"
|
||||
x="-0.050000000000000017">
|
||||
<feFlood
|
||||
id="feFlood6408"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
k1="8.1400000000000006"
|
||||
k2="4.9299999999999997"
|
||||
k3="5.5899999999999999"
|
||||
k4="-7.2400000000000002" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur"
|
||||
in="composite" />
|
||||
<feOffset
|
||||
id="feOffset6414"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4258">
|
||||
<feFlood
|
||||
flood-opacity="0.80200501253132828"
|
||||
flood-color="rgb(197,204,222)"
|
||||
result="flood"
|
||||
id="feFlood4260" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4262"
|
||||
flood-opacity="0.80000000000000004" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.5"
|
||||
result="blur"
|
||||
id="feGaussianBlur4264" />
|
||||
<feOffset
|
||||
dx="-0"
|
||||
dy="-0.5"
|
||||
result="offset"
|
||||
id="feOffset4266" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4268" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter4290"
|
||||
inkscape:label="Drop Shadow"
|
||||
style="color-interpolation-filters:sRGB;">
|
||||
<feFlood
|
||||
id="feFlood4292"
|
||||
result="flood"
|
||||
flood-color="rgb(255,255,255)"
|
||||
flood-opacity="0.59999999999999998" />
|
||||
<feComposite
|
||||
id="feComposite4294"
|
||||
result="composite1"
|
||||
operator="in"
|
||||
in2="SourceGraphic"
|
||||
in="flood" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4296"
|
||||
result="blur"
|
||||
stdDeviation="6.7999999999999998"
|
||||
in="composite1" />
|
||||
<feOffset
|
||||
id="feOffset4298"
|
||||
result="offset"
|
||||
dy="1.9000000000000004"
|
||||
dx="0.69999999999999996"
|
||||
flood-opacity="0.68000000000000005" />
|
||||
<feComposite
|
||||
id="feComposite4300"
|
||||
result="composite2"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.17254902"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="873.57143"
|
||||
inkscape:cy="520"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="44.452879"
|
||||
inkscape:cy="23.209575"
|
||||
inkscape:current-layer="layer5"
|
||||
showgrid="false"
|
||||
inkscape:window-width="686"
|
||||
inkscape:window-height="711"
|
||||
inkscape:window-x="1280"
|
||||
inkscape:window-y="0" />
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
width="512px"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="4.331,47"
|
||||
id="guide3056"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(99,99,125)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="23.9375,24.5625"
|
||||
id="guide3058"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="40,25.375"
|
||||
id="guide5866" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="38.448931,29.742679"
|
||||
id="guide5868" />
|
||||
<sodipodi:guide
|
||||
position="3.8890873,1"
|
||||
orientation="0,1"
|
||||
id="guide4521"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(106,106,146)" />
|
||||
<sodipodi:guide
|
||||
position="1,17.324"
|
||||
orientation="1,0"
|
||||
id="guide4523"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(152,152,181)" />
|
||||
<sodipodi:guide
|
||||
position="47,33.852737"
|
||||
orientation="1,0"
|
||||
id="guide4525"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(121,121,172)" />
|
||||
<sodipodi:guide
|
||||
position="13.433908,46"
|
||||
orientation="0,1"
|
||||
id="guide4527"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,40,0)" />
|
||||
<sodipodi:guide
|
||||
position="8,36.135"
|
||||
orientation="1,0"
|
||||
id="guide4529"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,11,0)" />
|
||||
<sodipodi:guide
|
||||
position="40,26.436782"
|
||||
orientation="1,0"
|
||||
id="guide4531"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,6,0)" />
|
||||
<sodipodi:guide
|
||||
position="34.052,2"
|
||||
orientation="0,1"
|
||||
id="guide4533"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,0,5)" />
|
||||
<sodipodi:guide
|
||||
position="36.879276,26"
|
||||
orientation="0,1"
|
||||
id="guide4542"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="43.660795,14.731391"
|
||||
orientation="0,1"
|
||||
id="guide4546" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata8148">
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Tuomas Kuosmanen</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>internet</rdf:li>
|
||||
<rdf:li>tools</rdf:li>
|
||||
<rdf:li>applications</rdf:li>
|
||||
<rdf:li>category</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1"
|
||||
inkscape:label="base droplet"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#b3b3b3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891000000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 335.10794,116.43168 L 610.53935,447.76408 C 809.45408,669.41324 696.25675,938.85368 393.35753,959.46028 C -32.813273,970.60316 -9.7709676,623.52458 107.82928,464.31364 L 335.10794,116.43168 z"
|
||||
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6406)"
|
||||
d="M 23.295622,2.4822833 35.490217,21.297229 C 43.30243,33.350632 35.08691,46.383433 23.287956,46.383433 11.489002,46.383433 3.2602089,33.346045 11.079504,21.30073 Z"
|
||||
id="path2069"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:21.67123984999999919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022000000000"
|
||||
d="M 337.67292,165.87552 L 585.22638,464.67366 C 773.96211,684.57988 653.37942,910.02774 383.88559,930.97978 C 4.1291863,940.68143 29.040179,639.21796 125.2355,490.1649 L 337.67292,165.87552 z"
|
||||
id="path2071"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
<g
|
||||
id="g3590"
|
||||
transform="matrix(20.545052,0,0,22.803542,-135.93838,20.962309)">
|
||||
<rect
|
||||
y="19.754131"
|
||||
x="14.548919"
|
||||
height="14.866735"
|
||||
width="7.7589664"
|
||||
id="rect4415"
|
||||
style="fill:#cfcfcf;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
y="19.754131"
|
||||
x="25.692116"
|
||||
height="14.866735"
|
||||
width="7.7589664"
|
||||
id="rect4417"
|
||||
style="fill:#cfcfcf;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
sodipodi:nodetypes="cszsc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.90726715,0,0,0.89972834,2.9383017,2.518482)" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="paused icon">
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#666666;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4364"
|
||||
width="5.5"
|
||||
height="16"
|
||||
x="25.3125"
|
||||
y="22" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#666666;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4364-1"
|
||||
width="5.5"
|
||||
height="16"
|
||||
x="17.125"
|
||||
y="22" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 595 B After Width: | Height: | Size: 681 B |
|
@ -1,87 +1,532 @@
|
|||
<?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://creativecommons.org/ns#"
|
||||
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="744.09448819"
|
||||
height="1052.3622047"
|
||||
id="svg9374"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3440"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/queued16.png"
|
||||
inkscape:export-xdpi="1.7309855"
|
||||
inkscape:export-ydpi="1.7309855"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="queued.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
inkscape:export-xdpi="960"
|
||||
inkscape:export-ydpi="960"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="TRUE"
|
||||
version="1.1"
|
||||
inkscape:export-filename="/home/calum/projects/deluge-logo/deluge.512.x.png">
|
||||
<defs
|
||||
id="defs9376">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 526.18109 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||
id="perspective9382" />
|
||||
id="defs3">
|
||||
<color-profile
|
||||
name="sRGB"
|
||||
xlink:href="/usr/share/color/icc/sRGB.icc"
|
||||
id="color-profile4484" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2973">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2975" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2977" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4126">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4128" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.16494845;"
|
||||
offset="1.0000000"
|
||||
id="stop4130" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4114">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4116" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4118" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3962">
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3964" />
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.15517241"
|
||||
id="stop4134" />
|
||||
<stop
|
||||
style="stop-color:#4074ae;stop-opacity:1.0000000;"
|
||||
offset="0.75000000"
|
||||
id="stop4346" />
|
||||
<stop
|
||||
style="stop-color:#36486c;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3966" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="13.994944"
|
||||
fy="33.506763"
|
||||
fx="-10.089286"
|
||||
cy="33.506763"
|
||||
cx="-10.089286"
|
||||
gradientTransform="matrix(1,0,0,0.791446,-14.01786,-11.28667)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4019"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
gradientTransform="matrix(1,0,0,0.792374,-19.58761,2.818569)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4004"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.792374,0,6.785475)"
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
id="radialGradient3999"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.341185,-0.153831,1.08001,2.395374,-15.42222,-25.62103)"
|
||||
r="13.994946"
|
||||
fy="24.241488"
|
||||
fx="61.662098"
|
||||
cy="24.241488"
|
||||
cx="61.662098"
|
||||
id="radialGradient3943"
|
||||
xlink:href="#linearGradient1312"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient1312">
|
||||
<stop
|
||||
id="stop1314"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop1316"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3993">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3995" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop3997" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient3866"
|
||||
cx="-22.375"
|
||||
cy="18.499998"
|
||||
fx="-22.375"
|
||||
fy="18.499998"
|
||||
r="14.33462"
|
||||
gradientTransform="matrix(1,0,0,1.140022,40.17678,1.347091)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="12.289036"
|
||||
fy="63.965388"
|
||||
fx="15.115514"
|
||||
cy="63.965388"
|
||||
cx="15.115514"
|
||||
gradientTransform="scale(1.643990,0.608276)"
|
||||
id="radialGradient5000"
|
||||
xlink:href="#linearGradient4114"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4989">
|
||||
<stop
|
||||
id="stop4991"
|
||||
offset="0"
|
||||
style="stop-color:#47abff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4993"
|
||||
offset="0.35955963"
|
||||
style="stop-color:#53a6ff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4995"
|
||||
offset="0.79518169"
|
||||
style="stop-color:#286cbb;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4997"
|
||||
offset="1"
|
||||
style="stop-color:#003d87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4977">
|
||||
<stop
|
||||
id="stop4979"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4981"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
id="filter6406"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000000000000002"
|
||||
x="-0.050000000000000017">
|
||||
<feFlood
|
||||
id="feFlood6408"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
k1="8.1400000000000006"
|
||||
k2="4.9299999999999997"
|
||||
k3="5.5899999999999999"
|
||||
k4="-7.2400000000000002" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur"
|
||||
in="composite" />
|
||||
<feOffset
|
||||
id="feOffset6414"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4258">
|
||||
<feFlood
|
||||
flood-opacity="0.80200501253132828"
|
||||
flood-color="rgb(197,204,222)"
|
||||
result="flood"
|
||||
id="feFlood4260" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4262"
|
||||
flood-opacity="0.80000000000000004" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.5"
|
||||
result="blur"
|
||||
id="feGaussianBlur4264" />
|
||||
<feOffset
|
||||
dx="-0"
|
||||
dy="-0.5"
|
||||
result="offset"
|
||||
id="feOffset4266" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4268" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter4290"
|
||||
inkscape:label="Drop Shadow"
|
||||
style="color-interpolation-filters:sRGB;">
|
||||
<feFlood
|
||||
id="feFlood4292"
|
||||
result="flood"
|
||||
flood-color="rgb(255,255,255)"
|
||||
flood-opacity="0.59999999999999998" />
|
||||
<feComposite
|
||||
id="feComposite4294"
|
||||
result="composite1"
|
||||
operator="in"
|
||||
in2="SourceGraphic"
|
||||
in="flood" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4296"
|
||||
result="blur"
|
||||
stdDeviation="6.7999999999999998"
|
||||
in="composite1" />
|
||||
<feOffset
|
||||
id="feOffset4298"
|
||||
result="offset"
|
||||
dy="1.9000000000000004"
|
||||
dx="0.69999999999999996"
|
||||
flood-opacity="0.68000000000000005" />
|
||||
<feComposite
|
||||
id="feComposite4300"
|
||||
result="composite2"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.17254902"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="726.34279"
|
||||
inkscape:cy="746.86589"
|
||||
inkscape:document-units="px"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="26.569169"
|
||||
inkscape:cy="27.737594"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="686"
|
||||
inkscape:window-height="711"
|
||||
inkscape:window-x="1859"
|
||||
inkscape:window-y="122" />
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
width="512px"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="4.331,47"
|
||||
id="guide3056"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(99,99,125)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="23.9375,24.5625"
|
||||
id="guide3058"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="40,25.375"
|
||||
id="guide5866" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="38.448931,29.742679"
|
||||
id="guide5868" />
|
||||
<sodipodi:guide
|
||||
position="3.8890873,1"
|
||||
orientation="0,1"
|
||||
id="guide4521"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(106,106,146)" />
|
||||
<sodipodi:guide
|
||||
position="1,17.324"
|
||||
orientation="1,0"
|
||||
id="guide4523"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(152,152,181)" />
|
||||
<sodipodi:guide
|
||||
position="47,33.852737"
|
||||
orientation="1,0"
|
||||
id="guide4525"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(121,121,172)" />
|
||||
<sodipodi:guide
|
||||
position="13.433908,46"
|
||||
orientation="0,1"
|
||||
id="guide4527"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,40,0)" />
|
||||
<sodipodi:guide
|
||||
position="8,36.135"
|
||||
orientation="1,0"
|
||||
id="guide4529"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,11,0)" />
|
||||
<sodipodi:guide
|
||||
position="40,26.436782"
|
||||
orientation="1,0"
|
||||
id="guide4531"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,6,0)" />
|
||||
<sodipodi:guide
|
||||
position="34.052,2"
|
||||
orientation="0,1"
|
||||
id="guide4533"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,0,5)" />
|
||||
<sodipodi:guide
|
||||
position="36.879276,26"
|
||||
orientation="0,1"
|
||||
id="guide4542"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="43.660795,14.731391"
|
||||
orientation="0,1"
|
||||
id="guide4546" />
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4206" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata9379">
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Tuomas Kuosmanen</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>internet</rdf:li>
|
||||
<rdf:li>tools</rdf:li>
|
||||
<rdf:li>applications</rdf:li>
|
||||
<rdf:li>category</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1"
|
||||
inkscape:label="base droplet"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#bfba14;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891000000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 335.10794,116.43168 L 610.53935,447.76408 C 809.45408,669.41324 696.25675,938.85368 393.35753,959.46028 C -32.813273,970.60316 -9.7709676,623.52458 107.82928,464.31364 L 335.10794,116.43168 z"
|
||||
style="fill:#dcdc00;fill-opacity:1;fill-rule:evenodd;stroke:#b4b400;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;"
|
||||
d="M 23.295622,2.4822833 35.490217,21.297229 C 43.30243,33.350632 35.08691,46.383433 23.287956,46.383433 11.489002,46.383433 3.2602089,33.346045 11.079504,21.30073 Z"
|
||||
id="path2069"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
sodipodi:nodetypes="cszsc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.90726715,0,0,0.89972834,2.9383017,2.518482)" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer4"
|
||||
inkscape:label="queue icon"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#6a6a00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.03118205;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4221-3-6"
|
||||
width="16"
|
||||
height="4"
|
||||
x="16"
|
||||
y="30.238995" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#6a6a00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.03118205;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4221-3-9"
|
||||
width="16"
|
||||
height="4"
|
||||
x="16"
|
||||
y="23.873394" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:21.67123984999999919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022000000000"
|
||||
d="M 337.67292,165.87552 L 585.22638,464.67366 C 773.96211,684.57988 653.37942,910.02774 383.88559,930.97978 C 4.1291863,940.68143 29.040179,639.21796 125.2355,490.1649 L 337.67292,165.87552 z"
|
||||
id="path2071"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
sodipodi:type="star"
|
||||
style="display:inline;opacity:1;fill:#6a6a00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.97536206;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4266-5"
|
||||
sodipodi:sides="3"
|
||||
sodipodi:cx="23.909048"
|
||||
sodipodi:cy="17.006021"
|
||||
sodipodi:r1="0.024637857"
|
||||
sodipodi:r2="0.012318929"
|
||||
sodipodi:arg1="3.1415927"
|
||||
sodipodi:arg2="4.1887903"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 23.88441,17.006021 0.01848,-0.01067 0.01848,-0.01067 0,0.02134 0,0.02134 -0.01848,-0.01067 z"
|
||||
transform="matrix(0,121.76383,-210.90115,0,3610.5895,-2890.8119)"
|
||||
inkscape:transform-center-y="-0.7497936"
|
||||
inkscape:transform-center-x="2.0998475e-05" />
|
||||
<path
|
||||
style="fill:#d6d36a;fill-opacity:1;stroke:#000000;stroke-width:12.60815144000000032;stroke-linecap:round;stroke-linejoin:round;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 356.08237,358.00767 C 298.29629,412.08893 240.45811,465.9299 182.67226,520.01115 C 211.63823,519.96135 240.67645,520.06093 269.64241,520.01115 C 269.64241,583.48327 269.64241,646.95538 269.64241,710.42751 C 240.67645,710.3777 211.63823,710.4773 182.67226,710.42751 C 240.45811,764.50876 298.29629,818.34973 356.08237,872.43098 C 414.51345,818.5496 473.18214,764.80739 531.61344,710.92598 C 500.17495,710.87193 468.65776,710.98006 437.21906,710.92598 C 437.21906,647.12155 437.21906,583.31714 437.21906,519.51267 C 468.65776,519.45859 500.17495,519.56671 531.61344,519.51267 C 473.18214,465.63124 414.51345,411.88906 356.08237,358.00767 z"
|
||||
id="rect2634" />
|
||||
sodipodi:type="star"
|
||||
style="display:inline;opacity:1;fill:#6a6a00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.97536206;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path4266-5-3"
|
||||
sodipodi:sides="3"
|
||||
sodipodi:cx="23.909048"
|
||||
sodipodi:cy="17.006021"
|
||||
sodipodi:r1="0.024637857"
|
||||
sodipodi:r2="0.012318929"
|
||||
sodipodi:arg1="3.1415927"
|
||||
sodipodi:arg2="4.1887903"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 23.88441,17.006021 0.01848,-0.01067 0.01848,-0.01067 0,0.02134 0,0.02134 -0.01848,-0.01067 z"
|
||||
transform="matrix(0,-121.76383,210.90115,0,-3562.5895,2948.8304)"
|
||||
inkscape:transform-center-y="0.74972138"
|
||||
inkscape:transform-center-x="-0.00022730407" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 698 B After Width: | Height: | Size: 529 B |
|
@ -1,90 +1,509 @@
|
|||
<?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://creativecommons.org/ns#"
|
||||
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="744.09448819"
|
||||
height="1052.3622047"
|
||||
id="svg2527"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3440"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7075963"
|
||||
inkscape:export-ydpi="1.7075963"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="seeding.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
inkscape:export-xdpi="960"
|
||||
inkscape:export-ydpi="960"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:modified="TRUE"
|
||||
version="1.1"
|
||||
inkscape:export-filename="/home/calum/projects/deluge-logo/deluge.512.x.png">
|
||||
<defs
|
||||
id="defs2529">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 526.18109 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||
id="perspective2535" />
|
||||
id="defs3">
|
||||
<color-profile
|
||||
name="sRGB"
|
||||
xlink:href="/usr/share/color/icc/sRGB.icc"
|
||||
id="color-profile4484" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2973">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2975" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2977" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4126">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4128" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.16494845;"
|
||||
offset="1.0000000"
|
||||
id="stop4130" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4114">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4116" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4118" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3962">
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3964" />
|
||||
<stop
|
||||
style="stop-color:#d3e9ff;stop-opacity:1.0000000;"
|
||||
offset="0.15517241"
|
||||
id="stop4134" />
|
||||
<stop
|
||||
style="stop-color:#4074ae;stop-opacity:1.0000000;"
|
||||
offset="0.75000000"
|
||||
id="stop4346" />
|
||||
<stop
|
||||
style="stop-color:#36486c;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3966" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="13.994944"
|
||||
fy="33.506763"
|
||||
fx="-10.089286"
|
||||
cy="33.506763"
|
||||
cx="-10.089286"
|
||||
gradientTransform="matrix(1,0,0,0.791446,-14.01786,-11.28667)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4019"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
gradientTransform="matrix(1,0,0,0.792374,-19.58761,2.818569)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4004"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.792374,0,6.785475)"
|
||||
r="14.057444"
|
||||
fy="31.329016"
|
||||
fx="-10.323107"
|
||||
cy="31.329016"
|
||||
cx="-10.323107"
|
||||
id="radialGradient3999"
|
||||
xlink:href="#linearGradient3993"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.341185,-0.153831,1.08001,2.395374,-15.42222,-25.62103)"
|
||||
r="13.994946"
|
||||
fy="24.241488"
|
||||
fx="61.662098"
|
||||
cy="24.241488"
|
||||
cx="61.662098"
|
||||
id="radialGradient3943"
|
||||
xlink:href="#linearGradient1312"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient1312">
|
||||
<stop
|
||||
id="stop1314"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop1316"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3993">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3995" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop3997" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2973"
|
||||
id="radialGradient3866"
|
||||
cx="-22.375"
|
||||
cy="18.499998"
|
||||
fx="-22.375"
|
||||
fy="18.499998"
|
||||
r="14.33462"
|
||||
gradientTransform="matrix(1,0,0,1.140022,40.17678,1.347091)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="12.289036"
|
||||
fy="63.965388"
|
||||
fx="15.115514"
|
||||
cy="63.965388"
|
||||
cx="15.115514"
|
||||
gradientTransform="scale(1.643990,0.608276)"
|
||||
id="radialGradient5000"
|
||||
xlink:href="#linearGradient4114"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4989">
|
||||
<stop
|
||||
id="stop4991"
|
||||
offset="0"
|
||||
style="stop-color:#47abff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4993"
|
||||
offset="0.35955963"
|
||||
style="stop-color:#53a6ff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4995"
|
||||
offset="0.79518169"
|
||||
style="stop-color:#286cbb;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4997"
|
||||
offset="1"
|
||||
style="stop-color:#003d87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4977">
|
||||
<stop
|
||||
id="stop4979"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4981"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
id="filter6406"
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
height="1.2"
|
||||
width="1.2"
|
||||
y="-0.15000000000000002"
|
||||
x="-0.050000000000000017">
|
||||
<feFlood
|
||||
id="feFlood6408"
|
||||
flood-opacity="0.50171821305841924"
|
||||
flood-color="rgb(50,51,108)"
|
||||
result="flood"
|
||||
stdDeviation="0.01" />
|
||||
<feComposite
|
||||
id="feComposite6410"
|
||||
in2="SourceGraphic"
|
||||
in="flood"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
k1="8.1400000000000006"
|
||||
k2="4.9299999999999997"
|
||||
k3="5.5899999999999999"
|
||||
k4="-7.2400000000000002" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur6412"
|
||||
stdDeviation="0.20000000000000001"
|
||||
result="blur"
|
||||
in="composite" />
|
||||
<feOffset
|
||||
id="feOffset6414"
|
||||
dx="0.29999999999999999"
|
||||
dy="0.29999999999999999"
|
||||
result="offset"
|
||||
flood-opacity="0.5" />
|
||||
<feComposite
|
||||
id="feComposite6416"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
result="composite2"
|
||||
operator="" />
|
||||
</filter>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB;"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4258">
|
||||
<feFlood
|
||||
flood-opacity="0.80200501253132828"
|
||||
flood-color="rgb(197,204,222)"
|
||||
result="flood"
|
||||
id="feFlood4260" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4262"
|
||||
flood-opacity="0.80000000000000004" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.5"
|
||||
result="blur"
|
||||
id="feGaussianBlur4264" />
|
||||
<feOffset
|
||||
dx="-0"
|
||||
dy="-0.5"
|
||||
result="offset"
|
||||
id="feOffset4266" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4268" />
|
||||
</filter>
|
||||
<filter
|
||||
id="filter4290"
|
||||
inkscape:label="Drop Shadow"
|
||||
style="color-interpolation-filters:sRGB;">
|
||||
<feFlood
|
||||
id="feFlood4292"
|
||||
result="flood"
|
||||
flood-color="rgb(255,255,255)"
|
||||
flood-opacity="0.59999999999999998" />
|
||||
<feComposite
|
||||
id="feComposite4294"
|
||||
result="composite1"
|
||||
operator="in"
|
||||
in2="SourceGraphic"
|
||||
in="flood" />
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4296"
|
||||
result="blur"
|
||||
stdDeviation="6.7999999999999998"
|
||||
in="composite1" />
|
||||
<feOffset
|
||||
id="feOffset4298"
|
||||
result="offset"
|
||||
dy="1.9000000000000004"
|
||||
dx="0.69999999999999996"
|
||||
flood-opacity="0.68000000000000005" />
|
||||
<feComposite
|
||||
id="feComposite4300"
|
||||
result="composite2"
|
||||
in2="offset"
|
||||
in="SourceGraphic"
|
||||
operator="" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.17254902"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.49497475"
|
||||
inkscape:cx="453.37202"
|
||||
inkscape:cy="461.7376"
|
||||
inkscape:document-units="px"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="33.265379"
|
||||
inkscape:cy="23.209575"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="640"
|
||||
inkscape:window-height="711"
|
||||
inkscape:window-x="1712"
|
||||
inkscape:window-y="100" />
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
inkscape:showpageshadow="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
width="512px"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="true">
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="4.331,47"
|
||||
id="guide3056"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(99,99,125)" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="40,25.375"
|
||||
id="guide5866" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="38.448931,29.742679"
|
||||
id="guide5868" />
|
||||
<sodipodi:guide
|
||||
position="3.8890873,1"
|
||||
orientation="0,1"
|
||||
id="guide4521"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(106,106,146)" />
|
||||
<sodipodi:guide
|
||||
position="1,17.324"
|
||||
orientation="1,0"
|
||||
id="guide4523"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(152,152,181)" />
|
||||
<sodipodi:guide
|
||||
position="47,33.852737"
|
||||
orientation="1,0"
|
||||
id="guide4525"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(121,121,172)" />
|
||||
<sodipodi:guide
|
||||
position="13.433908,46"
|
||||
orientation="0,1"
|
||||
id="guide4527"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,40,0)" />
|
||||
<sodipodi:guide
|
||||
position="8,36.135"
|
||||
orientation="1,0"
|
||||
id="guide4529"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,11,0)" />
|
||||
<sodipodi:guide
|
||||
position="40,26.436782"
|
||||
orientation="1,0"
|
||||
id="guide4531"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,6,0)" />
|
||||
<sodipodi:guide
|
||||
position="34.052,2"
|
||||
orientation="0,1"
|
||||
id="guide4533"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(255,0,5)" />
|
||||
<sodipodi:guide
|
||||
position="36.879276,26"
|
||||
orientation="0,1"
|
||||
id="guide4542"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="43.660795,14.731391"
|
||||
orientation="0,1"
|
||||
id="guide4546" />
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4215" />
|
||||
<sodipodi:guide
|
||||
position="24,45"
|
||||
orientation="1,0"
|
||||
id="guide4225" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2532">
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Tuomas Kuosmanen</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>internet</rdf:li>
|
||||
<rdf:li>tools</rdf:li>
|
||||
<rdf:li>applications</rdf:li>
|
||||
<rdf:li>category</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1"
|
||||
inkscape:label="base droplet"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#5599ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.07523891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 335.10794,116.43168 L 610.53935,447.76408 C 809.45408,669.41324 696.25675,938.85368 393.35753,959.46028 C -32.813273,970.60316 -9.7709676,623.52458 107.82928,464.31364 L 335.10794,116.43168 z"
|
||||
style="fill:#6699ff;fill-opacity:1;fill-rule:evenodd;stroke:#3366cc;stroke-width:3.27999091;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;"
|
||||
d="M 23.295622,2.4822833 35.490217,21.297229 C 43.30243,33.350632 35.08691,46.383433 23.287956,46.383433 11.489002,46.383433 3.2602089,33.346045 11.079504,21.30073 Z"
|
||||
id="path2069"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
sodipodi:nodetypes="cszsc"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(0.90726715,0,0,0.89972834,2.9383017,2.518482)" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#0f3171;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4364-1-36"
|
||||
width="8.5"
|
||||
height="4.5"
|
||||
x="19.760511"
|
||||
y="33" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:21.67123985;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.36612022"
|
||||
d="M 337.67292,165.87552 L 585.22638,464.67366 C 773.96211,684.57988 653.37942,910.02774 383.88559,930.97978 C 4.1291863,940.68143 29.040179,639.21796 125.2355,490.1649 L 337.67292,165.87552 z"
|
||||
id="path2071"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
<path
|
||||
style="fill:#93beff;fill-opacity:1;stroke:#000000;stroke-width:14.10382843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 359.0208,369.47132 C 289.64507,437.53055 219.98727,505.41409 150.61154,573.47313 C 187.93874,573.54143 225.35922,573.40503 262.68661,573.47313 C 262.68661,654.06643 262.68661,734.65974 262.68661,815.25304 C 329.00806,815.25304 395.32971,815.25304 461.65134,815.25304 C 461.65134,734.86969 461.65134,654.48632 461.65134,574.10276 C 496.04273,574.16582 530.52013,574.0399 564.91152,574.10276 C 496.30183,505.79126 427.63028,437.78301 359.0208,369.47132 z"
|
||||
id="rect2634"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/seeding16.png"
|
||||
inkscape:export-xdpi="1.7060417"
|
||||
inkscape:export-ydpi="1.7060417" />
|
||||
sodipodi:type="star"
|
||||
style="display:inline;opacity:1;fill:#0f3171;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path5039-7"
|
||||
sodipodi:sides="3"
|
||||
sodipodi:cx="23.9375"
|
||||
sodipodi:cy="21.1875"
|
||||
sodipodi:r1="4.6958261"
|
||||
sodipodi:r2="2.347913"
|
||||
sodipodi:arg1="0.52359878"
|
||||
sodipodi:arg2="1.5707963"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 28.004205,23.535413 -4.066705,0 -4.066705,0 2.033353,-3.521869 2.033352,-3.52187 2.033352,3.521869 z"
|
||||
transform="matrix(1.9671947,0,0,1.1180142,-23.156428,-1.2587488)"
|
||||
inkscape:transform-center-y="1.3125004" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#0f3171;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.54330707;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4364-1-3"
|
||||
width="8.5"
|
||||
height="4.5"
|
||||
x="19.74159"
|
||||
y="26.902088" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="paused icon" />
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 631 B After Width: | Height: | Size: 624 B |
|
@ -1,5 +1,6 @@
|
|||
<?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://creativecommons.org/ns#"
|
||||
|
@ -8,16 +9,17 @@
|
|||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="744.09448819"
|
||||
height="1052.3622047"
|
||||
width="128"
|
||||
height="128"
|
||||
id="svg2517"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="traffic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/traffic16.png"
|
||||
inkscape:export-xdpi="2.459017"
|
||||
inkscape:export-ydpi="2.459017">
|
||||
inkscape:export-ydpi="2.459017"
|
||||
version="1.1">
|
||||
<defs
|
||||
id="defs2519">
|
||||
<inkscape:perspective
|
||||
|
@ -38,16 +40,23 @@
|
|||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="375"
|
||||
inkscape:cy="520"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="56.051291"
|
||||
inkscape:cy="66.506813"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="667"
|
||||
inkscape:window-height="709"
|
||||
inkscape:window-x="50"
|
||||
inkscape:window-y="25" />
|
||||
showgrid="true"
|
||||
inkscape:window-width="1861"
|
||||
inkscape:window-height="1176"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3336"
|
||||
empspacing="1"
|
||||
dotted="false" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2522">
|
||||
<rdf:RDF>
|
||||
|
@ -56,26 +65,30 @@
|
|||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
id="layer1"
|
||||
transform="translate(0,-924.36218)">
|
||||
<path
|
||||
style="opacity:0.8;fill:#93beff;fill-opacity:1;stroke:#000000;stroke-width:14.10382843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 426.97356,240.8999 C 357.59783,308.95913 287.94003,376.84267 218.5643,444.90171 C 255.8915,444.97001 293.31198,444.83361 330.63937,444.90171 C 330.63937,525.49501 330.63937,606.08832 330.63937,686.68162 C 396.96082,686.68162 463.28247,686.68162 529.6041,686.68162 C 529.6041,606.29827 529.6041,525.9149 529.6041,445.53134 C 563.99549,445.5944 598.47289,445.46848 632.86428,445.53134 C 564.25459,377.21984 495.58304,309.21159 426.97356,240.8999 z"
|
||||
style="opacity:1;fill:#4c90e8;fill-opacity:1;stroke:#000000;stroke-width:4.088;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 79.742286,929.51964 c -14.206752,13.93715 -28.471266,27.83834 -42.678018,41.77545 7.643855,0.014 15.306814,-0.0139 22.950711,0 0,16.50389 0,33.00771 0,49.51151 13.581299,0 27.16264,0 40.743951,0 0,-16.4609 0,-32.92164 0,-49.38258 7.04267,0.0129 14.10294,-0.0129 21.14561,0 -14.04989,-13.98881 -28.112421,-27.91554 -42.162254,-41.90438 z"
|
||||
id="rect2634"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/traffic32.png"
|
||||
inkscape:export-xdpi="4.9180341"
|
||||
inkscape:export-ydpi="4.9180341" />
|
||||
inkscape:export-ydpi="4.9180341"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.8;fill:#b7e399;fill-opacity:1;stroke:#000000;stroke-width:14.10382843;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 298.40213,812.39589 C 229.0264,744.33666 159.3686,676.45312 89.992873,608.39408 C 127.32007,608.32578 164.74055,608.46218 202.06794,608.39408 C 202.06794,527.80078 202.06794,447.20747 202.06794,366.61417 C 268.38939,366.61417 334.71104,366.61417 401.03267,366.61417 C 401.03267,446.99752 401.03267,527.38089 401.03267,607.76445 C 435.42406,607.70139 469.90146,607.82731 504.29285,607.76445 C 435.68316,676.07595 367.01161,744.0842 298.40213,812.39589 z"
|
||||
style="opacity:1;fill:#16c816;fill-opacity:1;stroke:#000000;stroke-width:4.088;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 48.980975,1047.5605 c -14.206752,-13.9372 -28.471263,-27.8383 -42.6780126,-41.7755 7.6438566,-0.014 15.3068146,0.014 22.9507156,0 0,-16.5037 0,-33.00759 0,-49.51147 13.581288,0 27.162629,0 40.74397,0 0,16.46089 0,32.92179 0,49.38257 7.042653,-0.014 14.102929,0.013 21.145603,0 -14.049885,13.9888 -28.112433,27.9156 -42.162276,41.9044 z"
|
||||
id="path2528"
|
||||
inkscape:export-filename="/home/andrew/Projects/deluge/trunk/deluge/data/pixmaps/traffic32.png"
|
||||
inkscape:export-xdpi="4.9180341"
|
||||
inkscape:export-ydpi="4.9180341" />
|
||||
inkscape:export-ydpi="4.9180341"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 613 B After Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 742 B After Width: | Height: | Size: 588 B |
Before Width: | Height: | Size: 590 B After Width: | Height: | Size: 545 B |
Before Width: | Height: | Size: 844 B After Width: | Height: | Size: 606 B |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 699 B After Width: | Height: | Size: 738 B |
BIN
deluge/ui/web/icons/deluge-android-192.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
BIN
deluge/ui/web/icons/deluge-apple-180.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 722 B After Width: | Height: | Size: 610 B |
Before Width: | Height: | Size: 793 B After Width: | Height: | Size: 764 B |
Before Width: | Height: | Size: 686 B After Width: | Height: | Size: 566 B |
Before Width: | Height: | Size: 595 B After Width: | Height: | Size: 681 B |
Before Width: | Height: | Size: 698 B After Width: | Height: | Size: 529 B |
Before Width: | Height: | Size: 631 B After Width: | Height: | Size: 624 B |
Before Width: | Height: | Size: 613 B After Width: | Height: | Size: 525 B |
|
@ -5,9 +5,9 @@
|
|||
|
||||
<link rel="shortcut icon" href="${base}icons/deluge.png" type="image/png" />
|
||||
<link rel="icon" href="${base}icons/deluge.png" type="image/png" />
|
||||
<link rel="apple-touch-icon-precomposed" media="screen and (resolution: 163dpi)" href="${base}icons/apple-pre-57.png" />
|
||||
<link rel="apple-touch-icon-precomposed" media="screen and (resolution: 132dpi)" href="${base}icons/apple-pre-72.png" />
|
||||
<link rel="apple-touch-icon-precomposed" media="screen and (resolution: 326dpi)" href="${base}icons/apple-pre-114.png" />
|
||||
<!-- For Chrome for Android: -->
|
||||
<link rel="icon" sizes="192x192" href="${base}icons/deluge-android-192.png">
|
||||
<link rel="apple-touch-icon-precomposed" href="${base}icons/deluge-apple-180.png">
|
||||
|
||||
<!-- Stylesheets -->
|
||||
% for stylesheet in stylesheets:
|
||||
|
|