About page in settings
This commit is contained in:
@@ -17,7 +17,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.0</string>
|
<string>0.9</string>
|
||||||
<key>CFBundleURLTypes</key>
|
<key>CFBundleURLTypes</key>
|
||||||
<array>
|
<array>
|
||||||
<dict>
|
<dict>
|
||||||
|
|||||||
@@ -28,6 +28,9 @@
|
|||||||
@interface Preferences ()
|
@interface Preferences ()
|
||||||
@property (weak) IBOutlet SettingsGeneral *settingsGeneral;
|
@property (weak) IBOutlet SettingsGeneral *settingsGeneral;
|
||||||
@property (weak) IBOutlet SettingsFeeds *settingsFeeds;
|
@property (weak) IBOutlet SettingsFeeds *settingsFeeds;
|
||||||
|
@property (weak) IBOutlet NSView *aboutView;
|
||||||
|
@property (weak) IBOutlet NSTextField *lblAppName;
|
||||||
|
@property (weak) IBOutlet NSTextField *lblAppVersion;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation Preferences
|
@implementation Preferences
|
||||||
@@ -48,6 +51,11 @@
|
|||||||
self.window.contentView = self.settingsGeneral.view;
|
self.window.contentView = self.settingsGeneral.view;
|
||||||
} else if ([sender.itemIdentifier isEqualToString:@"tabFeeds"]) {
|
} else if ([sender.itemIdentifier isEqualToString:@"tabFeeds"]) {
|
||||||
self.window.contentView = self.settingsFeeds.view;
|
self.window.contentView = self.settingsFeeds.view;
|
||||||
|
} else if ([sender.itemIdentifier isEqualToString:@"tabAbout"]) {
|
||||||
|
NSDictionary *infoDict = [[NSBundle mainBundle] infoDictionary];
|
||||||
|
self.lblAppName.objectValue = infoDict[@"CFBundleName"];
|
||||||
|
self.lblAppVersion.stringValue = [NSString stringWithFormat:NSLocalizedString(@"Version %@", nil), infoDict[@"CFBundleShortVersionString"]];
|
||||||
|
self.window.contentView = self.aboutView;
|
||||||
}
|
}
|
||||||
|
|
||||||
self.window.toolbar.selectedItemIdentifier = sender.itemIdentifier;
|
self.window.toolbar.selectedItemIdentifier = sender.itemIdentifier;
|
||||||
|
|||||||
@@ -1,20 +1,23 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
|
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14313.18" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<deployment identifier="macosx"/>
|
<deployment identifier="macosx"/>
|
||||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
|
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14313.18"/>
|
||||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<objects>
|
<objects>
|
||||||
<customObject id="-2" userLabel="File's Owner" customClass="Preferences">
|
<customObject id="-2" userLabel="File's Owner" customClass="Preferences">
|
||||||
<connections>
|
<connections>
|
||||||
|
<outlet property="aboutView" destination="sUz-wX-Xkd" id="n1B-pf-o11"/>
|
||||||
|
<outlet property="lblAppName" destination="7NB-y1-8BH" id="tW6-iK-OEy"/>
|
||||||
|
<outlet property="lblAppVersion" destination="Uxl-GT-OeZ" id="vzP-9H-EwS"/>
|
||||||
<outlet property="settingsFeeds" destination="IYm-V7-352" id="KdS-eY-jdj"/>
|
<outlet property="settingsFeeds" destination="IYm-V7-352" id="KdS-eY-jdj"/>
|
||||||
<outlet property="settingsGeneral" destination="iap-X4-1Ef" id="VYy-lR-Cba"/>
|
<outlet property="settingsGeneral" destination="iap-X4-1Ef" id="VYy-lR-Cba"/>
|
||||||
<outlet property="window" destination="XQ4-ia-CCO" id="rse-30-FqG"/>
|
<outlet property="window" destination="XQ4-ia-CCO" id="rse-30-FqG"/>
|
||||||
</connections>
|
</connections>
|
||||||
</customObject>
|
</customObject>
|
||||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
|
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
|
||||||
<window title="Preferences" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" oneShot="NO" showsToolbarButton="NO" visibleAtLaunch="NO" frameAutosaveName="prefWindow" animationBehavior="default" tabbingMode="disallowed" id="XQ4-ia-CCO" userLabel="Window" customClass="NonRespondingWindow">
|
<window title="Preferences" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" visibleAtLaunch="NO" frameAutosaveName="prefWindow" animationBehavior="default" tabbingMode="disallowed" id="XQ4-ia-CCO" userLabel="Window" customClass="NonRespondingWindow">
|
||||||
<windowStyleMask key="styleMask" titled="YES" closable="YES" resizable="YES"/>
|
<windowStyleMask key="styleMask" titled="YES" closable="YES" resizable="YES"/>
|
||||||
<rect key="contentRect" x="948" y="431" width="320" height="327"/>
|
<rect key="contentRect" x="948" y="431" width="320" height="327"/>
|
||||||
<rect key="screenRect" x="0.0" y="0.0" width="1440" height="878"/>
|
<rect key="screenRect" x="0.0" y="0.0" width="1440" height="878"/>
|
||||||
@@ -35,10 +38,18 @@
|
|||||||
<action selector="tabClicked:" target="-2" id="MVF-hq-6H4"/>
|
<action selector="tabClicked:" target="-2" id="MVF-hq-6H4"/>
|
||||||
</connections>
|
</connections>
|
||||||
</toolbarItem>
|
</toolbarItem>
|
||||||
|
<toolbarItem implicitItemIdentifier="NSToolbarFlexibleSpaceItem" id="kda-e8-akS"/>
|
||||||
|
<toolbarItem implicitItemIdentifier="7A0CF54C-C0BA-4E1D-9CD7-39FD39A6BA5A" explicitItemIdentifier="tabAbout" label="About" paletteLabel="About" tag="-1" image="NSInfo" selectable="YES" id="kob-4t-J64">
|
||||||
|
<connections>
|
||||||
|
<action selector="tabClicked:" target="-2" id="mh0-QQ-lzs"/>
|
||||||
|
</connections>
|
||||||
|
</toolbarItem>
|
||||||
</allowedToolbarItems>
|
</allowedToolbarItems>
|
||||||
<defaultToolbarItems>
|
<defaultToolbarItems>
|
||||||
<toolbarItem reference="WDq-RJ-C3X"/>
|
<toolbarItem reference="WDq-RJ-C3X"/>
|
||||||
<toolbarItem reference="atT-AS-vmR"/>
|
<toolbarItem reference="atT-AS-vmR"/>
|
||||||
|
<toolbarItem reference="kda-e8-akS"/>
|
||||||
|
<toolbarItem reference="kob-4t-J64"/>
|
||||||
</defaultToolbarItems>
|
</defaultToolbarItems>
|
||||||
</toolbar>
|
</toolbar>
|
||||||
<connections>
|
<connections>
|
||||||
@@ -49,8 +60,716 @@
|
|||||||
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
|
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
|
||||||
<viewController id="iap-X4-1Ef" customClass="SettingsGeneral"/>
|
<viewController id="iap-X4-1Ef" customClass="SettingsGeneral"/>
|
||||||
<viewController id="IYm-V7-352" customClass="SettingsFeeds"/>
|
<viewController id="IYm-V7-352" customClass="SettingsFeeds"/>
|
||||||
|
<customView id="sUz-wX-Xkd">
|
||||||
|
<rect key="frame" x="0.0" y="0.0" width="220" height="320"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
|
<subviews>
|
||||||
|
<scrollView fixedFrame="YES" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" horizontalScrollElasticity="none" translatesAutoresizingMaskIntoConstraints="NO" id="txr-jS-bP9">
|
||||||
|
<rect key="frame" x="0.0" y="20" width="220" height="176"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
|
<clipView key="contentView" ambiguous="YES" drawsBackground="NO" copiesOnScroll="NO" id="pBe-sS-jEC">
|
||||||
|
<rect key="frame" x="1" y="1" width="218" height="174"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
|
<subviews>
|
||||||
|
<textView ambiguous="YES" editable="NO" importsGraphics="NO" richText="NO" verticallyResizable="YES" allowsCharacterPickerTouchBarItem="NO" textCompletion="NO" id="rDL-CY-yY7">
|
||||||
|
<rect key="frame" x="0.0" y="0.0" width="218" height="174"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
|
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
||||||
|
<size key="minSize" width="218" height="174"/>
|
||||||
|
<size key="maxSize" width="333" height="10000000"/>
|
||||||
|
<attributedString key="textStorage">
|
||||||
|
<fragment>
|
||||||
|
<string key="content" base64-UTF8="YES">
|
||||||
|
Cg
|
||||||
|
</string>
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemLight" size="13"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment content="Programming">
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemMedium" size="13"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment>
|
||||||
|
<string key="content">
|
||||||
|
Oleg Geier
|
||||||
|
|
||||||
|
</string>
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemLight" size="13"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment content="Source Code">
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemMedium" size="13"/>
|
||||||
|
<font key="NSOriginalFont" size="12" name="Helvetica-Bold"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment content=" available">
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemMedium" size="13"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment>
|
||||||
|
<string key="content" base64-UTF8="YES">
|
||||||
|
Cg
|
||||||
|
</string>
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemLight" size="13"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment content="github.com">
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemLight" size="13"/>
|
||||||
|
<url key="NSLink" string="https://github.com/relikd/baRSS"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment>
|
||||||
|
<string key="content"> (MIT License)
|
||||||
|
or </string>
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemLight" size="13"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment content="gitlab.com">
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemLight" size="13"/>
|
||||||
|
<url key="NSLink" string="https://gitlab.com/relikd/baRSS"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment>
|
||||||
|
<string key="content"> (MIT License)
|
||||||
|
|
||||||
|
</string>
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemLight" size="13"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment content="3rd-Party Libraries">
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemMedium" size="13"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment>
|
||||||
|
<string key="content" base64-UTF8="YES">
|
||||||
|
Cg
|
||||||
|
</string>
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemLight" size="13"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment content="RSXML">
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemLight" size="13"/>
|
||||||
|
<url key="NSLink" string="https://github.com/relikd/RSXML"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
<fragment content=" (MIT License)">
|
||||||
|
<attributes>
|
||||||
|
<font key="NSFont" metaFont="systemLight" size="13"/>
|
||||||
|
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO">
|
||||||
|
<tabStops>
|
||||||
|
<textTab alignment="left" location="28.299999237060547">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="56.650001525878906">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="85">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="113.34999847412109">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="141.69999694824219">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="170.05000305175781">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="198.39999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="226.75">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="255.10000610351562">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="283.45001220703125">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="311.79998779296875">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
<textTab alignment="left" location="340.14999389648438">
|
||||||
|
<options/>
|
||||||
|
</textTab>
|
||||||
|
</tabStops>
|
||||||
|
</paragraphStyle>
|
||||||
|
</attributes>
|
||||||
|
</fragment>
|
||||||
|
</attributedString>
|
||||||
|
<color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
|
||||||
|
</textView>
|
||||||
|
</subviews>
|
||||||
|
</clipView>
|
||||||
|
<scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="dsS-uU-W0N">
|
||||||
|
<rect key="frame" x="-100" y="-100" width="16" height="139"/>
|
||||||
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
|
</scroller>
|
||||||
|
</scrollView>
|
||||||
|
<imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cM6-Hr-G1u">
|
||||||
|
<rect key="frame" x="78" y="248" width="64" height="64"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||||
|
<imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="NSApplicationIcon" id="N7F-dr-K0S"/>
|
||||||
|
</imageView>
|
||||||
|
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" textCompletion="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7NB-y1-8BH">
|
||||||
|
<rect key="frame" x="18" y="222" width="184" height="18"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
|
||||||
|
<textFieldCell key="cell" lineBreakMode="clipping" selectable="YES" allowsUndo="NO" alignment="center" title="$$AppNamed" id="BdY-x3-Yl2">
|
||||||
|
<font key="font" metaFont="systemBold" size="14"/>
|
||||||
|
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
|
||||||
|
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
|
||||||
|
</textFieldCell>
|
||||||
|
</textField>
|
||||||
|
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" textCompletion="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Uxl-GT-OeZ">
|
||||||
|
<rect key="frame" x="18" y="204" width="184" height="14"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
|
||||||
|
<textFieldCell key="cell" lineBreakMode="clipping" selectable="YES" allowsUndo="NO" alignment="center" title="$$VersionNumber" id="enW-al-5bh">
|
||||||
|
<font key="font" metaFont="smallSystem"/>
|
||||||
|
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
|
||||||
|
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
|
||||||
|
</textFieldCell>
|
||||||
|
</textField>
|
||||||
|
</subviews>
|
||||||
|
<point key="canvasLocation" x="283" y="733"/>
|
||||||
|
</customView>
|
||||||
</objects>
|
</objects>
|
||||||
<resources>
|
<resources>
|
||||||
|
<image name="NSApplicationIcon" width="128" height="128"/>
|
||||||
|
<image name="NSInfo" width="32" height="32"/>
|
||||||
<image name="NSPreferencesGeneral" width="32" height="32"/>
|
<image name="NSPreferencesGeneral" width="32" height="32"/>
|
||||||
<image name="NSUserAccounts" width="32" height="32"/>
|
<image name="NSUserAccounts" width="32" height="32"/>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
Reference in New Issue
Block a user