From 33d992b7fb849875f5b322530a0778b09b56fa82 Mon Sep 17 00:00:00 2001 From: michael starke Date: Fri, 4 Apr 2014 23:18:24 +0200 Subject: [PATCH] Updated Readme with warning of Autotype fuck up (0.4.2 will have a fix-up tool) Fixed issue with inspector still displaying deleted entries --- MacPass/MPEntryViewController.m | 7 +++++++ README.md | 2 ++ 2 files changed, 9 insertions(+) diff --git a/MacPass/MPEntryViewController.m b/MacPass/MPEntryViewController.m index ed14a221..2034eff3 100644 --- a/MacPass/MPEntryViewController.m +++ b/MacPass/MPEntryViewController.m @@ -293,6 +293,13 @@ NSString *const _MPTAbleSecurCellView = @"PasswordCell"; return view; } +- (void)tableView:(NSTableView *)tableView didRemoveRowView:(NSTableRowView *)rowView forRow:(NSInteger)row { + /* Rows being removed for data change should be chekced here to clear selections */ + if(row == -1) { + [self tableViewSelectionDidChange:nil]; + } +} + - (void)tableViewSelectionDidChange:(NSNotification *)notification { MPDocument *document = [[self windowController] document]; if([self.entryTable selectedRow] < 0 || [[_entryTable selectedRowIndexes] count] > 1) { diff --git a/README.md b/README.md index cc6ba04d..eac059bc 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,8 @@ After that you can build and run in Xcode. If you run into signing issues take a * KDBX DeletedObjects are stripped on save. This will break synchronisation features! * Binary releases (since 0.4.x): * KDBX History is only preseverd. Editting doesn't create new history entries + * Default Autotype Sequences will get stored + * Default Autotype sequence is wrong ````{TAB}{USERNAME}{TAB}{PASSWORD}{ENTER}```` instead of ````{USERNAME}{TAB}{PASSWORD}{ENTER}```` ##System Requirement