Merge remote-tracking branch 'upstream/master' into windows

This commit is contained in:
wimh 2011-10-21 22:12:53 +02:00
commit 4bd4591d6a
9 changed files with 590 additions and 209 deletions

85
README
View file

@ -1,30 +1,21 @@
SparkleShare
============
# SparkleShare
SparkleShare is a collaboration and sharing tool that is designed to keep
things simple and to stay out of your way. It allows you to instantly sync
with any Git repository you have access to.
Though SparkleShare is not made to be a graphical frontend
for git or a backup tool, it may be useful for other kinds of purposes as well,
like backing up small files or monitoring your favourite project. In contrast
to the projects name, we will very likely refuse to implement your personal
ponies.
SparkleShare currently works on Linux and Mac. A Windows port and mobile
device support are planned for the future.
License
=======
# License
SparkleShare is free software and licensed under the GNU GPLv3 or later. You
are welcome to change and redistribute it under certain conditions. For more
information see the LICENSE file or visit http://www.gnu.org/licenses/gpl-3.0.html
Run on Linux:
=============
# Run on Linux
Requirements:
@ -41,7 +32,6 @@ Requirements:
- webkitgtk
- webkit-sharp
Run the service, either click the SparkleShare launcher or:
$ sparkleshare start
@ -61,20 +51,18 @@ Note:
own server by hand.
Build on Linux:
===============
# Build on Linux
Installing the build dependencies on Debian or Ubuntu:
$ sudo apt-get install gtk-sharp2 mono-runtime mono-devel monodevelop \
libndesk-dbus1.0-cil-dev nant libnotify-cil-dev libgtk2.0-cil-dev \
libndesk-dbus1.0-cil-dev nant libnotify-cil-dev libgtk2.0-cil-dev mono-gmcs \
libwebkit-cil-dev intltool libtool python-nautilus libndesk-dbus-glib1.0-cil-dev
For Ubuntu libappindicator support, run the following before building:
$ sudo apt-get install libappindicator0.1-cil-dev
On Fedora:
$ sudo yum install gtk-sharp2-devel mono-core mono-devel monodevelop \
@ -82,7 +70,6 @@ On Fedora:
notify-sharp-devel webkit-sharp-devel webkitgtk-devel libtool intltool \
gnome-doc-utils
You can build and install SparkleShare like this:
$ ./configure --prefix=/usr (or ./autogen.sh if you build from the repository)
@ -94,14 +81,12 @@ Note:
Use '--prefix=/usr' if you want the Nautilus extension to work.
Run on Mac:
===========
# Run on Mac
Just double-click the SparkleShare.app.
Just double-click the SparkleShare bundle.
Build on Mac:
=============
# Build on Mac
Install the Mono Framework, MonoDevelop and the MonoMac plugin (you find it in Add-in Manager).
@ -111,58 +96,15 @@ You may need to adjust some environment variables to let the build environment t
$ export PKG_CONFIG=/Library/Frameworks/Mono.framework/Versions/Current/bin/pkg-config
$ export PKG_CONFIG_PATH=/Library/Frameworks/Mono.framework/Versions/Current/lib/pkgconfig
Then you need either MacPorts or Homebrew. Go on and choose one of the next two sections.
Using MacPorts
--------------
Install git, automake, and intltool:
Install git, automake, and intltool using MacPorts:
$ sudo port install git-core automake intltool
Start the first part of the build:
$ ./autogen.sh --enable-gtkui=no
$ make
The last step will give you some errors in SparkleShare.exe, ignore these and go on to the
MonoDevelop section.
Using Homebrew
--------------
Because there are old versions of autoconf and automake installed on OS X, they are not in
the official master branch. It's easy to create the formulas:
$ brew create $url
Now install the formulas.
You can have a look at this branch for the created Formulas:
https://github.com/toabi/homebrew/commits/sparkleshare
You also have to comment out the 'keg_only' in gettext and remove it if you already
installed it. If you created the formulas install them:
$ brew install git autoconf automake intltool gettext
Now start the first part of the build:
$ export ACLOCAL_FLAGS="-I /usr/local/share/aclocal"
$ cd SmartIrc4net
$ ./autogen.sh
$ cd ..
$ ./autogen.sh --enable-gtkui=no
$ make
Ignore the error and continue to the MonoDevelop-part.
Building the Mac UI
-------------------
Now that you have compiled the libraries, open 'SparkleShare/Mac/SparkleShare.sln' in
MonoDevelop and start the build.
@ -175,11 +117,10 @@ https://raw.github.com/gist/1aeffa61bac73fc08eca/0c0f09ef9e36864c35f34fd5e8bf4f9
Copy /Library/Frameworks/Mono.framework/Versions/Current/lib/libintl.dylib
to SparkleShare.app/Contents/Resources
Now you should have a working .app that you can run.
Now you should have a working bundle that you can run.
Info
====
# Info
Official website:
http://www.sparkleshare.org/

