[kismac] [binaervarianz] r237 - in trunk: Resources/Nibs/English.lproj/PrefsDriver.nib Resources/Strings/English.lproj Sources/Controller
- From: svn@xxxxxxxxxxxxxxxx
- To: kismac@xxxxxxxxxxxxx
- Date: Tue, 24 Apr 2007 10:14:56 +0200
Author: themacuser
Date: 2007-04-24 10:14:44 +0200 (Tue, 24 Apr 2007)
New Revision: 237
Added:
trunk/Resources/Nibs/English.lproj/PrefsDriver.nib/keyedobjects.nib
Modified:
trunk/Resources/Strings/English.lproj/Localizable.strings
trunk/Sources/Controller/GrowlController.m
trunk/Sources/Controller/ScanControllerPrivate.m
trunk/Sources/Controller/ScanControllerScriptable.m
Log:
Fixed #201 (Growl Probe request popup spelling error)
Fixed #209 (Newshams Attack dialog description inaccurate)
Fixed an issue with the PrefsDriver NIB file.
Added: trunk/Resources/Nibs/English.lproj/PrefsDriver.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Property changes on:
trunk/Resources/Nibs/English.lproj/PrefsDriver.nib/keyedobjects.nib
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/Resources/Strings/English.lproj/Localizable.strings
===================================================================
(Binary files differ)
Modified: trunk/Sources/Controller/GrowlController.m
===================================================================
--- trunk/Sources/Controller/GrowlController.m 2007-04-24 06:50:28 UTC (rev
236)
+++ trunk/Sources/Controller/GrowlController.m 2007-04-24 08:14:44 UTC (rev
237)
@@ -114,8 +114,8 @@
{
[GrowlApplicationBridge
notifyWithTitle:@"KisMAC"
- description:[NSString stringWithFormat:@"Probe Request
Recieved:\nMAC: %@\nSignal: %i",BSSID,signal]
- notificationName:@"Probe Request Recieved"
+ description:[NSString stringWithFormat:@"Probe Request
Received:\nMAC: %@\nSignal: %i",BSSID,signal]
+ notificationName:@"Probe Request Received"
iconData:[NSData dataWithData:[[NSImage
imageNamed:@"growl-probe"] TIFFRepresentation]]
priority:0
isSticky:NO
@@ -189,7 +189,7 @@
}
- (NSDictionary *)registrationDictionaryForGrowl {
- NSArray *allNotifications = [NSArray arrayWithObjects:@"Scan
Started/Stopped",@"Open Network Found",@"Closed Network Found",@"Probe Request
Recieved",@"WPA Challenge/Response",@"Hidden SSID Revealed",nil];
+ NSArray *allNotifications = [NSArray arrayWithObjects:@"Scan
Started/Stopped",@"Open Network Found",@"Closed Network Found",@"Probe Request
Received",@"WPA Challenge/Response",@"Hidden SSID Revealed",nil];
NSArray *defaultNotifications = [NSArray arrayWithObjects:@"Scan
Started/Stopped",@"Open Network Found",@"Closed Network Found",@"WPA
Challenge/Response",@"Hidden SSID Revealed",nil];
NSDictionary *registrationDict = [NSDictionary
dictionaryWithObjectsAndKeys:allNotifications, GROWL_NOTIFICATIONS_ALL,
defaultNotifications, GROWL_NOTIFICATIONS_DEFAULT, nil];
return registrationDict;
Modified: trunk/Sources/Controller/ScanControllerPrivate.m
===================================================================
--- trunk/Sources/Controller/ScanControllerPrivate.m 2007-04-24 06:50:28 UTC
(rev 236)
+++ trunk/Sources/Controller/ScanControllerPrivate.m 2007-04-24 08:14:44 UTC
(rev 237)
@@ -309,6 +309,12 @@
);
[self stopActiveAttacks];
break;
+ case 6:
+ NSBeginAlertSheet(NSLocalizedString(@"Cracking unsuccessful",
"Error box title for WEP attacks"),
+ OK, NULL, NULL, _window, self, NULL, NULL, NULL,
+ NSLocalizedString(@"Cracking unsuccessful description for
newsham", "LONG description with possible causes")
+ );
+ break;
default:
break;
}
Modified: trunk/Sources/Controller/ScanControllerScriptable.m
===================================================================
--- trunk/Sources/Controller/ScanControllerScriptable.m 2007-04-24 06:50:28 UTC
(rev 236)
+++ trunk/Sources/Controller/ScanControllerScriptable.m 2007-04-24 08:14:44 UTC
(rev 237)
@@ -423,7 +423,7 @@
- (BOOL)bruteforceNewsham {
WEPCHECKS;
- _crackType = 2;
+ _crackType = 6;
[self startCrackDialogWithTitle:NSLocalizedString(@"Performing Newsham
attack...", "busy dialog")];
[_importController setMax:127];
Other related posts:
- » [kismac] [binaervarianz] r237 - in trunk: Resources/Nibs/English.lproj/PrefsDriver.nib Resources/Strings/English.lproj Sources/Controller