adium 2356:ca99ae8114c2: Fixed misspelling introduced in [a5d4f6...

commits at adium.im commits at adium.im
Thu May 28 03:12:38 UTC 2009


details:	http://hg.adium.im/adium/rev/ca99ae8114c2
revision:	2356:ca99ae8114c2
author:		Peter Hosey <hg at boredzo.org>
date:		Tue May 26 21:26:15 2009 -0700

Fixed misspelling introduced in [a5d4f6cc2e54].
Subject: adium 2357:6de580243c77: Fix the range of the “Custom Pitch” sliders. This fixes #12251, where any speech action with custom pitch had really high pitch.

details:	http://hg.adium.im/adium/rev/6de580243c77
revision:	2357:6de580243c77
author:		Peter Hosey <hg at boredzo.org>
date:		Wed May 27 20:12:14 2009 -0700

Fix the range of the “Custom Pitch” sliders. This fixes #12251, where any speech action with custom pitch had really high pitch.

The low end of the sliders was 90, which is just under twice the default value reported by Alex (45 and some change). All the system-supplied voices are in the 30–60 range. I wonder what units NSSpeechSynthesizer is using? In case you're wondering: The high end of the sliders was 300.

The new range is 0.01 to 90.

diffstat:

 ChangeLogs/Changes Between Betas.txt                           |    3 +-
 Frameworks/Adium Framework/Source/AIAccount.m                  |    4 +-
 Resources/AnnouncerSpeakEventContactAlert.nib/classes.nib      |  335 +++++++++--
 Resources/AnnouncerSpeakEventContactAlert.nib/info.nib         |   19 +-
 Resources/AnnouncerSpeakEventContactAlert.nib/keyedobjects.nib |      
 Resources/AnnouncerSpeakTextContactAlert.nib/classes.nib       |  360 ++++++++++--
 Resources/AnnouncerSpeakTextContactAlert.nib/info.nib          |   20 +-
 Resources/AnnouncerSpeakTextContactAlert.nib/keyedobjects.nib  |      
 8 files changed, 579 insertions(+), 162 deletions(-)

diffs (809 lines):

diff -r a29b4d381a6f -r 6de580243c77 ChangeLogs/Changes Between Betas.txt
--- a/ChangeLogs/Changes Between Betas.txt	Wed May 27 22:07:14 2009 -0400
+++ b/ChangeLogs/Changes Between Betas.txt	Wed May 27 20:12:14 2009 -0700
@@ -6,4 +6,5 @@
  * Fixed indeterminate errors if you provide a space in an IRC account's NickServ password.
  * Fixed retweeting or deleting tweets featuring any of: ;/?:@&=+$, (#12217)
  * Changed behavior when moving a contact between groups, fixing a bug in protocols which don't support multiple groups.
- * Changed behavior when moving a contact into a meta contact: the contact is moved into the meta contact's groups.
\ No newline at end of file
+ * Changed behavior when moving a contact into a meta contact: the contact is moved into the meta contact's groups.
+ * Fixed bug causing speech actions with custom pitch to have really high pitch (#12251).
diff -r a29b4d381a6f -r 6de580243c77 Frameworks/Adium Framework/Source/AIAccount.m
--- a/Frameworks/Adium Framework/Source/AIAccount.m	Wed May 27 22:07:14 2009 -0400
+++ b/Frameworks/Adium Framework/Source/AIAccount.m	Wed May 27 20:12:14 2009 -0700
@@ -1222,7 +1222,7 @@
  *
  * @return An AIStatus fit for being modified.
  */
-- (AIStatus *)modifyableCurrentStatus
+- (AIStatus *)modifiableCurrentStatus
 {
 	AIStatus *currentStatus = self.statusState;
 	
@@ -1241,7 +1241,7 @@
  */
 - (void)setScriptingStatusMessageWithAttributedString:(id)message
 {
-	AIStatus *currentStatus = [self modifyableCurrentStatus];
+	AIStatus *currentStatus = [self modifiableCurrentStatus];
 	
 	if ([message isKindOfClass:[NSAttributedString class]])
 		[currentStatus setStatusMessage:(NSAttributedString *)message];
diff -r a29b4d381a6f -r 6de580243c77 Resources/AnnouncerSpeakEventContactAlert.nib/classes.nib
--- a/Resources/AnnouncerSpeakEventContactAlert.nib/classes.nib	Wed May 27 22:07:14 2009 -0400
+++ b/Resources/AnnouncerSpeakEventContactAlert.nib/classes.nib	Wed May 27 20:12:14 2009 -0700
@@ -1,74 +1,261 @@
-{
-    IBClasses =     (
-                {
-            CLASS = AIActionDetailsPane;
-            LANGUAGE = ObjC;
-            SUPERCLASS = AIModularPane;
-        },
-                {
-            CLASS = AILocalizationButton;
-            LANGUAGE = ObjC;
-            OUTLETS =             {
-                "view_anchorToLeftSide" = NSView;
-                "view_anchorToRightSide" = NSView;
-                "window_anchorOnLeftSide" = NSWindow;
-                "window_anchorOnRightSide" = NSWindow;
-            };
-            SUPERCLASS = NSButton;
-        },
-                {
-            CLASS = AILocalizationTextField;
-            LANGUAGE = ObjC;
-            OUTLETS =             {
-                "view_anchorToLeftSide" = NSView;
-                "view_anchorToRightSide" = NSView;
-                "window_anchorOnLeftSide" = NSWindow;
-                "window_anchorOnRightSide" = NSWindow;
-            };
-            SUPERCLASS = NSTextField;
-        },
-                {
-            ACTIONS =             {
-                changePreference = id;
-            };
-            CLASS = AIModularPane;
-            LANGUAGE = ObjC;
-            OUTLETS =             {
-                plugin = id;
-                view = NSView;
-            };
-            SUPERCLASS = AIObject;
-        },
-                {
-            CLASS = AIObject;
-            LANGUAGE = ObjC;
-            SUPERCLASS = NSObject;
-        },
-                {
-            CLASS = ESAnnouncerAbstractDetailPane;
-            LANGUAGE = ObjC;
-            OUTLETS =             {
-                "checkBox_customPitch" = NSButton;
-                "checkBox_customRate" = NSButton;
-                "checkBox_speakContactName" = AILocalizationButton;
-                "checkBox_speakEventTime" = AILocalizationButton;
-                "label_voice" = NSTextField;
-                "popUp_voices" = NSPopUpButton;
-                "slider_pitch" = NSSlider;
-                "slider_rate" = NSSlider;
-            };
-            SUPERCLASS = AIActionDetailsPane;
-        },
-                {
-            CLASS = ESAnnouncerSpeakEventAlertDetailPane;
-            LANGUAGE = ObjC;
-            SUPERCLASS = ESAnnouncerAbstractDetailPane;
-        },
-                {
-            CLASS = FirstResponder;
-            LANGUAGE = ObjC;
-            SUPERCLASS = NSObject;
-        }
-    );
-    IBVersion = 1;
-}
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>IBClasses</key>
+	<array>
+		<dict>
+			<key>CLASS</key>
+			<string>ESAnnouncerSpeakEventAlertDetailPane</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>ESAnnouncerAbstractDetailPane</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSApplication</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSResponder</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>RBSplitView</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>delegate</key>
+				<string>id</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>RBSplitSubview</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSTextField</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSControl</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>RBSplitSubview</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSView</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSMenu</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+		<dict>
+			<key>ACTIONS</key>
+			<dict>
+				<key>adiumPrint</key>
+				<string>id</string>
+				<key>didAdjustSubviews</key>
+				<string>RBSplitView</string>
+				<key>prefsWindowWillClose</key>
+				<string>SS_PrefsController</string>
+				<key>toggleFindPanel</key>
+				<string>id</string>
+				<key>willAdjustSubviews</key>
+				<string>RBSplitView</string>
+			</dict>
+			<key>CLASS</key>
+			<string>NSObject</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>AILocalizationButton</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>view_anchorToLeftSide</key>
+				<string>NSView</string>
+				<key>view_anchorToRightSide</key>
+				<string>NSView</string>
+				<key>window_anchorOnLeftSide</key>
+				<string>NSWindow</string>
+				<key>window_anchorOnRightSide</key>
+				<string>NSWindow</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>NSButton</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSWindow</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSResponder</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>AIActionDetailsPane</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>AIModularPane</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSView</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSResponder</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSMenuItem</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>FirstResponder</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSCell</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+		<dict>
+			<key>ACTIONS</key>
+			<dict>
+				<key>changePreference</key>
+				<string>id</string>
+			</dict>
+			<key>CLASS</key>
+			<string>AIModularPane</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>plugin</key>
+				<string>id</string>
+				<key>view</key>
+				<string>NSView</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSButton</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSControl</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSPopUpButton</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSButton</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>ESAnnouncerAbstractDetailPane</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>checkBox_customPitch</key>
+				<string>NSButton</string>
+				<key>checkBox_customRate</key>
+				<string>NSButton</string>
+				<key>checkBox_speakContactName</key>
+				<string>AILocalizationButton</string>
+				<key>checkBox_speakEventTime</key>
+				<string>AILocalizationButton</string>
+				<key>label_voice</key>
+				<string>NSTextField</string>
+				<key>popUp_voices</key>
+				<string>NSPopUpButton</string>
+				<key>slider_pitch</key>
+				<string>NSSlider</string>
+				<key>slider_rate</key>
+				<string>NSSlider</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>AIActionDetailsPane</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSPopUpButtonCell</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSMenuItemCell</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>AILocalizationTextField</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>view_anchorToLeftSide</key>
+				<string>NSView</string>
+				<key>view_anchorToRightSide</key>
+				<string>NSView</string>
+				<key>window_anchorOnLeftSide</key>
+				<string>NSWindow</string>
+				<key>window_anchorOnRightSide</key>
+				<string>NSWindow</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>NSTextField</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSButtonCell</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSActionCell</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>SS_PrefsController</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>delegate</key>
+				<string>id</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+	</array>
+	<key>IBVersion</key>
+	<string>1</string>
+</dict>
+</plist>
diff -r a29b4d381a6f -r 6de580243c77 Resources/AnnouncerSpeakEventContactAlert.nib/info.nib
--- a/Resources/AnnouncerSpeakEventContactAlert.nib/info.nib	Wed May 27 22:07:14 2009 -0400
+++ b/Resources/AnnouncerSpeakEventContactAlert.nib/info.nib	Wed May 27 20:12:14 2009 -0700
@@ -2,22 +2,19 @@
 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
 <plist version="1.0">
 <dict>
-	<key>IBDocumentLocation</key>
-	<string>81 125 356 240 0 0 1440 878 </string>
-	<key>IBEditorPositions</key>
-	<dict>
-		<key>5</key>
-		<string>271 379 558 217 0 0 1440 878 </string>
-	</dict>
 	<key>IBFramework Version</key>
-	<string>482.0</string>
+	<string>672</string>
+	<key>IBLastKnownRelativeProjectPath</key>
+	<string>../Adium.xcodeproj</string>
+	<key>IBOldestOS</key>
+	<integer>5</integer>
 	<key>IBOpenObjects</key>
 	<array>
 		<integer>5</integer>
 	</array>
 	<key>IBSystem Version</key>
-	<string>9C31</string>
-	<key>IBUsesTextArchiving</key>
-	<true/>
+	<string>9G55</string>
+	<key>targetFramework</key>
+	<string>IBCocoaFramework</string>
 </dict>
 </plist>
diff -r a29b4d381a6f -r 6de580243c77 Resources/AnnouncerSpeakEventContactAlert.nib/keyedobjects.nib
Binary file Resources/AnnouncerSpeakEventContactAlert.nib/keyedobjects.nib has changed
diff -r a29b4d381a6f -r 6de580243c77 Resources/AnnouncerSpeakTextContactAlert.nib/classes.nib
--- a/Resources/AnnouncerSpeakTextContactAlert.nib/classes.nib	Wed May 27 22:07:14 2009 -0400
+++ b/Resources/AnnouncerSpeakTextContactAlert.nib/classes.nib	Wed May 27 20:12:14 2009 -0700
@@ -1,64 +1,296 @@
-{
-    IBClasses = (
-        {CLASS = AIActionDetailsPane; LANGUAGE = ObjC; SUPERCLASS = AIModularPane; }, 
-        {CLASS = AIAutoScrollView; LANGUAGE = ObjC; SUPERCLASS = NSScrollView; }, 
-        {
-            CLASS = AILocalizationButton; 
-            LANGUAGE = ObjC; 
-            OUTLETS = {
-                "view_anchorToLeftSide" = NSView; 
-                "view_anchorToRightSide" = NSView; 
-                "window_anchorOnLeftSide" = NSWindow; 
-                "window_anchorOnRightSide" = NSWindow; 
-            }; 
-            SUPERCLASS = NSButton; 
-        }, 
-        {
-            CLASS = AILocalizationTextField; 
-            LANGUAGE = ObjC; 
-            OUTLETS = {
-                "view_anchorToLeftSide" = NSView; 
-                "view_anchorToRightSide" = NSView; 
-                "window_anchorOnLeftSide" = NSWindow; 
-                "window_anchorOnRightSide" = NSWindow; 
-            }; 
-            SUPERCLASS = NSTextField; 
-        }, 
-        {
-            ACTIONS = {changePreference = id; }; 
-            CLASS = AIModularPane; 
-            LANGUAGE = ObjC; 
-            OUTLETS = {plugin = id; view = NSView; }; 
-            SUPERCLASS = AIObject; 
-        }, 
-        {CLASS = AIObject; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, 
-        {
-            CLASS = ESAnnouncerAbstractDetailPane; 
-            LANGUAGE = ObjC; 
-            OUTLETS = {
-                "checkBox_customPitch" = NSButton; 
-                "checkBox_customRate" = NSButton; 
-                "checkBox_speakContactName" = AILocalizationButton; 
-                "checkBox_speakEventTime" = AILocalizationButton; 
-                "label_voice" = NSTextField; 
-                "popUp_voices" = NSPopUpButton; 
-                "slider_pitch" = NSSlider; 
-                "slider_rate" = NSSlider; 
-            }; 
-            SUPERCLASS = AIActionDetailsPane; 
-        }, 
-        {
-            CLASS = ESAnnouncerSpeakTextAlertDetailPane; 
-            LANGUAGE = ObjC; 
-            OUTLETS = {
-                "box_substitutions" = NSBox; 
-                "textView_substitutions" = AILocalizationTextField; 
-                "textView_textToSpeak" = NSTextView; 
-                "textView_textToSpeakLabel" = AILocalizationTextField; 
-            }; 
-            SUPERCLASS = ESAnnouncerAbstractDetailPane; 
-        }, 
-        {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }
-    ); 
-    IBVersion = 1; 
-}
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>IBClasses</key>
+	<array>
+		<dict>
+			<key>CLASS</key>
+			<string>ESAnnouncerSpeakTextAlertDetailPane</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>box_substitutions</key>
+				<string>NSBox</string>
+				<key>textView_substitutions</key>
+				<string>AILocalizationTextField</string>
+				<key>textView_textToSpeak</key>
+				<string>NSTextView</string>
+				<key>textView_textToSpeakLabel</key>
+				<string>AILocalizationTextField</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>ESAnnouncerAbstractDetailPane</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSApplication</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSResponder</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>RBSplitView</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>delegate</key>
+				<string>id</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>RBSplitSubview</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSTextField</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSControl</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>RBSplitSubview</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSView</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSMenu</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+		<dict>
+			<key>ACTIONS</key>
+			<dict>
+				<key>adiumPrint</key>
+				<string>id</string>
+				<key>didAdjustSubviews</key>
+				<string>RBSplitView</string>
+				<key>prefsWindowWillClose</key>
+				<string>SS_PrefsController</string>
+				<key>toggleFindPanel</key>
+				<string>id</string>
+				<key>willAdjustSubviews</key>
+				<string>RBSplitView</string>
+			</dict>
+			<key>CLASS</key>
+			<string>NSObject</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>AILocalizationButton</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>view_anchorToLeftSide</key>
+				<string>NSView</string>
+				<key>view_anchorToRightSide</key>
+				<string>NSView</string>
+				<key>window_anchorOnLeftSide</key>
+				<string>NSWindow</string>
+				<key>window_anchorOnRightSide</key>
+				<string>NSWindow</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>NSButton</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSWindow</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSResponder</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSScrollView</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSView</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>AIActionDetailsPane</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>AIModularPane</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSView</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSResponder</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSMenuItem</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>FirstResponder</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSCell</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+		<dict>
+			<key>ACTIONS</key>
+			<dict>
+				<key>changePreference</key>
+				<string>id</string>
+			</dict>
+			<key>CLASS</key>
+			<string>AIModularPane</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>plugin</key>
+				<string>id</string>
+				<key>view</key>
+				<string>NSView</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSButton</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSControl</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSPopUpButton</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSButton</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>ESAnnouncerAbstractDetailPane</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>checkBox_customPitch</key>
+				<string>NSButton</string>
+				<key>checkBox_customRate</key>
+				<string>NSButton</string>
+				<key>checkBox_speakContactName</key>
+				<string>AILocalizationButton</string>
+				<key>checkBox_speakEventTime</key>
+				<string>AILocalizationButton</string>
+				<key>label_voice</key>
+				<string>NSTextField</string>
+				<key>popUp_voices</key>
+				<string>NSPopUpButton</string>
+				<key>slider_pitch</key>
+				<string>NSSlider</string>
+				<key>slider_rate</key>
+				<string>NSSlider</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>AIActionDetailsPane</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSPopUpButtonCell</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSMenuItemCell</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSTextView</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSText</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>AILocalizationTextField</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>view_anchorToLeftSide</key>
+				<string>NSView</string>
+				<key>view_anchorToRightSide</key>
+				<string>NSView</string>
+				<key>window_anchorOnLeftSide</key>
+				<string>NSWindow</string>
+				<key>window_anchorOnRightSide</key>
+				<string>NSWindow</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>NSTextField</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>NSButtonCell</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSActionCell</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>SS_PrefsController</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>OUTLETS</key>
+			<dict>
+				<key>delegate</key>
+				<string>id</string>
+			</dict>
+			<key>SUPERCLASS</key>
+			<string>NSObject</string>
+		</dict>
+		<dict>
+			<key>CLASS</key>
+			<string>AIAutoScrollView</string>
+			<key>LANGUAGE</key>
+			<string>ObjC</string>
+			<key>SUPERCLASS</key>
+			<string>NSScrollView</string>
+		</dict>
+	</array>
+	<key>IBVersion</key>
+	<string>1</string>
+</dict>
+</plist>
diff -r a29b4d381a6f -r 6de580243c77 Resources/AnnouncerSpeakTextContactAlert.nib/info.nib
--- a/Resources/AnnouncerSpeakTextContactAlert.nib/info.nib	Wed May 27 22:07:14 2009 -0400
+++ b/Resources/AnnouncerSpeakTextContactAlert.nib/info.nib	Wed May 27 20:12:14 2009 -0700
@@ -1,20 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
 <plist version="1.0">
 <dict>
-	<key>IBDocumentLocation</key>
-	<string>69 73 356 240 0 0 1280 1002 </string>
-	<key>IBEditorPositions</key>
-	<dict>
-	</dict>
 	<key>IBFramework Version</key>
-	<string>446.1</string>
+	<string>672</string>
+	<key>IBLastKnownRelativeProjectPath</key>
+	<string>../Adium.xcodeproj</string>
+	<key>IBOldestOS</key>
+	<integer>5</integer>
 	<key>IBOpenObjects</key>
 	<array>
+		<integer>5</integer>
 	</array>
 	<key>IBSystem Version</key>
-	<string>8I127</string>
-	<key>IBUsesTextArchiving</key>
-	<true/>
+	<string>9G55</string>
+	<key>targetFramework</key>
+	<string>IBCocoaFramework</string>
 </dict>
 </plist>
diff -r a29b4d381a6f -r 6de580243c77 Resources/AnnouncerSpeakTextContactAlert.nib/keyedobjects.nib
Binary file Resources/AnnouncerSpeakTextContactAlert.nib/keyedobjects.nib has changed


More information about the commits mailing list