mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-18 19:29:22 +00:00
Added Template editing.
Creating with templates not supported yet. Templates are listed in Context-Menu under the AddEntry Toolbar Toolbar Button is missing an Arrow for now. Control-Size is not working correctly for now Nested Template or Trash groups aren't considered, this is a bug! Minor changes to the UI (Settings tabs now use common icons) Added Workflow-Settings tab to extract all the custom action possible on entries. The copy or open on URL dbl-click setting will move over to this tab.
This commit is contained in:
@@ -12,13 +12,24 @@
|
||||
#import "MPUniqueCharactersFormatter.h"
|
||||
|
||||
typedef NS_ENUM(NSUInteger, MPPasswordRating) {
|
||||
MPPasswordTerrible,
|
||||
MPPasswordWeak,
|
||||
MPPasswordOk,
|
||||
MPPasswordGood,
|
||||
MPPasswordStrong
|
||||
MPPasswordTerrible = 10,
|
||||
MPPasswordWeak = 20,
|
||||
MPPasswordOk = 30,
|
||||
MPPasswordGood = 50,
|
||||
MPPasswordStrong = 60
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
|
||||
0 - 20 Terrible
|
||||
21 - 31 Weak
|
||||
32 - 55 Good
|
||||
56 - 85 Excellent
|
||||
85 - Fantastic
|
||||
|
||||
Skale 0-90
|
||||
*/
|
||||
#define MIN_PASSWORD_LENGTH 1
|
||||
#define MAX_PASSWORD_LENGTH 64
|
||||
|
||||
|
||||
Reference in New Issue
Block a user