Browse Source

V1.5.3: Icon fix for OS X 10.10

Thomas Buck 10 years ago
parent
commit
57d1a5ac58

+ 1
- 1
BaconBarHelper/BaconBarHelper-Info.plist View File

21
 	<key>CFBundleSignature</key>
21
 	<key>CFBundleSignature</key>
22
 	<string>????</string>
22
 	<string>????</string>
23
 	<key>CFBundleVersion</key>
23
 	<key>CFBundleVersion</key>
24
-	<string>70</string>
24
+	<string>74</string>
25
 	<key>LSBackgroundOnly</key>
25
 	<key>LSBackgroundOnly</key>
26
 	<true/>
26
 	<true/>
27
 	<key>LSMinimumSystemVersion</key>
27
 	<key>LSMinimumSystemVersion</key>

+ 0
- 2
RedditBar/AppDelegate.h View File

41
 
41
 
42
 @property (atomic, retain) NSStatusItem *statusItem;
42
 @property (atomic, retain) NSStatusItem *statusItem;
43
 @property (atomic, retain) NSImage *statusImage;
43
 @property (atomic, retain) NSImage *statusImage;
44
-@property (atomic, retain) NSImage *statusHighlightImage;
45
 @property (atomic, retain) NSImage *orangeredImage;
44
 @property (atomic, retain) NSImage *orangeredImage;
46
-@property (atomic, retain) NSImage *orangeredHighlightImage;
47
 @property (atomic, retain) PrefController *prefWindow;
45
 @property (atomic, retain) PrefController *prefWindow;
48
 @property (atomic, retain) StateModel *currentState;
46
 @property (atomic, retain) StateModel *currentState;
49
 @property (atomic, retain) Reddit *api;
47
 @property (atomic, retain) Reddit *api;

+ 3
- 6
RedditBar/AppDelegate.m View File

39
 #define SUBMENU_INDEX_COMMENTS 1
39
 #define SUBMENU_INDEX_COMMENTS 1
40
 #define SUBMENU_INDEX_BOTH 2
40
 #define SUBMENU_INDEX_BOTH 2
41
 
41
 
42
-@synthesize statusMenu, statusItem, statusImage, statusHighlightImage, orangeredImage, orangeredHighlightImage, prefWindow, currentState, application, api, firstMenuItem, menuItems, redditItems, lastFullName, refreshTimer, PMItem, PMSeparator;
42
+@synthesize statusMenu, statusItem, statusImage, orangeredImage, prefWindow, currentState, application, api, firstMenuItem, menuItems, redditItems, lastFullName, refreshTimer, PMItem, PMSeparator;
43
 
43
 
44
 - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
44
 - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
45
     statusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSSquareStatusItemLength];
45
     statusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSSquareStatusItemLength];
46
     statusImage = [NSImage imageNamed:@"icon"];
46
     statusImage = [NSImage imageNamed:@"icon"];
47
-    statusHighlightImage = [NSImage imageNamed:@"icon-alt"];
47
+    [statusImage setTemplate:YES];
48
     orangeredImage = [NSImage imageNamed:@"orangered"];
48
     orangeredImage = [NSImage imageNamed:@"orangered"];
49
-    orangeredHighlightImage = [NSImage imageNamed:@"orangered-alt"];
49
+    [orangeredImage setTemplate:YES];
50
     [statusItem setImage:statusImage];
50
     [statusItem setImage:statusImage];
51
-    [statusItem setAlternateImage:statusHighlightImage];
52
     [statusItem setMenu:statusMenu];
51
     [statusItem setMenu:statusMenu];
53
     [statusItem setToolTip:NSLocalizedString(@"RedditBar", @"Main Menuitem Tooltip")];
52
     [statusItem setToolTip:NSLocalizedString(@"RedditBar", @"Main Menuitem Tooltip")];
54
     [statusItem setHighlightMode:YES];
53
     [statusItem setHighlightMode:YES];
