Update README

This commit is contained in:
Hylke Bons 2010-04-30 01:28:54 +01:00
parent 93d9c21716
commit aacf1448d3
2 changed files with 19 additions and 12 deletions

24
README
View file

@ -1,19 +1,23 @@
SparklePony SparklePony
SparklePony isn't just a piece of software, it's a workflow. SparklePony is a file sharing and collaboration tool
It's designed to make sharing documents and collaboration inspired by DropBox. It allows you to instantly sync
easier, and to make peers aware of what you are doing. The with any Git repository you have access to.
user interface and features are made to support this goal.
However, you may find SparklePony useful for other kinds SparklePony isn't just a piece of software, it's part of
of purposes as well, like backing up files or monitoring your workflow. It's designed to make sharing documents
your favourite project. and collaboration easier, and to make peers aware of what
you are doing. The user interface and features are made
to support this goal. However, you may find SparklePony
useful for other kinds of purposes as well, like backing
up files or monitoring your favourite project.
SparklePony currently only works on Linux, SparklePony currently only works on Linux,
Windows and OSX versions are planned for the future. Windows and OSX versions are planned for the future.
What SparklePony is not: SparklePony is not:
- A graphical frontend for git - a graphical frontend for git
- A backup tool - a backup tool
In contrast to the projects name, we will very likely In contrast to the projects name, we will very likely
refuse to implement your personal ponies. :) refuse to implement your personal ponies. :)

View file

@ -645,7 +645,7 @@ public class SparklePonyWindow : Window {
Process.StartInfo.FileName = "git"; Process.StartInfo.FileName = "git";
Process.StartInfo.Arguments = "log --pretty=oneline -20"; Process.StartInfo.Arguments = "log --pretty=oneline -20";
Process.StartInfo.WorkingDirectory = Repositories [1].RepoPath; Process.StartInfo.WorkingDirectory = Repositories [0].RepoPath;
Process.Start(); Process.Start();
string Output = Process.StandardOutput.ReadToEnd().Trim (); string Output = Process.StandardOutput.ReadToEnd().Trim ();
@ -667,7 +667,7 @@ public class SparklePonyWindow : Window {
LogStore.SetValue (Iter, 0, new Gdk.Pixbuf (IconFile)); LogStore.SetValue (Iter, 0, new Gdk.Pixbuf (IconFile));
LogStore.SetValue (Iter, 1, Message); LogStore.SetValue (Iter, 1, Message);
LogStore.SetValue (Iter, 2, "32 minutes ago "); LogStore.SetValue (Iter, 2, " 32 minutes ago ");
} }
TreeView LogView = new TreeView (LogStore); TreeView LogView = new TreeView (LogStore);
@ -678,6 +678,9 @@ public class SparklePonyWindow : Window {
TreeViewColumn [] Columns = LogView.Columns; TreeViewColumn [] Columns = LogView.Columns;
Columns [0].MinWidth = 32; Columns [0].MinWidth = 32;
Columns [1].Expand = true; Columns [1].Expand = true;
Columns [1].MaxWidth = 150;
ScrolledWindow ScrolledWindow = new ScrolledWindow (); ScrolledWindow ScrolledWindow = new ScrolledWindow ();
ScrolledWindow.AddWithViewport (LogView); ScrolledWindow.AddWithViewport (LogView);