[ADDED] Word wall: Show some random dictionary words while user thinks of a new master password to give him some inspiration. [IMPROVED] Only select user after he choose to reset. [IMPROVED] Ugly backdrops in the guide images cleaned up. [FIXED] Export of sites should now include a password version field. [FIXED] Filename to save exported passwords into should use day of the month instead of day of the year. [FIXED] No search predicate was set when search scope button wasn't set. As a result, sites from other users showed up.
24 lines
503 B
Objective-C
24 lines
503 B
Objective-C
//
|
|
// MPAppDelegate.h
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 24/11/11.
|
|
// Copyright (c) 2011 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <MessageUI/MessageUI.h>
|
|
#import "MPAppDelegate_Shared.h"
|
|
|
|
@interface MPAppDelegate : MPAppDelegate_Shared<MFMailComposeViewControllerDelegate>
|
|
|
|
+ (MPAppDelegate *)get;
|
|
|
|
- (void)checkConfig;
|
|
- (void)showGuide;
|
|
|
|
- (void)export;
|
|
- (void)changeMasterPasswordFor:(MPUserEntity *)user didResetBlock:(void(^)(void))didReset;
|
|
|
|
@end
|