Index: NewPasswordGenerator.m ================================================================== --- NewPasswordGenerator.m +++ NewPasswordGenerator.m @@ -57,11 +57,11 @@ [[siteHash class] digestSize], _passphrase, strlen(_passphrase), _output, _length); for (size_t i = 0; i < _length; i++) _output[i] = - "0123456789" - "abcdefghijklmnopqrstuvwxyz" - "ABCDEFGHIJKLMNOPQRSTUVWXYZ" - ".!"[_output[i] & 0x3F]; + "123456789" + "abcdefghijkmnopqrstuvwxyz" + "ABCDEFGHJKLMNPQRSTUVWXYZ" + "#$%-=?"[_output[i] & 0x3F]; } @end Index: iOS/ShowDetailsController.m ================================================================== --- iOS/ShowDetailsController.m +++ iOS/ShowDetailsController.m @@ -126,11 +126,12 @@ preferredStyle: UIAlertControllerStyleAlert]; [alert addAction: [UIAlertAction actionWithTitle: @"OK" style: UIAlertActionStyleDefault handler: ^ (UIAlertAction *action) { - [self.navigationController popViewControllerAnimated: YES]; + [self.navigationController + popViewControllerAnimated: YES]; }]]; [self presentViewController: alert animated: YES completion: nil];