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 isn't just a piece of software, it's a workflow.
It's designed to make sharing documents 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 is a file sharing and collaboration tool
inspired by DropBox. It allows you to instantly sync
with any Git repository you have access to.
SparklePony isn't just a piece of software, it's part of
your workflow. It's designed to make sharing documents
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,
Windows and OSX versions are planned for the future.
What SparklePony is not:
- A graphical frontend for git
- A backup tool
SparklePony is not:
- a graphical frontend for git
- a backup tool
In contrast to the projects name, we will very likely
refuse to implement your personal ponies. :)

View file

@ -645,7 +645,7 @@ public class SparklePonyWindow : Window {
Process.StartInfo.FileName = "git";
Process.StartInfo.Arguments = "log --pretty=oneline -20";
Process.StartInfo.WorkingDirectory = Repositories [1].RepoPath;
Process.StartInfo.WorkingDirectory = Repositories [0].RepoPath;
Process.Start();
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, 1, Message);
LogStore.SetValue (Iter, 2, "32 minutes ago ");
LogStore.SetValue (Iter, 2, " 32 minutes ago ");
}
TreeView LogView = new TreeView (LogStore);
@ -678,6 +678,9 @@ public class SparklePonyWindow : Window {
TreeViewColumn [] Columns = LogView.Columns;
Columns [0].MinWidth = 32;
Columns [1].Expand = true;
Columns [1].MaxWidth = 150;
ScrolledWindow ScrolledWindow = new ScrolledWindow ();
ScrolledWindow.AddWithViewport (LogView);