Kget 1.6.1

A powerful and versatile download manager and library
Documentation
<?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>
    <!-- App Identity -->
    <key>CFBundleName</key>
    <string>KGet</string>
    <key>CFBundleDisplayName</key>
    <string>KGet</string>
    <key>CFBundleIdentifier</key>
    <string>com.davimf721.kget</string>
    <key>CFBundleVersion</key>
    <string>1.6.1</string>
	<key>CFBundleShortVersionString</key>
    <string>1.6.1</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleExecutable</key>
    <string>$(EXECUTABLE_NAME)</string>
    <key>CFBundleIconFile</key>
    <string>AppIcon</string>
    
    <!-- macOS Settings -->
    <key>LSMinimumSystemVersion</key>
    <string>13.0</string>
    <key>NSHighResolutionCapable</key>
    <true/>
    <key>NSSupportsAutomaticGraphicsSwitching</key>
    <true/>
    <key>LSApplicationCategoryType</key>
    <string>public.app-category.utilities</string>
    <key>LSUIElement</key>
    <false/>
    
    <!-- App Sandbox (for App Store) -->
    <key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
    </dict>
    
    <!-- URL Schemes -->
    <key>CFBundleURLTypes</key>
    <array>
        <!-- kget:// scheme -->
        <dict>
            <key>CFBundleURLName</key>
            <string>KGet Download URL</string>
            <key>CFBundleURLSchemes</key>
            <array>
                <string>kget</string>
            </array>
            <key>CFBundleTypeRole</key>
            <string>Viewer</string>
        </dict>
        <!-- magnet: scheme -->
        <dict>
            <key>CFBundleURLName</key>
            <string>Magnet Link</string>
            <key>CFBundleURLSchemes</key>
            <array>
                <string>magnet</string>
            </array>
            <key>CFBundleTypeRole</key>
            <string>Viewer</string>
        </dict>
    </array>
    
    <!-- File Type Associations -->
    <key>CFBundleDocumentTypes</key>
    <array>
        <!-- .torrent files -->
        <dict>
            <key>CFBundleTypeName</key>
            <string>BitTorrent File</string>
            <key>CFBundleTypeExtensions</key>
            <array>
                <string>torrent</string>
            </array>
            <key>CFBundleTypeIconFile</key>
            <string>TorrentIcon</string>
            <key>CFBundleTypeRole</key>
            <string>Viewer</string>
            <key>LSHandlerRank</key>
            <string>Alternate</string>
            <key>LSItemContentTypes</key>
            <array>
                <string>org.bittorrent.torrent</string>
            </array>
        </dict>
        <!-- .metalink files -->
        <dict>
            <key>CFBundleTypeName</key>
            <string>Metalink File</string>
            <key>CFBundleTypeExtensions</key>
            <array>
                <string>metalink</string>
                <string>meta4</string>
            </array>
            <key>CFBundleTypeRole</key>
            <string>Viewer</string>
            <key>LSHandlerRank</key>
            <string>Alternate</string>
        </dict>
    </array>
    
    <!-- Services Menu -->
    <key>NSServices</key>
    <array>
        <dict>
            <key>NSMenuItem</key>
            <dict>
                <key>default</key>
                <string>Download with KGet</string>
            </dict>
            <key>NSMessage</key>
            <string>downloadURL</string>
            <key>NSPortName</key>
            <string>KGet</string>
            <key>NSSendTypes</key>
            <array>
                <string>public.url</string>
                <string>public.utf8-plain-text</string>
            </array>
        </dict>
    </array>
    
    <!-- Permissions -->
    <key>NSDownloadsFolderUsageDescription</key>
    <string>KGet needs access to your Downloads folder to save downloaded files.</string>
    <key>NSUserNotificationAlertStyle</key>
    <string>banner</string>
    
    <!-- Dock & Window -->
    <key>NSPrincipalClass</key>
    <string>NSApplication</string>
    <key>NSMainStoryboardFile</key>
    <string></string>
</dict>
</plist>