[FIXED] Fixed an issue that caused stored passwords to be saved without encryption. [ADDED] Logic to check for any data inconsistencies and fix them. [ADDED] Support for using dictation in site search box.
20 lines
419 B
Objective-C
20 lines
419 B
Objective-C
//
|
|
// MPConfig.h
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 02/01/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import "Pearl.h"
|
|
|
|
@interface MPConfig : PearlConfig
|
|
|
|
@property(nonatomic, retain) NSNumber *sendInfo;
|
|
@property(nonatomic, retain) NSNumber *rememberLogin;
|
|
|
|
@property(nonatomic, retain) NSNumber *iCloudDecided;
|
|
@property(nonatomic, retain) NSNumber *checkInconsistency;
|
|
|
|
@end
|