Fichiers
ExactTime/exacttimeprefs/ExactTimeprefs.mm
Gil Shahar 41180d2ffc Version 1.3
*Added an option to add estimated time to the exact time.
Example: "48m ago • 09:41"

*Added an option to add minutes to "Xh ago"
Example: "5h 47m ago"

*You can also combine these two options to get something like this: "5h 47m ago • 09:41"

*Added an icon to the preferences.
2017-06-03 10:19:05 +03:00

21 lignes
378 B
Objective-C

#import <Preferences/Preferences.h>
@interface ExactTimeprefsListController: PSListController {
}
@end
@implementation ExactTimeprefsListController
- (id)specifiers {
if(_specifiers == nil) {
_specifiers = [[self loadSpecifiersFromPlistName:@"ExactTimeprefs" target:self] retain];
}
return _specifiers;
}
-(void)apply{
[self.view endEditing:YES];
}
@end
// vim:ft=objc