03 Mar, 2014

1 commit


26 Feb, 2014

1 commit


25 Feb, 2014

1 commit


24 Feb, 2014

2 commits


23 Feb, 2014

1 commit


18 Feb, 2014

3 commits


13 Feb, 2014

1 commit

  • Emails are used to associate commits with users. The emails
    are not verified and don't have to be valid email addresses. They
    are assigned on a first come, first serve basis.
    
    Notifications are sent when an email is added.
    Jason Hollingsworth
     

11 Feb, 2014

1 commit


24 Jan, 2014

1 commit


23 Jan, 2014

2 commits


14 Jan, 2014

1 commit


23 Dec, 2013

1 commit


17 Dec, 2013

1 commit


16 Dec, 2013

1 commit


04 Dec, 2013

1 commit


01 Dec, 2013

1 commit


30 Nov, 2013

1 commit


29 Nov, 2013

1 commit


27 Nov, 2013

2 commits


26 Nov, 2013

1 commit


21 Nov, 2013

1 commit


17 Nov, 2013

1 commit


05 Nov, 2013

1 commit


01 Nov, 2013

1 commit


14 Oct, 2013

1 commit


11 Oct, 2013

2 commits


29 Sep, 2013

1 commit


27 Sep, 2013

1 commit


26 Sep, 2013

2 commits


25 Sep, 2013

2 commits


13 Sep, 2013

1 commit


11 Sep, 2013

1 commit

  • When viewing the diff for a changed image file, two bugs occur:
    
    - Both the 'before' and 'after' images link to the 'after' commit
    - Visiting the link for either image will cause a error
    
    The first is caused by both image links referencing '@commit.id' rather
    than '@commit.parent_id'.  The second is caused by the use of
    'project_tree_path' which is used for creating links to directories in
    the git file tree. 'project_blob_path' which links to files should be
    used instead.
    Ryan Mendivil