diff --git a/SparkleShare/SparkleController.cs b/SparkleShare/SparkleController.cs index 66cb0f11..ab5caac4 100644 --- a/SparkleShare/SparkleController.cs +++ b/SparkleShare/SparkleController.cs @@ -251,6 +251,9 @@ namespace SparkleShare { foreach (SparkleRepoBase repo in Repositories) list.AddRange (repo.GetChangeSets (50)); + list.Sort ((x, y) => (x.Timestamp.CompareTo (y.Timestamp))); + list.Reverse (); + if (list.Count > 100) return list.GetRange (0, 100); else