83
 -(void)readPMsCallback:(NSArray *)items {
82
 -(void)readPMsCallback:(NSArray *)items {
84
     if ((items == nil) || ([items count] < 1) || (((NSNumber *)[items objectAtIndex:0]).integerValue == 0)) {
83
     if ((items == nil) || ([items count] < 1) || (((NSNumber *)[items objectAtIndex:0]).integerValue == 0)) {
85
         [statusItem setImage:statusImage];
84
         [statusItem setImage:statusImage];
86
-        [statusItem setAlternateImage:statusHighlightImage];
87
         [PMItem setHidden:TRUE];
85
         [PMItem setHidden:TRUE];
88
         [PMSeparator setHidden:TRUE];
86
         [PMSeparator setHidden:TRUE];
89
     } else {
87
     } else {
90
         [statusItem setImage:orangeredImage];
88
         [statusItem setImage:orangeredImage];
91
-        [statusItem setAlternateImage:orangeredHighlightImage];
92
         [PMItem setTitle:[NSString stringWithFormat:NSLocalizedString(@"You've got %ld unread PMs.", @"PM message"), (long)((NSNumber *)[items objectAtIndex:0]).integerValue]];
89
         [PMItem setTitle:[NSString stringWithFormat:NSLocalizedString(@"You've got %ld unread PMs.", @"PM message"), (long)((NSNumber *)[items objectAtIndex:0]).integerValue]];
93
         [PMItem setHidden:FALSE];
90
         [PMItem setHidden:FALSE];
94
         [PMSeparator setHidden:FALSE];
91
         [PMSeparator setHidden:FALSE];

+ 2
- 2
RedditBar/BaconBar-Info.plist View File

17
 	<key>CFBundlePackageType</key>
17
 	<key>CFBundlePackageType</key>
18
 	<string>APPL</string>
18
 	<string>APPL</string>
19
 	<key>CFBundleShortVersionString</key>
19
 	<key>CFBundleShortVersionString</key>
20
-	<string>1.5.2</string>
20
+	<string>1.5.3</string>
21
 	<key>CFBundleSignature</key>
21
 	<key>CFBundleSignature</key>
22
 	<string>????</string>
22
 	<string>????</string>
23
 	<key>CFBundleVersion</key>
23
 	<key>CFBundleVersion</key>
24
-	<string>418</string>
24
+	<string>422</string>
25
 	<key>LSApplicationCategoryType</key>
25
 	<key>LSApplicationCategoryType</key>
26
 	<string>public.app-category.utilities</string>
26
 	<string>public.app-category.utilities</string>
27
 	<key>LSMinimumSystemVersion</key>
27
 	<key>LSMinimumSystemVersion</key>

+ 0
- 18
RedditBar/Images.xcassets/icon-alt.imageset/Contents.json View File

1
-{
2
-  "images" : [
3
-    {
4
-      "idiom" : "universal",
5
-      "scale" : "1x",
6
-      "filename" : "icon-alt.png"
7
-    },
8
-    {
9
-      "idiom" : "universal",
10
-      "scale" : "2x",
11
-      "filename" : "icon-alt@2x.png"
12
-    }
13
-  ],
14
-  "info" : {
15
-    "version" : 1,
16
-    "author" : "xcode"
17
-  }
18
-}

BIN
RedditBar/Images.xcassets/icon-alt.imageset/icon-alt.png View File


BIN
RedditBar/Images.xcassets/icon-alt.imageset/icon-alt@2x.png View File


+ 0
- 18
RedditBar/Images.xcassets/orangered-alt.imageset/Contents.json View File

1
-{
2
-  "images" : [
3
-    {
4
-      "idiom" : "universal",
5
-      "scale" : "1x",
6
-      "filename" : "orangered-alt.png"
7
-    },
8
-    {
9
-      "idiom" : "universal",
10
-      "scale" : "2x",
11
-      "filename" : "orangered-alt@2x.png"
12
-    }
13
-  ],
14
-  "info" : {
15
-    "version" : 1,
16
-    "author" : "xcode"
17
-  }
18
-}

BIN
RedditBar/Images.xcassets/orangered-alt.imageset/orangered-alt.png View File


BIN
RedditBar/Images.xcassets/orangered-alt.imageset/orangered-alt@2x.png View File


+ 4
- 7
RedditBar/de.lproj/Prefs.xib View File

1
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="4514" systemVersion="13B42" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none">
2
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="5056" systemVersion="13E28" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none">
3
     <dependencies>
3
     <dependencies>
4
         <deployment defaultVersion="1060" identifier="macosx"/>
4
         <deployment defaultVersion="1060" identifier="macosx"/>
5
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="4514"/>
5
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="5056"/>
6
     </dependencies>
6
     </dependencies>
7
     <objects>
7
     <objects>
8
         <customObject id="-2" userLabel="File's Owner" customClass="PrefController">
8
         <customObject id="-2" userLabel="File's Owner" customClass="PrefController">
28
         </customObject>
28
         </customObject>
29
         <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
29
         <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
30
         <customObject id="-3" userLabel="Application"/>
30
         <customObject id="-3" userLabel="Application"/>
31
-        <window title="BaconBar Einstellungen" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" restorable="NO" oneShot="NO" releasedWhenClosed="NO" wantsToBeColor="NO" animationBehavior="default" id="1" customClass="PrefWindow">
31
+        <window title="BaconBar Einstellungen" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" restorable="NO" oneShot="NO" releasedWhenClosed="NO" animationBehavior="default" id="1" customClass="PrefWindow">
32
             <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES"/>
32
             <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES"/>
33
             <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
33
             <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
34
             <rect key="contentRect" x="196" y="240" width="340" height="464"/>
34
             <rect key="contentRect" x="196" y="240" width="340" height="464"/>
317
             <real key="minimum" value="1"/>
317
             <real key="minimum" value="1"/>
318
             <real key="maximum" value="100"/>
318
             <real key="maximum" value="100"/>
319
             <metadata>
319
             <metadata>
320
-                <bool key="localizesFormat" value="YES"/>
321
                 <real key="inspectorSampleValue" value="1"/>
320
                 <real key="inspectorSampleValue" value="1"/>
322
             </metadata>
321
             </metadata>
323
         </numberFormatter>
322
         </numberFormatter>
328
             <real key="minimum" value="0.0"/>
327
             <real key="minimum" value="0.0"/>
329
             <real key="maximum" value="140"/>
328
             <real key="maximum" value="140"/>
330
             <metadata>
329
             <metadata>
331
-                <bool key="localizesFormat" value="YES"/>
332
                 <real key="inspectorSampleValue" value="1"/>
330
                 <real key="inspectorSampleValue" value="1"/>
333
             </metadata>
331
             </metadata>
334
         </numberFormatter>
332
         </numberFormatter>
339
             <real key="minimum" value="1"/>
337
             <real key="minimum" value="1"/>
340
             <decimal key="maximum" value="NaN"/>
338
             <decimal key="maximum" value="NaN"/>
341
             <metadata>
339
             <metadata>
342
-                <bool key="localizesFormat" value="YES"/>
343
                 <real key="inspectorSampleValue" value="1"/>
340
                 <real key="inspectorSampleValue" value="1"/>
344
             </metadata>
341
             </metadata>
345
         </numberFormatter>
342
         </numberFormatter>
416
             </items>
413
             </items>
417
         </menu>
414
         </menu>
418
     </objects>
415
     </objects>
419
-</document>
416
+</document>

+ 31
- 34
RedditBar/en.lproj/Prefs.xib View File

1
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="4514" systemVersion="13B42" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none">
2
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="5056" systemVersion="13D65" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none">
3
     <dependencies>
3
     <dependencies>
4
         <deployment defaultVersion="1060" identifier="macosx"/>
4
         <deployment defaultVersion="1060" identifier="macosx"/>
5
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="4514"/>
5
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="5056"/>
6
     </dependencies>
6
     </dependencies>
7
     <objects>
7
     <objects>
8
         <customObject id="-2" userLabel="File's Owner" customClass="PrefController">
8
         <customObject id="-2" userLabel="File's Owner" customClass="PrefController">
28
         </customObject>
28
         </customObject>
29
         <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
29
         <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
30
         <customObject id="-3" userLabel="Application"/>
30
         <customObject id="-3" userLabel="Application"/>
31
-        <window title="BaconBar Preferences" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" restorable="NO" oneShot="NO" releasedWhenClosed="NO" wantsToBeColor="NO" animationBehavior="default" id="1" customClass="PrefWindow">
31
+        <window title="BaconBar Preferences" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" restorable="NO" oneShot="NO" releasedWhenClosed="NO" animationBehavior="default" id="1" customClass="PrefWindow">
32
             <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES"/>
32
             <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES"/>
33
             <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
33
             <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
34
-            <rect key="contentRect" x="196" y="240" width="340" height="464"/>
34
+            <rect key="contentRect" x="196" y="240" width="340" height="552"/>
35
             <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1058"/>
35
             <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1058"/>
36
             <view key="contentView" id="2">
36
             <view key="contentView" id="2">
37
-                <rect key="frame" x="0.0" y="0.0" width="340" height="464"/>
37
+                <rect key="frame" x="0.0" y="0.0" width="340" height="552"/>
38
                 <autoresizingMask key="autoresizingMask"/>
38
                 <autoresizingMask key="autoresizingMask"/>
39
                 <subviews>
39
                 <subviews>
40
                     <textField verticalHuggingPriority="750" id="0mi-88-o94">
40
                     <textField verticalHuggingPriority="750" id="0mi-88-o94">
41
-                        <rect key="frame" x="120" y="424" width="200" height="22"/>
41
+                        <rect key="frame" x="120" y="512" width="200" height="22"/>
42
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
42
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
43
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="xlI-hU-MqM">
43
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="xlI-hU-MqM">
44
                             <font key="font" metaFont="system"/>
44
                             <font key="font" metaFont="system"/>
47
                         </textFieldCell>
47
                         </textFieldCell>
48
                     </textField>
48
                     </textField>
49
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="f72-fM-yQc">
49
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="f72-fM-yQc">
50
-                        <rect key="frame" x="18" y="429" width="96" height="17"/>
50
+                        <rect key="frame" x="18" y="517" width="96" height="17"/>
51
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
51
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
52
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Username:" id="GTO-OP-MYS">
52
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Username:" id="GTO-OP-MYS">
53
                             <font key="font" metaFont="system"/>
53
                             <font key="font" metaFont="system"/>
56
                         </textFieldCell>
56
                         </textFieldCell>
57
                     </textField>
57
                     </textField>
58
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="JMQ-a6-DKC">
58
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="JMQ-a6-DKC">
59
-                        <rect key="frame" x="18" y="395" width="96" height="17"/>
59
+                        <rect key="frame" x="18" y="483" width="96" height="17"/>
60
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
60
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
61
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Password:" id="m11-YF-fEa">
61
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Password:" id="m11-YF-fEa">
62
                             <font key="font" metaFont="system"/>
62
                             <font key="font" metaFont="system"/>
65
                         </textFieldCell>
65
                         </textFieldCell>
66
                     </textField>
66
                     </textField>
67
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="qFP-pd-32c">
67
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="qFP-pd-32c">
68
-                        <rect key="frame" x="18" y="229" width="63" height="17"/>
68
+                        <rect key="frame" x="18" y="317" width="63" height="17"/>
69
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
69
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
70
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Items:" id="FNJ-RL-DXT">
70
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Items:" id="FNJ-RL-DXT">
71
                             <font key="font" metaFont="system"/>
71
                             <font key="font" metaFont="system"/>
74
                         </textFieldCell>
74
                         </textFieldCell>
75
                     </textField>
75
                     </textField>
76
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="O82-1u-lSr">
76
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="O82-1u-lSr">
77
-                        <rect key="frame" x="152" y="229" width="63" height="17"/>
77
+                        <rect key="frame" x="152" y="317" width="63" height="17"/>
78
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
78
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
79
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Title:" id="Frl-AE-ROJ">
79
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Title:" id="Frl-AE-ROJ">
80
                             <font key="font" metaFont="system"/>
80
                             <font key="font" metaFont="system"/>
83
                         </textFieldCell>
83
                         </textFieldCell>
84
                     </textField>
84
                     </textField>
85
                     <secureTextField verticalHuggingPriority="750" id="ARP-lb-J16">
85
                     <secureTextField verticalHuggingPriority="750" id="ARP-lb-J16">
86
-                        <rect key="frame" x="120" y="392" width="200" height="22"/>
86
+                        <rect key="frame" x="120" y="480" width="200" height="22"/>
87
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
87
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
88
                         <secureTextFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" drawsBackground="YES" usesSingleLineMode="YES" id="We7-pG-rAt">
88
                         <secureTextFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" drawsBackground="YES" usesSingleLineMode="YES" id="We7-pG-rAt">
89
                             <font key="font" metaFont="system"/>
89
                             <font key="font" metaFont="system"/>
120
                         </connections>
120
                         </connections>
121
                     </button>
121
                     </button>
122
                     <scrollView horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="8ew-wY-1Yh">
122
                     <scrollView horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="8ew-wY-1Yh">
123
-                        <rect key="frame" x="20" y="254" width="300" height="100"/>
123
+                        <rect key="frame" x="20" y="342" width="300" height="100"/>
124
                         <autoresizingMask key="autoresizingMask"/>
124
                         <autoresizingMask key="autoresizingMask"/>
125
                         <clipView key="contentView" copiesOnScroll="NO" id="ENU-Jw-8fO">
125
                         <clipView key="contentView" copiesOnScroll="NO" id="ENU-Jw-8fO">
126
                             <rect key="frame" x="1" y="1" width="298" height="98"/>
126
                             <rect key="frame" x="1" y="1" width="298" height="98"/>
149
                         </scroller>
149
                         </scroller>
150
                     </scrollView>
150
                     </scrollView>
151
                     <button id="XZM-90-hQ8">
151
                     <button id="XZM-90-hQ8">
152
-                        <rect key="frame" x="18" y="361" width="280" height="25"/>
152
+                        <rect key="frame" x="18" y="449" width="280" height="25"/>
153
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
153
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
154
                         <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="left" alignment="left" state="on" inset="2" id="vW5-Cp-Bm1">
154
                         <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="left" alignment="left" state="on" inset="2" id="vW5-Cp-Bm1">
155
                             <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
155
                             <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
160
                         </connections>
160
                         </connections>
161
                     </button>
161
                     </button>
162
                     <textField verticalHuggingPriority="750" id="MAv-jO-hIv">
162
                     <textField verticalHuggingPriority="750" id="MAv-jO-hIv">
163
-                        <rect key="frame" x="87" y="226" width="38" height="22"/>
163
+                        <rect key="frame" x="87" y="314" width="38" height="22"/>
164
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
164
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
165
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="right" title="10" drawsBackground="YES" id="0SD-Tf-uZS">
165
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="right" title="10" drawsBackground="YES" id="0SD-Tf-uZS">
166
                             <font key="font" metaFont="system"/>
166
                             <font key="font" metaFont="system"/>
173
                         </connections>
173
                         </connections>
174
                     </textField>
174
                     </textField>
175
                     <textField verticalHuggingPriority="750" id="qju-1J-OOV">
175
                     <textField verticalHuggingPriority="750" id="qju-1J-OOV">
176
-                        <rect key="frame" x="221" y="226" width="38" height="22"/>
176
+                        <rect key="frame" x="221" y="314" width="38" height="22"/>
177
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
177
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
178
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="right" title="66" drawsBackground="YES" id="b76-4r-MEp">
178
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="right" title="66" drawsBackground="YES" id="b76-4r-MEp">
179
                             <font key="font" metaFont="system"/>
179
                             <font key="font" metaFont="system"/>
186
                         </connections>
186
                         </connections>
187
                     </textField>
187
                     </textField>
188
                     <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" id="jxz-fQ-M1L">
188
                     <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" id="jxz-fQ-M1L">
189
-                        <rect key="frame" x="130" y="223" width="19" height="27"/>
189
+                        <rect key="frame" x="130" y="311" width="19" height="27"/>
190
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
190
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
191
                         <stepperCell key="cell" continuous="YES" alignment="left" minValue="1" maxValue="100" doubleValue="1" id="Gba-jV-Ouh"/>
191
                         <stepperCell key="cell" continuous="YES" alignment="left" minValue="1" maxValue="100" doubleValue="1" id="Gba-jV-Ouh"/>
192
                         <connections>
192
                         <connections>
195
                         </connections>
195
                         </connections>
196
                     </stepper>
196
                     </stepper>
197
                     <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" id="2aV-fo-xh7">
197
                     <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" id="2aV-fo-xh7">
198
-                        <rect key="frame" x="264" y="223" width="19" height="27"/>
198
+                        <rect key="frame" x="264" y="311" width="19" height="27"/>
199
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
199
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
200
                         <stepperCell key="cell" continuous="YES" alignment="left" maxValue="100" doubleValue="1" id="BWQ-gm-H9h"/>
200
                         <stepperCell key="cell" continuous="YES" alignment="left" maxValue="100" doubleValue="1" id="BWQ-gm-H9h"/>
201
                         <connections>
201
                         <connections>
204
                         </connections>
204
                         </connections>
205
                     </stepper>
205
                     </stepper>
206
                     <progressIndicator canDrawConcurrently="YES" horizontalHuggingPriority="750" verticalHuggingPriority="750" maxValue="100" displayedWhenStopped="NO" bezeled="NO" indeterminate="YES" controlSize="small" style="spinning" id="vz0-tR-n1f">
206
                     <progressIndicator canDrawConcurrently="YES" horizontalHuggingPriority="750" verticalHuggingPriority="750" maxValue="100" displayedWhenStopped="NO" bezeled="NO" indeterminate="YES" controlSize="small" style="spinning" id="vz0-tR-n1f">
207
-                        <rect key="frame" x="304" y="365" width="16" height="16"/>
207
+                        <rect key="frame" x="304" y="453" width="16" height="16"/>
208
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
208
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
209
                     </progressIndicator>
209
                     </progressIndicator>
210
                     <button id="fRR-M9-szp">
210
                     <button id="fRR-M9-szp">
211
-                        <rect key="frame" x="18" y="194" width="304" height="18"/>
211
+                        <rect key="frame" x="18" y="282" width="304" height="18"/>
212
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
212
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
213
                         <buttonCell key="cell" type="check" title="Show Subreddit after Title" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="nFK-xi-2F3">
213
                         <buttonCell key="cell" type="check" title="Show Subreddit after Title" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="nFK-xi-2F3">
214
                             <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
214
                             <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
216
                         </buttonCell>
216
                         </buttonCell>
217
                     </button>
217
                     </button>
218
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="6zt-jq-NXJ">
218
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="6zt-jq-NXJ">
219
-                        <rect key="frame" x="9" y="86" width="236" height="17"/>
219
+                        <rect key="frame" x="9" y="174" width="236" height="17"/>
220
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
220
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
221
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="PM Refresh (in Minutes):" id="cwK-wP-wB6">
221
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="PM Refresh (in Minutes):" id="cwK-wP-wB6">
222
                             <font key="font" metaFont="system"/>
222
                             <font key="font" metaFont="system"/>
225
                         </textFieldCell>
225
                         </textFieldCell>
226
                     </textField>
226
                     </textField>
227
                     <box autoresizesSubviews="NO" verticalHuggingPriority="750" title="Box" boxType="separator" titlePosition="noTitle" id="paW-kV-tNF">
227
                     <box autoresizesSubviews="NO" verticalHuggingPriority="750" title="Box" boxType="separator" titlePosition="noTitle" id="paW-kV-tNF">
228
-                        <rect key="frame" x="14" y="111" width="316" height="5"/>
228
+                        <rect key="frame" x="14" y="199" width="316" height="5"/>
229
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
229
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
230
                         <color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
230
                         <color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
231
                         <color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
231
                         <color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
232
                         <font key="titleFont" metaFont="system"/>
232
                         <font key="titleFont" metaFont="system"/>
233
                     </box>
233
                     </box>
234
                     <textField verticalHuggingPriority="750" id="2J7-SH-Grc">
234
                     <textField verticalHuggingPriority="750" id="2J7-SH-Grc">
235
-                        <rect key="frame" x="251" y="83" width="38" height="22"/>
235
+                        <rect key="frame" x="251" y="171" width="38" height="22"/>
236
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
236
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
237
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="right" title="5" drawsBackground="YES" id="gZN-n2-TGX">
237
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="right" title="5" drawsBackground="YES" id="gZN-n2-TGX">
238
                             <font key="font" metaFont="system"/>
238
                             <font key="font" metaFont="system"/>
245
                         </connections>
245
                         </connections>
246
                     </textField>
246
                     </textField>
247
                     <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" id="uaS-Xm-tIa">
247
                     <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" id="uaS-Xm-tIa">
248
-                        <rect key="frame" x="294" y="80" width="19" height="27"/>
248
+                        <rect key="frame" x="294" y="168" width="19" height="27"/>
249
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
249
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
250
                         <stepperCell key="cell" continuous="YES" alignment="left" minValue="1" maxValue="100" doubleValue="1" id="rTZ-Zs-1eO"/>
250
                         <stepperCell key="cell" continuous="YES" alignment="left" minValue="1" maxValue="100" doubleValue="1" id="rTZ-Zs-1eO"/>
251
                         <connections>
251
                         <connections>
254
                         </connections>
254
                         </connections>
255
                     </stepper>
255
                     </stepper>
256
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="cec-PF-2Hn">
256
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="cec-PF-2Hn">
257
-                        <rect key="frame" x="18" y="164" width="130" height="17"/>
257
+                        <rect key="frame" x="18" y="252" width="130" height="17"/>
258
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
258
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
259
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Filter:" id="coc-11-MQH">
259
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Filter:" id="coc-11-MQH">
260
                             <font key="font" metaFont="system"/>
260
                             <font key="font" metaFont="system"/>
263
                         </textFieldCell>
263
                         </textFieldCell>
264
                     </textField>
264
                     </textField>
265
                     <popUpButton verticalHuggingPriority="750" id="FR2-RR-NOg">
265
                     <popUpButton verticalHuggingPriority="750" id="FR2-RR-NOg">
266
-                        <rect key="frame" x="164" y="159" width="159" height="26"/>
266
+                        <rect key="frame" x="164" y="247" width="159" height="26"/>
267
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
267
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
268
                         <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="zJW-6u-fHd">
268
                         <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="zJW-6u-fHd">
269
                             <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
269
                             <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
281
                         </popUpButtonCell>
281
                         </popUpButtonCell>
282
                     </popUpButton>
282
                     </popUpButton>
283
                     <button id="v96-KH-55h">
283
                     <button id="v96-KH-55h">
284
-                        <rect key="frame" x="18" y="140" width="304" height="18"/>
284
+                        <rect key="frame" x="18" y="228" width="304" height="18"/>
285
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
285
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
286
                         <buttonCell key="cell" type="check" title="Remove visited links" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="7KI-oO-Qcg">
286
                         <buttonCell key="cell" type="check" title="Remove visited links" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="7KI-oO-Qcg">
287
                             <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
287
                             <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
292
                         </connections>
292
                         </connections>
293
                     </button>
293
                     </button>
294
                     <button id="gmF-24-Psn">
294
                     <button id="gmF-24-Psn">
295
-                        <rect key="frame" x="18" y="120" width="304" height="18"/>
295
+                        <rect key="frame" x="18" y="208" width="304" height="18"/>
296
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
296
                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
297
                         <buttonCell key="cell" type="check" title="Reload after every visited link" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="twM-Jr-KGn">
297
                         <buttonCell key="cell" type="check" title="Reload after every visited link" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="twM-Jr-KGn">
298
                             <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
298
                             <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
310
                 </subviews>
310
                 </subviews>
311
             </view>
311
             </view>
312
         </window>
312
         </window>
313
-        <numberFormatter formatterBehavior="10_0" positiveFormat="0" negativeFormat="-0" hasThousandSeparators="NO" thousandSeparator="," id="zpc-oG-upp">
313
+        <numberFormatter formatterBehavior="10_0" positiveFormat="0" negativeFormat="-0" hasThousandSeparators="NO" thousandSeparator="," id="zpc-oG-upp" userLabel="Number Formatter - Items">
314
             <attributedString key="attributedStringForZero">
314
             <attributedString key="attributedStringForZero">
315
                 <fragment content="0"/>
315
                 <fragment content="0"/>
316
             </attributedString>
316
             </attributedString>
317
             <real key="minimum" value="1"/>
317
             <real key="minimum" value="1"/>
318
             <real key="maximum" value="100"/>
318
             <real key="maximum" value="100"/>
319
             <metadata>
319
             <metadata>
320
-                <bool key="localizesFormat" value="YES"/>
321
                 <real key="inspectorSampleValue" value="1"/>
320
                 <real key="inspectorSampleValue" value="1"/>
322
             </metadata>
321
             </metadata>
323
         </numberFormatter>
322
         </numberFormatter>
324
-        <numberFormatter formatterBehavior="10_0" positiveFormat="0" negativeFormat="-0" hasThousandSeparators="NO" thousandSeparator="." id="hDb-Na-Vku">
323
+        <numberFormatter formatterBehavior="10_0" positiveFormat="0" negativeFormat="-0" hasThousandSeparators="NO" thousandSeparator="." id="hDb-Na-Vku" userLabel="Number Formatter - Title">
325
             <attributedString key="attributedStringForZero">
324
             <attributedString key="attributedStringForZero">
326
                 <fragment content="0"/>
325
                 <fragment content="0"/>
327
             </attributedString>
326
             </attributedString>
328
             <real key="minimum" value="0.0"/>
327
             <real key="minimum" value="0.0"/>
329
             <real key="maximum" value="140"/>
328
             <real key="maximum" value="140"/>
330
             <metadata>
329
             <metadata>
331
-                <bool key="localizesFormat" value="YES"/>
332
                 <real key="inspectorSampleValue" value="1"/>
330
                 <real key="inspectorSampleValue" value="1"/>
333
             </metadata>
331
             </metadata>
334
         </numberFormatter>
332
         </numberFormatter>
335
-        <numberFormatter formatterBehavior="10_0" positiveFormat="0" negativeFormat="-0" hasThousandSeparators="NO" thousandSeparator="." id="Y11-Cs-X1g">
333
+        <numberFormatter formatterBehavior="10_0" positiveFormat="0" negativeFormat="-0" hasThousandSeparators="NO" thousandSeparator="." id="Y11-Cs-X1g" userLabel="Number Formatter - PM">
336
             <attributedString key="attributedStringForZero">
334
             <attributedString key="attributedStringForZero">
337
                 <fragment content="0"/>
335
                 <fragment content="0"/>
338
             </attributedString>
336
             </attributedString>
339
             <real key="minimum" value="1"/>
337
             <real key="minimum" value="1"/>
340
             <decimal key="maximum" value="NaN"/>
338
             <decimal key="maximum" value="NaN"/>
341
             <metadata>
339
             <metadata>
342
-                <bool key="localizesFormat" value="YES"/>
343
                 <real key="inspectorSampleValue" value="1"/>
340
                 <real key="inspectorSampleValue" value="1"/>
344
             </metadata>
341
             </metadata>
345
         </numberFormatter>
342
         </numberFormatter>
416
             </items>
413
             </items>
417
         </menu>
414
         </menu>
418
     </objects>
415
     </objects>
419
-</document>
416
+</document>

+ 12
- 1
web/index.html View File

64
             </div>
64
             </div>
65
             <div class="panel panel-default">
65
             <div class="panel panel-default">
66
                 <div class="panel-heading">
66
                 <div class="panel-heading">
67
+                    <span class="panel-title heading">Version 1.5.3</span>
68
+                    <span class="pull-right text-muted heading">Submitted 2014-09-10</span>
69
+                </div>
70
+                <div class="panel-body">
71
+                    <ul>
72
+                        <li>Prepared the Menu Bar Icons for Mac OS X 10.10 Yosemite</li>
73
+                    </ul>
74
+                </div>
75
+            </div>
76
+            <div class="panel panel-default">
77
+                <div class="panel-heading">
67
                     <span class="panel-title heading">Version 1.5.2</span>
78
                     <span class="panel-title heading">Version 1.5.2</span>
68
                     <span class="pull-right text-muted heading">2014-01-04</span>
79
                     <span class="pull-right text-muted heading">2014-01-04</span>
69
                 </div>
80
                 </div>
160
                 </div>
171
                 </div>
161
             </div>
172
             </div>
162
             <div class="footer">
173
             <div class="footer">
163
-                <span>&copy; 2013 <a href="//xythobuz.de">Thomas Buck</a></span>
174
+                <span>&copy; 2013, 2014 <a href="//xythobuz.de">Thomas Buck</a></span>
164
                 <span class="pull-right">Made with <a href="//getbootstrap.com">Bootstrap</a></span>
175
                 <span class="pull-right">Made with <a href="//getbootstrap.com">Bootstrap</a></span>
165
             </div>
176
             </div>
166
         </div>
177
         </div>

Loading…
Cancel
Save