mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
e281c983d6
Shows a relative time ("x minutes ago", "Yesterday", "x days ago", "x years ago").
- Sort the column on the commit's date and not on the string value
- Use a custom formatter connected to the cell in the XIB
- Show or hide using the contextual menu for the table header
17 lines
240 B
Objective-C
17 lines
240 B
Objective-C
//
|
|
// GitXRelativeDateFormatter.h
|
|
// GitX
|
|
//
|
|
// Created by Nathan Kinsinger on 9/1/10.
|
|
// Copyright 2010 Nathan Kinsinger. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface GitXRelativeDateFormatter : NSFormatter {
|
|
|
|
}
|
|
|
|
@end
|