This commit is contained in:
Hylke Bons 2012-11-22 21:32:49 +00:00
parent 1e314ed715
commit bd26aa7c6a
7 changed files with 3485 additions and 230 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 827 KiB

After

Width:  |  Height:  |  Size: 952 KiB

View file

@ -32,13 +32,13 @@
inkscape:window-height="696"
id="namedview3143"
showgrid="false"
inkscape:zoom="2"
inkscape:zoom="1"
inkscape:cx="202.9899"
inkscape:cy="256.41535"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g2886"
inkscape:current-layer="g2946"
showborder="false" />
<defs
id="defs8765">
@ -2444,12 +2444,6 @@
</g>
</g>
</g>
<path
inkscape:connector-curvature="0"
d="m 45.90624,74.999997 c -2.13796,0 -3.90625,1.768288 -3.90625,3.90625 l 0,136.562503 c 0,0 220.00001,-98.90625 220.00001,-98.90625 l 0,-37.656253 c 0,-2.137958 -1.7683,-3.90625 -3.90625,-3.90625 l -212.18751,0 z"
id="path2612-0"
sodipodi:nodetypes="ccccccc"
style="opacity:0.34482757;fill:url(#radialGradient11551-8);fill-opacity:1;stroke:none;display:inline;enable-background:new" />
</g>
</g>
</g>

Before

Width:  |  Height:  |  Size: 968 KiB

After

Width:  |  Height:  |  Size: 967 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 236 KiB

After

Width:  |  Height:  |  Size: 233 KiB

View file

@ -151,12 +151,10 @@ namespace SparkleShare {
{
using (var a = new NSAutoreleasePool ())
{
string about_image_path = Path.Combine (NSBundle.MainBundle.ResourcePath,
"Pixmaps", "about.png");
string about_image_path = Path.Combine (NSBundle.MainBundle.ResourcePath, "Pixmaps", "about.png");
this.about_image = new NSImage (about_image_path) {
Size = new SizeF (640, 260)
};
this.about_image = new NSImage (about_image_path);
this.about_image.Size = new SizeF (640, 260);
this.about_image_view = new NSImageView () {
Image = this.about_image,