From 1c39f1c3fed0cc22577c949df7aff632f46958d1 Mon Sep 17 00:00:00 2001 From: michael starke Date: Thu, 1 Sep 2016 19:52:34 +0200 Subject: [PATCH] using newer KeePassKit with correct undo/redo support expiration --- Cartfile | 2 +- Cartfile.resolved | 2 +- MacPass/AutotypeBuilderView.xib | 37 +++++++++++++++++++++++ MacPass/MPAutotypeBuilderViewController.h | 13 ++++++++ MacPass/MPAutotypeBuilderViewController.m | 22 ++++++++++++++ 5 files changed, 74 insertions(+), 2 deletions(-) create mode 100644 MacPass/AutotypeBuilderView.xib create mode 100644 MacPass/MPAutotypeBuilderViewController.h create mode 100644 MacPass/MPAutotypeBuilderViewController.m diff --git a/Cartfile b/Cartfile index 9f58c604..94656ccd 100644 --- a/Cartfile +++ b/Cartfile @@ -1,3 +1,3 @@ github "sparkle-project/Sparkle" ~> 1.13.1 -github "mstarke/KeePassKit" "aee63e69f36d0a3d08763632a1472d312374f9a0" +github "mstarke/KeePassKit" "d66c888b299358481da2ba2672ec7c644cce56ec" github "mstarke/HNHUi" ~> 1.1 diff --git a/Cartfile.resolved b/Cartfile.resolved index a9012e78..5db8a76d 100644 --- a/Cartfile.resolved +++ b/Cartfile.resolved @@ -1,3 +1,3 @@ github "mstarke/HNHUi" "1.1" -github "mstarke/KeePassKit" "bf47781a618fc514288315995a966b5f630f6918" +github "mstarke/KeePassKit" "d66c888b299358481da2ba2672ec7c644cce56ec" github "sparkle-project/Sparkle" "1.14.0" diff --git a/MacPass/AutotypeBuilderView.xib b/MacPass/AutotypeBuilderView.xib new file mode 100644 index 00000000..d7c83700 --- /dev/null +++ b/MacPass/AutotypeBuilderView.xib @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MacPass/MPAutotypeBuilderViewController.h b/MacPass/MPAutotypeBuilderViewController.h new file mode 100644 index 00000000..bfe11c71 --- /dev/null +++ b/MacPass/MPAutotypeBuilderViewController.h @@ -0,0 +1,13 @@ +// +// MPAutotypeBuilderViewController.h +// MacPass +// +// Created by Michael Starke on 01/09/16. +// Copyright © 2016 HicknHack Software GmbH. All rights reserved. +// + +#import + +@interface MPAutotypeBuilderViewController : NSViewController + +@end diff --git a/MacPass/MPAutotypeBuilderViewController.m b/MacPass/MPAutotypeBuilderViewController.m new file mode 100644 index 00000000..8d0c6fde --- /dev/null +++ b/MacPass/MPAutotypeBuilderViewController.m @@ -0,0 +1,22 @@ +// +// MPAutotypeBuilderViewController.m +// MacPass +// +// Created by Michael Starke on 01/09/16. +// Copyright © 2016 HicknHack Software GmbH. All rights reserved. +// + +#import "MPAutotypeBuilderViewController.h" + +@interface MPAutotypeBuilderViewController () + +@end + +@implementation MPAutotypeBuilderViewController + +- (void)viewDidLoad { + [super viewDidLoad]; + // Do view setup here. +} + +@end