571898632f
[ADDED] The master password can now be changed. [IMPROVED] Flow of handling the master password when activating the app. [IMPROVED] iTunesArtwork & icons. [ADDED] Elements are now scoped to the current master password. [ADDED] Lots of documentation for the user: - Settings - FAQ - A quickstart guide
20 lines
475 B
Objective-C
20 lines
475 B
Objective-C
//
|
|
// OPConfig.h
|
|
// OnePassword
|
|
//
|
|
// Created by Maarten Billemont on 02/01/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
@interface OPConfig : Config
|
|
|
|
@property (nonatomic, retain) NSNumber *dataStoreError;
|
|
@property (nonatomic, retain) NSNumber *storeKeyPhrase;
|
|
@property (nonatomic, retain) NSNumber *rememberKeyPhrase;
|
|
@property (nonatomic, retain) NSNumber *forgetKeyPhrase;
|
|
@property (nonatomic, retain) NSNumber *helpHidden;
|
|
|
|
+ (OPConfig *)get;
|
|
|
|
@end
|