View file

@ -69,14 +69,15 @@ namespace SparkleShare {
InvokeOnMainThread (delegate {
UpdatesTextField.StringValue = "You are running the latest version.";
UpdatesTextField.TextColor =
NSColor.FromCalibratedRgba (0.31f, 0.60f, 0.02f, 1.0f); // Tango Chameleon #3
NSColor.FromCalibratedRgba (0.45f, 0.62f, 0.81f, 1.0f); // Tango Sky Blue #1
});
};
Controller.CheckingForNewVersionEvent += delegate {
InvokeOnMainThread (delegate {
UpdatesTextField.StringValue = "Checking for updates...";
UpdatesTextField.TextColor = NSColor.DisabledControlText;
UpdatesTextField.TextColor =
NSColor.FromCalibratedRgba (0.45f, 0.62f, 0.81f, 1.0f); // Tango Sky Blue #1
});
};
}
@ -117,7 +118,8 @@ namespace SparkleShare {
DrawsBackground = false,
Font = NSFontManager.SharedFontManager.FontWithFamily
("Lucida Grande", NSFontTraitMask.Unbold, 0, 11),
TextColor = NSColor.DisabledControlText
TextColor =
NSColor.FromCalibratedRgba (0.45f, 0.62f, 0.81f, 1.0f) // Tango Sky Blue #1
};
CreditsTextField = new NSTextField () {

View file

@ -56,12 +56,12 @@ namespace SparkleShare {
"Pixmaps", "side-splash.png");
SideSplash = new NSImage (side_splash_path) {
Size = new SizeF (150, 407)
Size = new SizeF (150, 482)
};
SideSplashView = new NSImageView () {
Image = SideSplash,
Frame = new RectangleF (0, 0, 150, 407)
Frame = new RectangleF (0, 0, 150, 482)
};
Buttons = new List <NSButton> ();

View file

@ -75,7 +75,7 @@ namespace SparkleShare {
Controller.VersionUpToDateEvent += delegate {
Application.Invoke (delegate {
this.updates.Markup = String.Format ("<span font_size='small' fgcolor='#4e9a06'>{0}</span>",
this.updates.Markup = String.Format ("<span font_size='small' fgcolor='#729fcf'>{0}</span>",
_("You are running the latest version."));
this.updates.ShowAll ();
@ -84,7 +84,7 @@ namespace SparkleShare {
Controller.CheckingForNewVersionEvent += delegate {
Application.Invoke (delegate {
this.updates.Markup = String.Format ("<span font_size='small' fgcolor='#4e9a06'>{0}</span>",
this.updates.Markup = String.Format ("<span font_size='small' fgcolor='#729fcf'>{0}</span>",
_("Checking for updates..."));
this.updates.ShowAll ();
@ -109,7 +109,7 @@ namespace SparkleShare {
};
this.updates = new Label () {
Markup = "<span font_size='small' fgcolor='" + secondary_text_color + "'>" +
Markup = "<span font_size='small' fgcolor='#729fcf'>" +
_("Checking for updates...") +
"</span>",
Xalign = 0,

View file

@ -25,7 +25,6 @@ using System.Collections.Generic;
using Gtk;
using Mono.Unix;
namespace SparkleShare {
public class SparkleSetup : SparkleSetupWindow {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 75 KiB

352
data/src/about-dialog.svg Executable file → Normal file
View file

@ -30,49 +30,6 @@
offset="1"
style="stop-color:#3f3f3f;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4092">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop4094" />
<stop
style="stop-color:#3a3a3a;stop-opacity:1"
offset="1"
id="stop4096" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4820"
id="linearGradient4098"
x1="437.71024"
y1="525.45569"
x2="437.71024"
y2="863.80792"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0019617,0,0,0.68647389,1.8913132,287.61514)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4092"
id="linearGradient4810"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.33346538,0,0,0.68647389,54.787046,287.61514)"
x1="437.71024"
y1="500.69565"
x2="437.71024"
y2="779.30566" />
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath8482">
<rect
style="color:#000000;fill:url(#radialGradient8486);fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect8484"
width="150"
height="400"
x="65.142853"
y="185.79074" />
</clipPath>
<filter
inkscape:collect="always"
id="filter15758-4"
@ -397,18 +354,6 @@
stdDeviation="5.158893"
id="feGaussianBlur4460" />
</filter>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath8463">
<rect
style="color:#000000;fill:url(#radialGradient8467);fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect8465"
width="152.84508"
height="407.58688"
x="-293.23749"
y="98.366364"
transform="matrix(0.96592583,0.25881904,-0.25881904,0.96592583,0,0)" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4908"
@ -564,6 +509,67 @@
fx="239"
fy="51"
r="5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient97855"
id="linearGradient75956"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.6031387,0,0,1.320142,-335.96248,-128.42873)"
x1="437.71024"
y1="431.8201"
x2="437.71024"
y2="776.56293" />
<linearGradient
inkscape:collect="always"
id="linearGradient97855">
<stop
style="stop-color:#72cfcf;stop-opacity:1"
offset="0"
id="stop97857" />
<stop
style="stop-color:#3465a4;stop-opacity:1"
offset="1"
id="stop97859" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath76786">
<rect
style="fill:url(#linearGradient76790);fill-opacity:1;stroke:none"
id="rect76788"
width="654.5387"
height="321.83084"
x="617.64337"
y="-407.10275"
inkscape:export-filename="/Users/hbons/Code/SparkleShare/data/about.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
transform="matrix(0.6027834,0.79790486,0.79790486,-0.6027834,0,0)" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath101490">
<rect
style="fill:url(#linearGradient101494);fill-opacity:1;stroke:none"
id="rect101492"
width="640"
height="260"
x="147.08243"
y="645.98608"
inkscape:export-filename="/Users/hbons/Code/SparkleShare/data/about.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
</clipPath>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4820"
id="linearGradient101494"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0019617,0,0,0.68647389,67.800773,366.25579)"
x1="437.71024"
y1="525.45569"
x2="437.71024"
y2="863.80792" />
</defs>
<sodipodi:namedview
id="base"
@ -573,15 +579,15 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="286.57865"
inkscape:cy="334.70562"
inkscape:cx="495.57865"
inkscape:cy="399.70562"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1215"
inkscape:window-height="723"
inkscape:window-x="62"
inkscape:window-y="3"
showgrid="false"
inkscape:window-width="1276"
inkscape:window-height="756"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
@ -595,7 +601,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -603,16 +609,174 @@
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:url(#linearGradient4098);fill-opacity:1;stroke:none"
id="rect3322"
width="640"
height="260"
x="81.172974"
y="567.34546"
inkscape:export-filename="/Users/hbons/Code/SparkleShare/data/about.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
transform="translate(-65.90946,-78.640652)"
id="g101011"
clip-path="url(#clipPath101490)">
<rect
style="fill:url(#linearGradient75956);fill-opacity:1;stroke:none"
id="rect3322-0"
width="1024"
height="500"
x="-209.11183"
y="409.51419"
inkscape:export-filename="/Users/hbons/Code/SparkleShare/data/about.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
inkscape:export-filename="/home/hbons/SparkleShare/SparkleShare-Design-Corner/android/market-banner.png"
clip-path="url(#clipPath76786)"
style="opacity:0.3;fill:#000000;fill-opacity:1"
transform="matrix(0.94303086,1.2396339,1.2482907,-0.93649099,-1175.3905,1041.9935)"
id="g76634">
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76622"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m 41.719297,-207.93071 c 36.283859,-20.9485 75.157203,-37.05037 115.626593,-47.8941 L 281.4285,207.2578 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="4.1887902"
sodipodi:end="4.4505896" />
<path
sodipodi:end="3.403392"
sodipodi:start="3.1415927"
transform="translate(227.68838,594.78858)"
d="m -197.9899,207.25777 c 0,-41.89697 5.49205,-83.61319 16.33578,-124.082565 L 281.4285,207.2578 z"
sodipodi:ry="479.4184"
sodipodi:rx="479.4184"
sodipodi:cy="207.2578"
sodipodi:cx="281.4285"
id="path76624"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76626"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m -133.76002,446.96699 c -20.94849,-36.28386 -37.05036,-75.15721 -47.8941,-115.6266 L 281.4285,207.2578 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="2.6179939"
sodipodi:end="2.8797933" />
<path
sodipodi:end="1.8325957"
sodipodi:start="1.5707963"
transform="translate(227.68838,594.78858)"
d="m 281.42851,686.67619 c -41.89699,0 -83.61323,-5.49204 -124.08262,-16.33578 L 281.4285,207.2578 z"
sodipodi:ry="479.4184"
sodipodi:rx="479.4184"
sodipodi:cy="207.2578"
sodipodi:cx="281.4285"
id="path76628"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76630"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m 696.61701,446.967 c -20.9485,36.28385 -46.56287,69.66515 -76.18851,99.29079 l -339,-338.99999 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="0.52359878"
sodipodi:end="0.78539816" />
<path
sodipodi:end="0.26179939"
sodipodi:start="0"
transform="translate(227.68838,594.78858)"
d="m 760.84689,207.2578 c 0,41.89699 -5.49204,83.61323 -16.33578,124.08261 L 281.4285,207.2578 z"
sodipodi:ry="479.4184"
sodipodi:rx="479.4184"
sodipodi:cy="207.2578"
sodipodi:cx="281.4285"
id="path76632"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76766"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m -133.76002,-32.451389 c 20.94849,-36.283859 46.562867,-69.665161 76.188513,-99.290811 l 339.000007,339 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="3.6651914"
sodipodi:end="3.9269908" />
<path
sodipodi:end="2.3561945"
sodipodi:start="2.0943951"
transform="translate(227.68838,594.78858)"
d="M 41.7193,622.44631 C 5.4354417,601.49781 -27.945859,575.88344 -57.571505,546.25779 L 281.4285,207.2578 z"
sodipodi:ry="479.4184"
sodipodi:rx="479.4184"
sodipodi:cy="207.2578"
sodipodi:cx="281.4285"
id="path76768"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76770"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="M 521.13768,622.44632 C 484.85383,643.3948 445.9805,659.49667 405.51113,670.3404 L 281.4285,207.2578 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="1.0471976"
sodipodi:end="1.3089969" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76772"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m 696.617,-32.451414 c 20.9485,36.2838581 37.05037,75.157205 47.89411,115.626591 L 281.4285,207.2578 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="5.7595865"
sodipodi:end="6.0213859" />
<path
sodipodi:end="5.4977871"
sodipodi:start="5.2359878"
transform="translate(227.68838,594.78858)"
d="m 521.13771,-207.9307 c 36.28385,20.94849 69.66513,46.56285 99.29077,76.18848 L 281.4285,207.2578 z"
sodipodi:ry="479.4184"
sodipodi:rx="479.4184"
sodipodi:cy="207.2578"
sodipodi:cx="281.4285"
id="path76774"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76776"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m 281.42851,-272.1606 c 41.89699,0 83.61323,5.49205 124.08261,16.33579 L 281.4285,207.2578 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="4.712389"
sodipodi:end="4.9741884" />
</g>
</g>
<image
y="636.21594"
x="-158.86258"
@ -701,31 +865,25 @@
id="path6769"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccsccccccscscs" />
<flowRoot
<g
transform="matrix(0.87473072,0,0,0.87473072,-354.07575,287.92306)"
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Myriad Pro;-inkscape-font-specification:Myriad Pro Semi-Bold;opacity:1"
id="flowRoot6771"
xml:space="preserve"><flowRegion
id="flowRegion6773"><rect
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Myriad Pro;-inkscape-font-specification:Myriad Pro Semi-Bold"
y="-310.133"
x="595"
height="105"
width="532"
id="rect6775" /></flowRegion><flowPara
id="flowPara6777">s</flowPara></flowRoot> <flowRoot
xml:space="preserve"
id="flowRoot6779"
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Myriad Pro;-inkscape-font-specification:Myriad Pro Semi-Bold;opacity:1"
transform="matrix(0.87473072,0,0,0.87473072,-460.72997,287.92306)"><flowRegion
id="flowRegion6781"><rect
id="rect6783"
width="532"
height="105"
x="595"
y="-310.133"
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Myriad Pro;-inkscape-font-specification:Myriad Pro Semi-Bold" /></flowRegion><flowPara
id="flowPara6785">s</flowPara></flowRoot> <path
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke:none;font-family:Myriad Pro;-inkscape-font-specification:Myriad Pro Semi-Bold"
id="flowRoot6771">
<path
d="m 596.44,-279.835 c 1.44,0.8 3.56,1.36 5.92,1.36 5.15999,0 7.92,-2.56 7.92,-6.12 -0.04,-2.88 -1.64,-4.68 -5.2,-5.92 -2.48,-0.92 -3.4,-1.48 -3.4,-2.72 0,-1.2 0.96,-2.08 2.72,-2.08 1.72,0 3.32,0.64 4.12,1.12 l 1,-3.44 c -1.16,-0.64 -3.04,-1.16 -5.2,-1.16 -4.52,0 -7.36,2.64 -7.36,6.08 0,2.32 1.56,4.4 5.36,5.68 2.4,0.88 3.2,1.52 3.2,2.84 0,1.28 -0.96,2.2 -3.12,2.2 -1.76,0 -3.88,-0.76 -4.96,-1.44 l -1,3.6"
style=""
id="path3175" />
</g>
<g
transform="matrix(0.87473072,0,0,0.87473072,-460.72997,287.92306)"
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke:none;font-family:Myriad Pro;-inkscape-font-specification:Myriad Pro Semi-Bold"
id="flowRoot6779">
<path
d="m 596.44,-279.835 c 1.44,0.8 3.56,1.36 5.92,1.36 5.15999,0 7.92,-2.56 7.92,-6.12 -0.04,-2.88 -1.64,-4.68 -5.2,-5.92 -2.48,-0.92 -3.4,-1.48 -3.4,-2.72 0,-1.2 0.96,-2.08 2.72,-2.08 1.72,0 3.32,0.64 4.12,1.12 l 1,-3.44 c -1.16,-0.64 -3.04,-1.16 -5.2,-1.16 -4.52,0 -7.36,2.64 -7.36,6.08 0,2.32 1.56,4.4 5.36,5.68 2.4,0.88 3.2,1.52 3.2,2.84 0,1.28 -0.96,2.2 -3.12,2.2 -1.76,0 -3.88,-0.76 -4.96,-1.44 l -1,3.6"
style=""
id="path3172" />
</g>
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
inkscape:connector-curvature="0"
id="path6787"

Before

Width:  |  Height:  |  Size: 851 KiB

After

Width:  |  Height:  |  Size: 859 KiB

View file

@ -14,7 +14,7 @@
height="480"
id="svg8763"
version="1.1"
inkscape:version="0.48.0 r9654"
inkscape:version="0.48.2 r9819"
sodipodi:docname="side-splash.svg"
inkscape:export-filename="/home/hbons/github/SparkleShare/data/side-splash.png"
inkscape:export-xdpi="90"
@ -26,17 +26,17 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="19.72576"
inkscape:cy="237.36832"
inkscape:zoom="0.70710678"
inkscape:cx="373.61286"
inkscape:cy="228.3949"
inkscape:document-units="px"
inkscape:current-layer="g8506"
showgrid="false"
inkscape:window-width="1276"
inkscape:window-height="756"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0" />
inkscape:window-width="1440"
inkscape:window-height="842"
inkscape:window-x="-1"
inkscape:window-y="26"
inkscape:window-maximized="1" />
<defs
id="defs8765">
<radialGradient
@ -569,7 +569,7 @@
x2="15.142853"
y1="385.79074"
x1="-17.857147"
gradientTransform="matrix(0.93600978,0,0,1,1.5716112,5.089059e-7)"
gradientTransform="matrix(0.93600978,0,0,1.0947292,1.5716112,-55.491464)"
gradientUnits="userSpaceOnUse"
id="linearGradient8586"
xlink:href="#linearGradient8492"
@ -591,7 +591,7 @@
xlink:href="#linearGradient8492"
id="linearGradient3734"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.54207039,0,0,1,-5.4630223,5.089059e-7)"
gradientTransform="matrix(0.54207039,0,0,1.0953665,-5.4630223,-55.864827)"
x1="-17.857147"
y1="385.79074"
x2="15.142853"
@ -601,11 +601,113 @@
xlink:href="#linearGradient8492"
id="linearGradient3738"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.20873706,0,0,1,-11.415405,5.089059e-7)"
gradientTransform="matrix(0.20873706,0,0,1.0947292,-11.415405,-55.491464)"
x1="-17.857147"
y1="385.79074"
x2="15.142853"
y2="385.79074" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient97855"
id="linearGradient75956"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.6031387,0,0,1.320142,-335.96248,-128.42873)"
x1="437.71024"
y1="431.8201"
x2="437.71024"
y2="776.56293" />
<linearGradient
inkscape:collect="always"
id="linearGradient97855">
<stop
style="stop-color:#72cfcf;stop-opacity:1"
offset="0"
id="stop97857" />
<stop
style="stop-color:#3465a4;stop-opacity:1"
offset="1"
id="stop97859" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath76786">
<rect
style="fill:url(#linearGradient76790);fill-opacity:1;stroke:none"
id="rect76788"
width="654.5387"
height="321.83084"
x="617.64337"
y="-407.10275"
inkscape:export-filename="/Users/hbons/Code/SparkleShare/data/about.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
transform="matrix(0.6027834,0.79790486,0.79790486,-0.6027834,0,0)" />
</clipPath>
<linearGradient
y2="776.56293"
x2="437.71024"
y1="431.8201"
x1="437.71024"
gradientTransform="matrix(1.4148952,0,0,1.1651284,-617.69281,-374.63045)"
gradientUnits="userSpaceOnUse"
id="linearGradient100921"
xlink:href="#linearGradient97855"
inkscape:collect="always" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7605"
id="radialGradient100996"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.7535912,-5.2275014e-7,4.9956873e-7,2.9977309,-440.46603,-789.77953)"
cx="138.22266"
cy="423.06143"
fx="138.22266"
fy="423.06143"
r="73.079796" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient97855"
id="linearGradient100998"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.4148952,0,0,1.1651284,-583.69281,-380.63046)"
x1="437.71024"
y1="431.8201"
x2="437.71024"
y2="776.56293" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7605"
id="radialGradient101001"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.7535912,-5.2275014e-7,4.9956873e-7,2.9977309,-440.46603,-789.77953)"
cx="138.22266"
cy="423.06143"
fx="138.22266"
fy="423.06143"
r="73.079796" />
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath101003">
<rect
style="color:#000000;fill:url(#radialGradient101007);fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect101005"
width="177.83012"
height="571.90167"
x="46.604168"
y="102.81245"
transform="matrix(0.95444635,0.2983826,-0.2983826,0.95444635,0,0)" />
</clipPath>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7605"
id="radialGradient101007"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.2644764,-6.1973814e-7,5.9225579e-7,3.5539123,-315.7056,-956.07141)"
cx="138.22266"
cy="423.06143"
fx="138.22266"
fy="423.06143"
r="73.079796" />
</defs>
<metadata
id="metadata8768">
@ -615,7 +717,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
@ -627,17 +729,184 @@
<g
transform="translate(374.14287,98.00001)"
id="g8506">
<rect
y="103.39075"
x="-134.85715"
height="482.39999"
width="150"
id="rect8343"
style="color:#000000;fill:url(#radialGradient8554);fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
id="g100970"
clip-path="url(#clipPath101003)"
transform="matrix(0.80507706,-0.25168621,0.25168621,0.80507706,-174.16784,16.668277)"
inkscape:export-filename="/home/hbons/Projects/SparkleShare/data/side-splash.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
style="fill:url(#linearGradient100998);fill-opacity:1;stroke:none"
id="rect3322"
width="903.76007"
height="441.28906"
x="-471.73718"
y="94.146225"
inkscape:export-filename="/Users/hbons/Code/SparkleShare/data/about.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
inkscape:export-filename="/home/hbons/SparkleShare/SparkleShare-Design-Corner/android/market-banner.png"
clip-path="url(#clipPath76786)"
style="opacity:0.3;fill:#000000;fill-opacity:1"
transform="matrix(1.0746823,1.4126925,1.4225579,-1.0672295,-1721.0035,715.31306)"
id="g76634">
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76622"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m 41.719297,-207.93071 c 36.283859,-20.9485 75.157203,-37.05037 115.626593,-47.8941 L 281.4285,207.2578 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="4.1887902"
sodipodi:end="4.4505896" />
<path
sodipodi:end="3.403392"
sodipodi:start="3.1415927"
transform="translate(227.68838,594.78858)"
d="m -197.9899,207.25777 c 0,-41.89697 5.49205,-83.61319 16.33578,-124.082565 L 281.4285,207.2578 z"
sodipodi:ry="479.4184"
sodipodi:rx="479.4184"
sodipodi:cy="207.2578"
sodipodi:cx="281.4285"
id="path76624"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76626"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m -133.76002,446.96699 c -20.94849,-36.28386 -37.05036,-75.15721 -47.8941,-115.6266 L 281.4285,207.2578 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="2.6179939"
sodipodi:end="2.8797933" />
<path
sodipodi:end="1.8325957"
sodipodi:start="1.5707963"
transform="translate(227.68838,594.78858)"
d="m 281.42851,686.67619 c -41.89699,0 -83.61323,-5.49204 -124.08262,-16.33578 L 281.4285,207.2578 z"
sodipodi:ry="479.4184"
sodipodi:rx="479.4184"
sodipodi:cy="207.2578"
sodipodi:cx="281.4285"
id="path76628"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76630"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m 696.61701,446.967 c -20.9485,36.28385 -46.56287,69.66515 -76.18851,99.29079 l -339,-338.99999 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="0.52359878"
sodipodi:end="0.78539816" />
<path
sodipodi:end="0.26179939"
sodipodi:start="0"
transform="translate(227.68838,594.78858)"
d="m 760.84689,207.2578 c 0,41.89699 -5.49204,83.61323 -16.33578,124.08261 L 281.4285,207.2578 z"
sodipodi:ry="479.4184"
sodipodi:rx="479.4184"
sodipodi:cy="207.2578"
sodipodi:cx="281.4285"
id="path76632"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76766"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m -133.76002,-32.451389 c 20.94849,-36.283859 46.562867,-69.665161 76.188513,-99.290811 l 339.000007,339 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="3.6651914"
sodipodi:end="3.9269908" />
<path
sodipodi:end="2.3561945"
sodipodi:start="2.0943951"
transform="translate(227.68838,594.78858)"
d="M 41.7193,622.44631 C 5.4354417,601.49781 -27.945859,575.88344 -57.571505,546.25779 L 281.4285,207.2578 z"
sodipodi:ry="479.4184"
sodipodi:rx="479.4184"
sodipodi:cy="207.2578"
sodipodi:cx="281.4285"
id="path76768"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76770"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="M 521.13768,622.44632 C 484.85383,643.3948 445.9805,659.49667 405.51113,670.3404 L 281.4285,207.2578 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="1.0471976"
sodipodi:end="1.3089969" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76772"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m 696.617,-32.451414 c 20.9485,36.2838581 37.05037,75.157205 47.89411,115.626591 L 281.4285,207.2578 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="5.7595865"
sodipodi:end="6.0213859" />
<path
sodipodi:end="5.4977871"
sodipodi:start="5.2359878"
transform="translate(227.68838,594.78858)"
d="m 521.13771,-207.9307 c 36.28385,20.94849 69.66513,46.56285 99.29077,76.18848 L 281.4285,207.2578 z"
sodipodi:ry="479.4184"
sodipodi:rx="479.4184"
sodipodi:cy="207.2578"
sodipodi:cx="281.4285"
id="path76774"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="opacity:0.33333333;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path76776"
sodipodi:cx="281.4285"
sodipodi:cy="207.2578"
sodipodi:rx="479.4184"
sodipodi:ry="479.4184"
d="m 281.42851,-272.1606 c 41.89699,0 83.61323,5.49205 124.08261,16.33579 L 281.4285,207.2578 z"
transform="translate(227.68838,594.78858)"
sodipodi:start="4.712389"
sodipodi:end="4.9741884" />
</g>
</g>
<g
transform="matrix(0.94794592,-0.25400134,0.25400134,0.94794592,152.92196,89.255385)"
id="g8347"
clip-path="url(#clipPath8463)">
clip-path="url(#clipPath8463)"
inkscape:export-filename="/home/hbons/Projects/SparkleShare/data/side-splash.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<g
transform="translate(-471.91777,216.612)"
id="g8349"
@ -910,7 +1179,10 @@
<g
id="g8475"
transform="translate(-200,0)"
clip-path="url(#clipPath8482)">
clip-path="url(#clipPath8482)"
inkscape:export-filename="/home/hbons/Projects/SparkleShare/data/side-splash.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<image
y="184.94933"
x="219.12404"
@ -940,26 +1212,35 @@
style="opacity:0.2;color:#000000;fill:url(#linearGradient8586);fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect8488"
width="30.888323"
height="440.4061"
height="482.1254"
x="-15.142853"
y="145.38464"
transform="scale(-1,1)" />
y="103.66534"
transform="scale(-1,1)"
inkscape:export-filename="/home/hbons/Projects/SparkleShare/data/side-splash.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
transform="scale(-1,1)"
y="145.38464"
y="103.38464"
x="-15.142853"
height="440.4061"
height="482.4061"
width="17.888323"
id="rect3732"
style="opacity:0.2;color:#000000;fill:url(#linearGradient3734);fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
style="opacity:0.2;color:#000000;fill:url(#linearGradient3734);fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
inkscape:export-filename="/home/hbons/Projects/SparkleShare/data/side-splash.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="opacity:0.2;color:#000000;fill:url(#linearGradient3738);fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3736"
width="6.8883228"
height="440.4061"
height="482.1254"
x="-15.142853"
y="145.38464"
transform="scale(-1,1)" />
y="103.66534"
transform="scale(-1,1)"
inkscape:export-filename="/home/hbons/Projects/SparkleShare/data/side-splash.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 841 KiB

After

Width:  |  Height:  |  Size: 855 KiB