├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── img │ ├── logo-bearclaw.png │ ├── screenshot-dark.png │ └── screenshot.png └── updates │ └── appcast.xml └── src ├── Sparkle.framework ├── Headers ├── Modules ├── PrivateHeaders ├── Resources ├── Sparkle └── Versions │ ├── A │ ├── Headers │ │ ├── SPUDownloadData.h │ │ ├── SPUDownloader.h │ │ ├── SPUDownloaderDelegate.h │ │ ├── SPUDownloaderDeprecated.h │ │ ├── SPUDownloaderProtocol.h │ │ ├── SPUDownloaderSession.h │ │ ├── SPUURLRequest.h │ │ ├── SUAppcast.h │ │ ├── SUAppcastItem.h │ │ ├── SUCodeSigningVerifier.h │ │ ├── SUErrors.h │ │ ├── SUExport.h │ │ ├── SUStandardVersionComparator.h │ │ ├── SUUpdater.h │ │ ├── SUUpdaterDelegate.h │ │ ├── SUVersionComparisonProtocol.h │ │ ├── SUVersionDisplayProtocol.h │ │ └── Sparkle.h │ ├── Modules │ │ └── module.modulemap │ ├── PrivateHeaders │ │ └── SUUnarchiver.h │ ├── Resources │ │ ├── Autoupdate.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ ├── Autoupdate │ │ │ │ └── fileop │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── AppIcon.icns │ │ │ │ ├── SUStatus.nib │ │ │ │ ├── ar.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ca.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── cs.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── da.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── de.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── el.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── en.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── es.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fi.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fr.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── he.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── hr.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── hu.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── is.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── it.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ja.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ko.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nb.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_BR.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_PT.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ro.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ru.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sk.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sv.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── th.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── tr.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── uk.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ └── Sparkle.strings │ │ ├── DarkAqua.css │ │ ├── Info.plist │ │ ├── SUModelTranslation.plist │ │ ├── SUStatus.nib │ │ ├── ar.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ca.lproj │ │ │ └── Sparkle.strings │ │ ├── cs.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── da.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── de.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── el.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── en.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── es.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── fi.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── fr.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── fr_CA.lproj │ │ ├── he.lproj │ │ │ └── Sparkle.strings │ │ ├── hr.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── hu.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── is.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── it.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ja.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ko.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── nb.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── nl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pt.lproj │ │ ├── pt_BR.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pt_PT.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ro.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ru.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sk.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sv.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── th.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── tr.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── uk.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── zh_CN.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ └── zh_TW.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ └── Sparkle │ └── Current ├── bearclaw.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── bearclaw ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── logo-bearclaw-1024.png │ ├── logo-bearclaw-128.png │ ├── logo-bearclaw-16.png │ ├── logo-bearclaw-256.png │ ├── logo-bearclaw-257.png │ ├── logo-bearclaw-32.png │ ├── logo-bearclaw-33.png │ ├── logo-bearclaw-512.png │ ├── logo-bearclaw-513.png │ └── logo-bearclaw-64.png ├── Contents.json ├── fullScreenshotIcon.imageset │ ├── Contents.json │ ├── icon-screenshot.png │ └── icon-screenshot@2x.png ├── menubarIcon.imageset │ ├── Artboard 3.png │ └── Contents.json ├── partialScreenshotIcon.imageset │ ├── Contents.json │ ├── icon-screenshot-part.png │ └── icon-screenshot-part@2x.png └── settingsIcon.imageset │ ├── Contents.json │ ├── icon-settings.png │ └── icon-settings@2x.png ├── Base.lproj └── Main.storyboard ├── Controllers ├── ClipperViewController.swift └── SettingsMenuController.swift ├── Credits.html ├── Info.plist ├── Services └── BearService │ ├── BearAction.swift │ └── BearExecutor.swift ├── Utils ├── EventMonitor.swift └── ScreenshotTool.swift └── bearclaw.entitlements /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/xcode,macos,appcode 3 | # Edit at https://www.gitignore.io/?templates=xcode,macos,appcode 4 | 5 | ### AppCode ### 6 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 7 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 8 | 9 | # User-specific stuff 10 | .idea/**/workspace.xml 11 | .idea/**/tasks.xml 12 | .idea/**/usage.statistics.xml 13 | .idea/**/dictionaries 14 | .idea/**/shelf 15 | 16 | # Generated files 17 | .idea/**/contentModel.xml 18 | 19 | # Sensitive or high-churn files 20 | .idea/**/dataSources/ 21 | .idea/**/dataSources.ids 22 | .idea/**/dataSources.local.xml 23 | .idea/**/sqlDataSources.xml 24 | .idea/**/dynamic.xml 25 | .idea/**/uiDesigner.xml 26 | .idea/**/dbnavigator.xml 27 | 28 | # Gradle 29 | .idea/**/gradle.xml 30 | .idea/**/libraries 31 | 32 | # Gradle and Maven with auto-import 33 | # When using Gradle or Maven with auto-import, you should exclude module files, 34 | # since they will be recreated, and may cause churn. Uncomment if using 35 | # auto-import. 36 | # .idea/modules.xml 37 | # .idea/*.iml 38 | # .idea/modules 39 | # *.iml 40 | # *.ipr 41 | 42 | # CMake 43 | cmake-build-*/ 44 | 45 | # Mongo Explorer plugin 46 | .idea/**/mongoSettings.xml 47 | 48 | # File-based project format 49 | *.iws 50 | 51 | # IntelliJ 52 | out/ 53 | 54 | # mpeltonen/sbt-idea plugin 55 | .idea_modules/ 56 | 57 | # JIRA plugin 58 | atlassian-ide-plugin.xml 59 | 60 | # Cursive Clojure plugin 61 | .idea/replstate.xml 62 | 63 | # Crashlytics plugin (for Android Studio and IntelliJ) 64 | com_crashlytics_export_strings.xml 65 | crashlytics.properties 66 | crashlytics-build.properties 67 | fabric.properties 68 | 69 | # Editor-based Rest Client 70 | .idea/httpRequests 71 | 72 | # Android studio 3.1+ serialized cache file 73 | .idea/caches/build_file_checksums.ser 74 | 75 | ### AppCode Patch ### 76 | # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 77 | 78 | # *.iml 79 | # modules.xml 80 | # .idea/misc.xml 81 | # *.ipr 82 | 83 | # Sonarlint plugin 84 | .idea/sonarlint 85 | 86 | ### macOS ### 87 | # General 88 | .DS_Store 89 | .AppleDouble 90 | .LSOverride 91 | 92 | # Icon must end with two \r 93 | Icon 94 | 95 | # Thumbnails 96 | ._* 97 | 98 | # Files that might appear in the root of a volume 99 | .DocumentRevisions-V100 100 | .fseventsd 101 | .Spotlight-V100 102 | .TemporaryItems 103 | .Trashes 104 | .VolumeIcon.icns 105 | .com.apple.timemachine.donotpresent 106 | 107 | # Directories potentially created on remote AFP share 108 | .AppleDB 109 | .AppleDesktop 110 | Network Trash Folder 111 | Temporary Items 112 | .apdisk 113 | 114 | ### Xcode ### 115 | # Xcode 116 | # 117 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 118 | 119 | ## User settings 120 | xcuserdata/ 121 | 122 | ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 123 | *.xcscmblueprint 124 | *.xccheckout 125 | 126 | ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 127 | build/ 128 | DerivedData/ 129 | *.moved-aside 130 | *.pbxuser 131 | !default.pbxuser 132 | *.mode1v3 133 | !default.mode1v3 134 | *.mode2v3 135 | !default.mode2v3 136 | *.perspectivev3 137 | !default.perspectivev3 138 | 139 | ## Xcode Patch 140 | *.xcodeproj/* 141 | !*.xcodeproj/project.pbxproj 142 | !*.xcodeproj/xcshareddata/ 143 | !*.xcworkspace/contents.xcworkspacedata 144 | /*.gcno 145 | 146 | ### Xcode Patch ### 147 | **/xcshareddata/WorkspaceSettings.xcsettings 148 | 149 | # End of https://www.gitignore.io/api/xcode,macos,appcode -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | osx_image: xcode10 3 | env: 4 | - DESTINATION="OS=10.0,name=iPhone 6s" SCHEME="XLProjectName" SDK=iphonesimulator10.0 5 | 6 | script: 7 | - cd src 8 | - xcodebuild clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Xavier Decuyper 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | Project logo 4 |

5 | 6 |

Bearclaw

7 | 8 |
9 | 10 | [![Build Status](https://travis-ci.org/Savjee/bearclaw.svg?branch=master)](https://travis-ci.org/Savjee/bearclaw) 11 | [![GitHub Issues](https://img.shields.io/github/issues/Savjee/bearclaw.svg)](https://github.com/Savjee/bearclaw/issues) 12 | [![GitHub Pull Requests](https://img.shields.io/github/issues-pr/Savjee/bearclaw.svg)](https://github.com/Savjee/bearclaw/pulls) 13 | ![GitHub All Releases](https://img.shields.io/github/downloads/Savjee/bearclaw/total.svg) 14 | [![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE) 15 | 16 |
17 | 18 | --- 19 | 20 | Quickly create notes/screenshots from your menubar and send them to [Bear](https://www.bear-writer.com/). 21 | 22 | ## ✅ Features 23 | 24 | * Always available in the menu bar 25 | * Write a quick thought and send it to Bear for safe keeping 26 | * Take a (partial) screenshot and send it to a Bear note 27 | 28 |
29 | 30 | ![Screenshot of Bearclaw](https://savjee.github.io/bearclaw/img/screenshot.png) 31 | ![Screenshot of Bearclaw in dark mode](https://savjee.github.io/bearclaw/img/screenshot-dark.png) 32 | 33 |
34 | 35 | ## ⏬ Download 36 | **[Download the latest version here](https://github.com/Savjee/bearclaw/releases/)** 37 | 38 | ## ✍️ Contributing 39 | I'm not a Swift developer so I can definitely use some help. 40 | 41 | Feel free to open issues and pull requests! 42 | -------------------------------------------------------------------------------- /docs/img/logo-bearclaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/docs/img/logo-bearclaw.png -------------------------------------------------------------------------------- /docs/img/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/docs/img/screenshot-dark.png -------------------------------------------------------------------------------- /docs/img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/docs/img/screenshot.png -------------------------------------------------------------------------------- /docs/updates/appcast.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Bearclaw 5 | Most recent changes with links to updates. 6 | en 7 | 8 | 9 | 10 | Version 1.1.1 11 | 12 | Fixes:

14 |
    15 |
  • The textview can now scroll (@thejasonparker)
  • 16 |
17 | 18 |

If you have suggestions or feedback, let me know on GitHub!

19 | ]]> 20 |
21 | Tue, 25 Sep 2018 09:34:11 +0000 22 | 23 |
24 | 25 | Version 1.1.0 26 | 27 | Fixes:

29 |
    30 |
  • Added support for dark mode on macOS Mojave
  • 31 |
32 | 33 |

If you have suggestions or feedback, let me know on GitHub!

34 | ]]> 35 |
36 | Tue, 25 Sep 2018 09:34:11 +0000 37 | 38 |
39 | 40 | Version 1.0.1 41 | 42 | Fixed a few small bugs:

44 |
    45 |
  • Always focus on the text field when opening Bearclaw
  • 46 |
  • Fixed a bug that crashed Bearclaw if you hit "esc" while taking a screenshot (Reported by trix180 on Reddit)
  • 47 |
48 | 49 |

If you have suggestions or feedback, let me know on GitHub!

50 | ]]> 51 |
52 | Mon, 27 Nov 2017 09:20:11 +0000 53 | 54 |
55 | 56 | Version 1.0 57 | 58 | Initial release of Bearclaw!

60 | ]]> 61 |
62 | Thu, 23 Nov 2017 14:37:11 +0000 63 | 64 |
65 |
66 |
67 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/Sparkle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /src/Sparkle.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /src/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SPUDownloadData.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloadData.h 3 | // Sparkle 4 | // 5 | // Created by Mayur Pawashe on 8/10/16. 6 | // Copyright © 2016 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #if __has_feature(modules) 10 | @import Foundation; 11 | #else 12 | #import 13 | #endif 14 | 15 | #import "SUExport.h" 16 | 17 | NS_ASSUME_NONNULL_BEGIN 18 | 19 | /*! 20 | * A class for containing downloaded data along with some information about it. 21 | */ 22 | SU_EXPORT @interface SPUDownloadData : NSObject 23 | 24 | - (instancetype)initWithData:(NSData *)data textEncodingName:(NSString * _Nullable)textEncodingName MIMEType:(NSString * _Nullable)MIMEType; 25 | 26 | /*! 27 | * The raw data that was downloaded. 28 | */ 29 | @property (nonatomic, readonly) NSData *data; 30 | 31 | /*! 32 | * The IANA charset encoding name if available. Eg: "utf-8" 33 | */ 34 | @property (nonatomic, readonly, nullable, copy) NSString *textEncodingName; 35 | 36 | /*! 37 | * The MIME type if available. Eg: "text/plain" 38 | */ 39 | @property (nonatomic, readonly, nullable, copy) NSString *MIMEType; 40 | 41 | @end 42 | 43 | NS_ASSUME_NONNULL_END 44 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SPUDownloader.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloader.h 3 | // Downloader 4 | // 5 | // Created by Mayur Pawashe on 4/1/16. 6 | // Copyright © 2016 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #if __has_feature(modules) 10 | @import Foundation; 11 | #else 12 | #import 13 | #endif 14 | #import "SPUDownloaderProtocol.h" 15 | 16 | @protocol SPUDownloaderDelegate; 17 | 18 | // This object implements the protocol which we have defined. It provides the actual behavior for the service. It is 'exported' by the service to make it available to the process hosting the service over an NSXPCConnection. 19 | @interface SPUDownloader : NSObject 20 | 21 | // Due to XPC remote object reasons, this delegate is strongly referenced 22 | // Invoke cleanup when done with this instance 23 | - (instancetype)initWithDelegate:(id )delegate; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SPUDownloaderDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloaderDelegate.h 3 | // Sparkle 4 | // 5 | // Created by Mayur Pawashe on 4/1/16. 6 | // Copyright © 2016 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #if __has_feature(modules) 10 | @import Foundation; 11 | #else 12 | #import 13 | #endif 14 | 15 | NS_ASSUME_NONNULL_BEGIN 16 | 17 | @class SPUDownloadData; 18 | 19 | @protocol SPUDownloaderDelegate 20 | 21 | // This is only invoked for persistent downloads 22 | - (void)downloaderDidSetDestinationName:(NSString *)destinationName temporaryDirectory:(NSString *)temporaryDirectory; 23 | 24 | // Under rare cases, this may be called more than once, in which case the current progress should be reset back to 0 25 | // This is only invoked for persistent downloads 26 | - (void)downloaderDidReceiveExpectedContentLength:(int64_t)expectedContentLength; 27 | 28 | // This is only invoked for persistent downloads 29 | - (void)downloaderDidReceiveDataOfLength:(uint64_t)length; 30 | 31 | // downloadData is nil if this is a persisent download, otherwise it's non-nil if it's a temporary download 32 | - (void)downloaderDidFinishWithTemporaryDownloadData:(SPUDownloadData * _Nullable)downloadData; 33 | 34 | - (void)downloaderDidFailWithError:(NSError *)error; 35 | 36 | @end 37 | 38 | NS_ASSUME_NONNULL_END 39 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SPUDownloaderDeprecated.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloaderDeprecated.h 3 | // Sparkle 4 | // 5 | // Created by Deadpikle on 12/20/17. 6 | // Copyright © 2017 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #import "SPUDownloader.h" 10 | 11 | @interface SPUDownloaderDeprecated : SPUDownloader 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SPUDownloaderProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloaderProtocol.h 3 | // PersistentDownloader 4 | // 5 | // Created by Mayur Pawashe on 4/1/16. 6 | // Copyright © 2016 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #if __has_feature(modules) 10 | @import Foundation; 11 | #else 12 | #import 13 | #endif 14 | 15 | NS_ASSUME_NONNULL_BEGIN 16 | 17 | @class SPUURLRequest; 18 | 19 | // The protocol that this service will vend as its API. This header file will also need to be visible to the process hosting the service. 20 | @protocol SPUDownloaderProtocol 21 | 22 | - (void)startPersistentDownloadWithRequest:(SPUURLRequest *)request bundleIdentifier:(NSString *)bundleIdentifier desiredFilename:(NSString *)desiredFilename; 23 | 24 | - (void)startTemporaryDownloadWithRequest:(SPUURLRequest *)request; 25 | 26 | - (void)downloadDidFinish; 27 | 28 | - (void)cleanup; 29 | 30 | - (void)cancel; 31 | 32 | @end 33 | 34 | NS_ASSUME_NONNULL_END 35 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SPUDownloaderSession.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUDownloaderSession.h 3 | // Sparkle 4 | // 5 | // Created by Deadpikle on 12/20/17. 6 | // Copyright © 2017 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #if __has_feature(modules) 10 | @import Foundation; 11 | #else 12 | #import 13 | #endif 14 | #import "SPUDownloader.h" 15 | #import "SPUDownloaderProtocol.h" 16 | 17 | NS_CLASS_AVAILABLE(NSURLSESSION_AVAILABLE, 7_0) 18 | @interface SPUDownloaderSession : SPUDownloader 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SPUURLRequest.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPUURLRequest.h 3 | // Sparkle 4 | // 5 | // Created by Mayur Pawashe on 5/19/16. 6 | // Copyright © 2016 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #if __has_feature(modules) 10 | @import Foundation; 11 | #else 12 | #import 13 | #endif 14 | 15 | NS_ASSUME_NONNULL_BEGIN 16 | 17 | // A class that wraps NSURLRequest and implements NSSecureCoding 18 | // This class exists because NSURLRequest did not support NSSecureCoding in macOS 10.8 19 | // I have not verified if NSURLRequest in 10.9 implements NSSecureCoding or not 20 | @interface SPUURLRequest : NSObject 21 | 22 | // Creates a new URL request 23 | // Only these properties are currently tracked: 24 | // * URL 25 | // * Cache policy 26 | // * Timeout interval 27 | // * HTTP header fields 28 | // * networkServiceType 29 | + (instancetype)URLRequestWithRequest:(NSURLRequest *)request; 30 | 31 | @property (nonatomic, readonly) NSURLRequest *request; 32 | 33 | @end 34 | 35 | NS_ASSUME_NONNULL_END 36 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SUAppcast.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUAppcast.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/12/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUAPPCAST_H 10 | #define SUAPPCAST_H 11 | 12 | #if __has_feature(modules) 13 | @import Foundation; 14 | #else 15 | #import 16 | #endif 17 | #import "SUExport.h" 18 | 19 | NS_ASSUME_NONNULL_BEGIN 20 | 21 | @class SUAppcastItem; 22 | SU_EXPORT @interface SUAppcast : NSObject 23 | 24 | @property (copy, nullable) NSString *userAgentString; 25 | @property (copy, nullable) NSDictionary *httpHeaders; 26 | 27 | - (void)fetchAppcastFromURL:(NSURL *)url inBackground:(BOOL)bg completionBlock:(void (^)(NSError *_Nullable))err; 28 | - (SUAppcast *)copyWithoutDeltaUpdates; 29 | 30 | @property (readonly, copy, nullable) NSArray *items; 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | 35 | #endif 36 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUAppcastItem.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/12/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUAPPCASTITEM_H 10 | #define SUAPPCASTITEM_H 11 | 12 | #if __has_feature(modules) 13 | @import Foundation; 14 | #else 15 | #import 16 | #endif 17 | #import "SUExport.h" 18 | @class SUSignatures; 19 | 20 | SU_EXPORT @interface SUAppcastItem : NSObject 21 | @property (copy, readonly) NSString *title; 22 | @property (copy, readonly) NSString *dateString; 23 | @property (copy, readonly) NSString *itemDescription; 24 | @property (strong, readonly) NSURL *releaseNotesURL; 25 | @property (strong, readonly) SUSignatures *signatures; 26 | @property (copy, readonly) NSString *minimumSystemVersion; 27 | @property (copy, readonly) NSString *maximumSystemVersion; 28 | @property (strong, readonly) NSURL *fileURL; 29 | @property (nonatomic, readonly) uint64_t contentLength; 30 | @property (copy, readonly) NSString *versionString; 31 | @property (copy, readonly) NSString *osString; 32 | @property (copy, readonly) NSString *displayVersionString; 33 | @property (copy, readonly) NSDictionary *deltaUpdates; 34 | @property (strong, readonly) NSURL *infoURL; 35 | 36 | // Initializes with data from a dictionary provided by the RSS class. 37 | - (instancetype)initWithDictionary:(NSDictionary *)dict; 38 | - (instancetype)initWithDictionary:(NSDictionary *)dict failureReason:(NSString **)error; 39 | 40 | @property (getter=isDeltaUpdate, readonly) BOOL deltaUpdate; 41 | @property (getter=isCriticalUpdate, readonly) BOOL criticalUpdate; 42 | @property (getter=isMacOsUpdate, readonly) BOOL macOsUpdate; 43 | @property (getter=isInformationOnlyUpdate, readonly) BOOL informationOnlyUpdate; 44 | 45 | // Returns the dictionary provided in initWithDictionary; this might be useful later for extensions. 46 | @property (readonly, copy) NSDictionary *propertiesDictionary; 47 | 48 | - (NSURL *)infoURL; 49 | 50 | @end 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SUCodeSigningVerifier.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUCodeSigningVerifier.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 7/5/12. 6 | // 7 | // 8 | 9 | #ifndef SUCODESIGNINGVERIFIER_H 10 | #define SUCODESIGNINGVERIFIER_H 11 | 12 | #import 13 | #import "SUExport.h" 14 | 15 | SU_EXPORT @interface SUCodeSigningVerifier : NSObject 16 | + (BOOL)codeSignatureAtBundleURL:(NSURL *)oldBundlePath matchesSignatureAtBundleURL:(NSURL *)newBundlePath error:(NSError **)error; 17 | + (BOOL)codeSignatureIsValidAtBundleURL:(NSURL *)bundlePath error:(NSError **)error; 18 | + (BOOL)bundleAtURLIsCodeSigned:(NSURL *)bundlePath; 19 | + (NSDictionary *)codeSignatureInfoAtBundleURL:(NSURL *)bundlePath; 20 | @end 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SUErrors.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUErrors.h 3 | // Sparkle 4 | // 5 | // Created by C.W. Betts on 10/13/14. 6 | // Copyright (c) 2014 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #ifndef SUERRORS_H 10 | #define SUERRORS_H 11 | 12 | #if __has_feature(modules) 13 | @import Foundation; 14 | #else 15 | #import 16 | #endif 17 | #import "SUExport.h" 18 | 19 | /** 20 | * Error domain used by Sparkle 21 | */ 22 | SU_EXPORT extern NSString *const SUSparkleErrorDomain; 23 | 24 | #pragma clang diagnostic push 25 | #pragma clang diagnostic ignored "-Wc++98-compat" 26 | typedef NS_ENUM(OSStatus, SUError) { 27 | // Appcast phase errors. 28 | SUAppcastParseError = 1000, 29 | SUNoUpdateError = 1001, 30 | SUAppcastError = 1002, 31 | SURunningFromDiskImageError = 1003, 32 | 33 | // Download phase errors. 34 | SUTemporaryDirectoryError = 2000, 35 | SUDownloadError = 2001, 36 | 37 | // Extraction phase errors. 38 | SUUnarchivingError = 3000, 39 | SUSignatureError = 3001, 40 | 41 | // Installation phase errors. 42 | SUFileCopyFailure = 4000, 43 | SUAuthenticationFailure = 4001, 44 | SUMissingUpdateError = 4002, 45 | SUMissingInstallerToolError = 4003, 46 | SURelaunchError = 4004, 47 | SUInstallationError = 4005, 48 | SUDowngradeError = 4006, 49 | SUInstallationCancelledError = 4007, 50 | 51 | // System phase errors 52 | SUSystemPowerOffError = 5000 53 | }; 54 | #pragma clang diagnostic pop 55 | 56 | #endif 57 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SUExport.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUExport.h 3 | // Sparkle 4 | // 5 | // Created by Jake Petroules on 2014-08-23. 6 | // Copyright (c) 2014 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #ifndef SUEXPORT_H 10 | #define SUEXPORT_H 11 | 12 | #ifdef BUILDING_SPARKLE 13 | #define SU_EXPORT __attribute__((visibility("default"))) 14 | #else 15 | #define SU_EXPORT 16 | #endif 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUStandardVersionComparator.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 12/21/07. 6 | // Copyright 2007 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUSTANDARDVERSIONCOMPARATOR_H 10 | #define SUSTANDARDVERSIONCOMPARATOR_H 11 | 12 | #if __has_feature(modules) 13 | @import Foundation; 14 | #else 15 | #import 16 | #endif 17 | #import "SUExport.h" 18 | #import "SUVersionComparisonProtocol.h" 19 | 20 | NS_ASSUME_NONNULL_BEGIN 21 | 22 | /*! 23 | Sparkle's default version comparator. 24 | 25 | This comparator is adapted from MacPAD, by Kevin Ballard. 26 | It's "dumb" in that it does essentially string comparison, 27 | in components split by character type. 28 | */ 29 | SU_EXPORT @interface SUStandardVersionComparator : NSObject 30 | 31 | /*! 32 | Initializes a new instance of the standard version comparator. 33 | */ 34 | - (instancetype)init; 35 | 36 | /*! 37 | Returns a singleton instance of the comparator. 38 | 39 | It is usually preferred to alloc/init new a comparator instead. 40 | */ 41 | + (SUStandardVersionComparator *)defaultComparator; 42 | 43 | /*! 44 | Compares version strings through textual analysis. 45 | 46 | See the implementation for more details. 47 | */ 48 | - (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; 49 | @end 50 | 51 | NS_ASSUME_NONNULL_END 52 | #endif 53 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SUUpdater.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUUpdater.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 1/4/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUUPDATER_H 10 | #define SUUPDATER_H 11 | 12 | #if __has_feature(modules) 13 | @import Cocoa; 14 | #else 15 | #import 16 | #endif 17 | #import "SUExport.h" 18 | #import "SUVersionComparisonProtocol.h" 19 | #import "SUVersionDisplayProtocol.h" 20 | 21 | @class SUAppcastItem, SUAppcast; 22 | 23 | @protocol SUUpdaterDelegate; 24 | 25 | /*! 26 | The main API in Sparkle for controlling the update mechanism. 27 | 28 | This class is used to configure the update paramters as well as manually 29 | and automatically schedule and control checks for updates. 30 | */ 31 | SU_EXPORT @interface SUUpdater : NSObject 32 | 33 | @property (unsafe_unretained) IBOutlet id delegate; 34 | 35 | /*! 36 | The shared updater for the main bundle. 37 | 38 | This is equivalent to passing [NSBundle mainBundle] to SUUpdater::updaterForBundle: 39 | */ 40 | + (SUUpdater *)sharedUpdater; 41 | 42 | /*! 43 | The shared updater for a specified bundle. 44 | 45 | If an updater has already been initialized for the provided bundle, that shared instance will be returned. 46 | */ 47 | + (SUUpdater *)updaterForBundle:(NSBundle *)bundle; 48 | 49 | /*! 50 | Designated initializer for SUUpdater. 51 | 52 | If an updater has already been initialized for the provided bundle, that shared instance will be returned. 53 | */ 54 | - (instancetype)initForBundle:(NSBundle *)bundle; 55 | 56 | /*! 57 | Explicitly checks for updates and displays a progress dialog while doing so. 58 | 59 | This method is meant for a main menu item. 60 | Connect any menu item to this action in Interface Builder, 61 | and Sparkle will check for updates and report back its findings verbosely 62 | when it is invoked. 63 | 64 | This will find updates that the user has opted into skipping. 65 | */ 66 | - (IBAction)checkForUpdates:(id)sender; 67 | 68 | /*! 69 | The menu item validation used for the -checkForUpdates: action 70 | */ 71 | - (BOOL)validateMenuItem:(NSMenuItem *)menuItem; 72 | 73 | /*! 74 | Checks for updates, but does not display any UI unless an update is found. 75 | 76 | This is meant for programmatically initating a check for updates. That is, 77 | it will display no UI unless it actually finds an update, in which case it 78 | proceeds as usual. 79 | 80 | If automatic downloading of updates it turned on and allowed, however, 81 | this will invoke that behavior, and if an update is found, it will be downloaded 82 | in the background silently and will be prepped for installation. 83 | 84 | This will not find updates that the user has opted into skipping. 85 | */ 86 | - (void)checkForUpdatesInBackground; 87 | 88 | /*! 89 | A property indicating whether or not to check for updates automatically. 90 | 91 | Setting this property will persist in the host bundle's user defaults. 92 | The update schedule cycle will be reset in a short delay after the property's new value is set. 93 | This is to allow reverting this property without kicking off a schedule change immediately 94 | */ 95 | @property BOOL automaticallyChecksForUpdates; 96 | 97 | /*! 98 | A property indicating whether or not updates can be automatically downloaded in the background. 99 | 100 | Note that automatic downloading of updates can be disallowed by the developer 101 | or by the user's system if silent updates cannot be done (eg: if they require authentication). 102 | In this case, -automaticallyDownloadsUpdates will return NO regardless of how this property is set. 103 | 104 | Setting this property will persist in the host bundle's user defaults. 105 | */ 106 | @property BOOL automaticallyDownloadsUpdates; 107 | 108 | /*! 109 | A property indicating the current automatic update check interval. 110 | 111 | Setting this property will persist in the host bundle's user defaults. 112 | The update schedule cycle will be reset in a short delay after the property's new value is set. 113 | This is to allow reverting this property without kicking off a schedule change immediately 114 | */ 115 | @property NSTimeInterval updateCheckInterval; 116 | 117 | /*! 118 | Begins a "probing" check for updates which will not actually offer to 119 | update to that version. 120 | 121 | However, the delegate methods 122 | SUUpdaterDelegate::updater:didFindValidUpdate: and 123 | SUUpdaterDelegate::updaterDidNotFindUpdate: will be called, 124 | so you can use that information in your UI. 125 | 126 | Updates that have been skipped by the user will not be found. 127 | */ 128 | - (void)checkForUpdateInformation; 129 | 130 | /*! 131 | The URL of the appcast used to download update information. 132 | 133 | Setting this property will persist in the host bundle's user defaults. 134 | If you don't want persistence, you may want to consider instead implementing 135 | SUUpdaterDelegate::feedURLStringForUpdater: or SUUpdaterDelegate::feedParametersForUpdater:sendingSystemProfile: 136 | 137 | This property must be called on the main thread. 138 | */ 139 | @property (copy) NSURL *feedURL; 140 | 141 | /*! 142 | The host bundle that is being updated. 143 | */ 144 | @property (readonly, strong) NSBundle *hostBundle; 145 | 146 | /*! 147 | The bundle this class (SUUpdater) is loaded into. 148 | */ 149 | @property (strong, readonly) NSBundle *sparkleBundle; 150 | 151 | /*! 152 | The user agent used when checking for updates. 153 | 154 | The default implementation can be overrided. 155 | */ 156 | @property (nonatomic, copy) NSString *userAgentString; 157 | 158 | /*! 159 | The HTTP headers used when checking for updates. 160 | 161 | The keys of this dictionary are HTTP header fields (NSString) and values are corresponding values (NSString) 162 | */ 163 | @property (copy) NSDictionary *httpHeaders; 164 | 165 | /*! 166 | A property indicating whether or not the user's system profile information is sent when checking for updates. 167 | 168 | Setting this property will persist in the host bundle's user defaults. 169 | */ 170 | @property BOOL sendsSystemProfile; 171 | 172 | /*! 173 | A property indicating the decryption password used for extracting updates shipped as Apple Disk Images (dmg) 174 | */ 175 | @property (nonatomic, copy) NSString *decryptionPassword; 176 | 177 | /*! 178 | This function ignores normal update schedule, ignores user preferences, 179 | and interrupts users with an unwanted immediate app update. 180 | 181 | WARNING: this function should not be used in regular apps. This function 182 | is a user-unfriendly hack only for very special cases, like unstable 183 | rapidly-changing beta builds that would not run correctly if they were 184 | even one day out of date. 185 | 186 | Instead of this function you should set `SUAutomaticallyUpdate` to `YES`, 187 | which will gracefully install updates when the app quits. 188 | 189 | For UI-less/daemon apps that aren't usually quit, instead of this function, 190 | you can use the delegate method 191 | SUUpdaterDelegate::updater:willInstallUpdateOnQuit:immediateInstallationInvocation: 192 | to immediately start installation when an update was found. 193 | 194 | A progress dialog is shown but the user will never be prompted to read the 195 | release notes. 196 | 197 | This function will cause update to be downloaded twice if automatic updates are 198 | enabled. 199 | 200 | You may want to respond to the userDidCancelDownload delegate method in case 201 | the user clicks the "Cancel" button while the update is downloading. 202 | */ 203 | - (void)installUpdatesIfAvailable; 204 | 205 | /*! 206 | Returns the date of last update check. 207 | 208 | \returns \c nil if no check has been performed. 209 | */ 210 | @property (readonly, copy) NSDate *lastUpdateCheckDate; 211 | 212 | /*! 213 | Appropriately schedules or cancels the update checking timer according to 214 | the preferences for time interval and automatic checks. 215 | 216 | This call does not change the date of the next check, 217 | but only the internal NSTimer. 218 | */ 219 | - (void)resetUpdateCycle; 220 | 221 | /*! 222 | A property indicating whether or not an update is in progress. 223 | 224 | Note this property is not indicative of whether or not user initiated updates can be performed. 225 | Use SUUpdater::validateMenuItem: for that instead. 226 | */ 227 | @property (readonly) BOOL updateInProgress; 228 | 229 | @end 230 | 231 | #endif 232 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SUUpdaterDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUUpdaterDelegate.h 3 | // Sparkle 4 | // 5 | // Created by Mayur Pawashe on 12/25/16. 6 | // Copyright © 2016 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #if __has_feature(modules) 10 | @import Foundation; 11 | #else 12 | #import 13 | #endif 14 | 15 | #import "SUExport.h" 16 | 17 | @protocol SUVersionComparison, SUVersionDisplay; 18 | @class SUUpdater, SUAppcast, SUAppcastItem; 19 | 20 | NS_ASSUME_NONNULL_BEGIN 21 | 22 | // ----------------------------------------------------------------------------- 23 | // SUUpdater Notifications for events that might be interesting to more than just the delegate 24 | // The updater will be the notification object 25 | // ----------------------------------------------------------------------------- 26 | SU_EXPORT extern NSString *const SUUpdaterDidFinishLoadingAppCastNotification; 27 | SU_EXPORT extern NSString *const SUUpdaterDidFindValidUpdateNotification; 28 | SU_EXPORT extern NSString *const SUUpdaterDidNotFindUpdateNotification; 29 | SU_EXPORT extern NSString *const SUUpdaterWillRestartNotification; 30 | #define SUUpdaterWillRelaunchApplicationNotification SUUpdaterWillRestartNotification; 31 | #define SUUpdaterWillInstallUpdateNotification SUUpdaterWillRestartNotification; 32 | 33 | // Key for the SUAppcastItem object in the SUUpdaterDidFindValidUpdateNotification userInfo 34 | SU_EXPORT extern NSString *const SUUpdaterAppcastItemNotificationKey; 35 | // Key for the SUAppcast object in the SUUpdaterDidFinishLoadingAppCastNotification userInfo 36 | SU_EXPORT extern NSString *const SUUpdaterAppcastNotificationKey; 37 | 38 | // ----------------------------------------------------------------------------- 39 | // SUUpdater Delegate: 40 | // ----------------------------------------------------------------------------- 41 | 42 | /*! 43 | Provides methods to control the behavior of an SUUpdater object. 44 | */ 45 | @protocol SUUpdaterDelegate 46 | @optional 47 | 48 | /*! 49 | Returns whether to allow Sparkle to pop up. 50 | 51 | For example, this may be used to prevent Sparkle from interrupting a setup assistant. 52 | 53 | \param updater The SUUpdater instance. 54 | */ 55 | - (BOOL)updaterMayCheckForUpdates:(SUUpdater *)updater; 56 | 57 | /*! 58 | Returns additional parameters to append to the appcast URL's query string. 59 | 60 | This is potentially based on whether or not Sparkle will also be sending along the system profile. 61 | 62 | \param updater The SUUpdater instance. 63 | \param sendingProfile Whether the system profile will also be sent. 64 | 65 | \return An array of dictionaries with keys: "key", "value", "displayKey", "displayValue", the latter two being specifically for display to the user. 66 | */ 67 | - (NSArray *> *)feedParametersForUpdater:(SUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile; 68 | 69 | /*! 70 | Returns a custom appcast URL. 71 | 72 | Override this to dynamically specify the entire URL. 73 | 74 | An alternative may be to use SUUpdaterDelegate::feedParametersForUpdater:sendingSystemProfile: 75 | and let the server handle what kind of feed to provide. 76 | 77 | \param updater The SUUpdater instance. 78 | */ 79 | - (nullable NSString *)feedURLStringForUpdater:(SUUpdater *)updater; 80 | 81 | /*! 82 | Returns whether Sparkle should prompt the user about automatic update checks. 83 | 84 | Use this to override the default behavior. 85 | 86 | \param updater The SUUpdater instance. 87 | */ 88 | - (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SUUpdater *)updater; 89 | 90 | /*! 91 | Called after Sparkle has downloaded the appcast from the remote server. 92 | 93 | Implement this if you want to do some special handling with the appcast once it finishes loading. 94 | 95 | \param updater The SUUpdater instance. 96 | \param appcast The appcast that was downloaded from the remote server. 97 | */ 98 | - (void)updater:(SUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast; 99 | 100 | /*! 101 | Returns the item in the appcast corresponding to the update that should be installed. 102 | 103 | If you're using special logic or extensions in your appcast, 104 | implement this to use your own logic for finding a valid update, if any, 105 | in the given appcast. 106 | 107 | \param appcast The appcast that was downloaded from the remote server. 108 | \param updater The SUUpdater instance. 109 | */ 110 | - (nullable SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SUUpdater *)updater; 111 | 112 | /*! 113 | Called when a valid update is found by the update driver. 114 | 115 | \param updater The SUUpdater instance. 116 | \param item The appcast item corresponding to the update that is proposed to be installed. 117 | */ 118 | - (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)item; 119 | 120 | /*! 121 | Called when a valid update is not found. 122 | 123 | \param updater The SUUpdater instance. 124 | */ 125 | - (void)updaterDidNotFindUpdate:(SUUpdater *)updater; 126 | 127 | /*! 128 | Called immediately before downloading the specified update. 129 | 130 | \param updater The SUUpdater instance. 131 | \param item The appcast item corresponding to the update that is proposed to be downloaded. 132 | \param request The mutable URL request that will be used to download the update. 133 | */ 134 | - (void)updater:(SUUpdater *)updater willDownloadUpdate:(SUAppcastItem *)item withRequest:(NSMutableURLRequest *)request; 135 | 136 | /*! 137 | Called immediately after succesfull download of the specified update. 138 | 139 | \param updater The SUUpdater instance. 140 | \param item The appcast item corresponding to the update that has been downloaded. 141 | */ 142 | - (void)updater:(SUUpdater *)updater didDownloadUpdate:(SUAppcastItem *)item; 143 | 144 | /*! 145 | Called after the specified update failed to download. 146 | 147 | \param updater The SUUpdater instance. 148 | \param item The appcast item corresponding to the update that failed to download. 149 | \param error The error generated by the failed download. 150 | */ 151 | - (void)updater:(SUUpdater *)updater failedToDownloadUpdate:(SUAppcastItem *)item error:(NSError *)error; 152 | 153 | /*! 154 | Called when the user clicks the cancel button while and update is being downloaded. 155 | 156 | \param updater The SUUpdater instance. 157 | */ 158 | - (void)userDidCancelDownload:(SUUpdater *)updater; 159 | 160 | /*! 161 | Called immediately before extracting the specified downloaded update. 162 | 163 | \param updater The SUUpdater instance. 164 | \param item The appcast item corresponding to the update that is proposed to be extracted. 165 | */ 166 | - (void)updater:(SUUpdater *)updater willExtractUpdate:(SUAppcastItem *)item; 167 | 168 | /*! 169 | Called immediately after extracting the specified downloaded update. 170 | 171 | \param updater The SUUpdater instance. 172 | \param item The appcast item corresponding to the update that has been extracted. 173 | */ 174 | - (void)updater:(SUUpdater *)updater didExtractUpdate:(SUAppcastItem *)item; 175 | 176 | /*! 177 | Called immediately before installing the specified update. 178 | 179 | \param updater The SUUpdater instance. 180 | \param item The appcast item corresponding to the update that is proposed to be installed. 181 | */ 182 | - (void)updater:(SUUpdater *)updater willInstallUpdate:(SUAppcastItem *)item; 183 | 184 | /*! 185 | Returns whether the relaunch should be delayed in order to perform other tasks. 186 | 187 | This is not called if the user didn't relaunch on the previous update, 188 | in that case it will immediately restart. 189 | 190 | \param updater The SUUpdater instance. 191 | \param item The appcast item corresponding to the update that is proposed to be installed. 192 | \param invocation The invocation that must be completed with `[invocation invoke]` before continuing with the relaunch. 193 | 194 | \return \c YES to delay the relaunch until \p invocation is invoked. 195 | */ 196 | - (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item untilInvoking:(NSInvocation *)invocation; 197 | 198 | /*! 199 | Returns whether the application should be relaunched at all. 200 | 201 | Some apps \b cannot be relaunched under certain circumstances. 202 | This method can be used to explicitly prevent a relaunch. 203 | 204 | \param updater The SUUpdater instance. 205 | */ 206 | - (BOOL)updaterShouldRelaunchApplication:(SUUpdater *)updater; 207 | 208 | /*! 209 | Called immediately before relaunching. 210 | 211 | \param updater The SUUpdater instance. 212 | */ 213 | - (void)updaterWillRelaunchApplication:(SUUpdater *)updater; 214 | 215 | /*! 216 | Called immediately after relaunching. SUUpdater delegate must be set before applicationDidFinishLaunching: to catch this event. 217 | 218 | \param updater The SUUpdater instance. 219 | */ 220 | - (void)updaterDidRelaunchApplication:(SUUpdater *)updater; 221 | 222 | /*! 223 | Returns an object that compares version numbers to determine their arithmetic relation to each other. 224 | 225 | This method allows you to provide a custom version comparator. 226 | If you don't implement this method or return \c nil, 227 | the standard version comparator will be used. 228 | 229 | \sa SUStandardVersionComparator 230 | 231 | \param updater The SUUpdater instance. 232 | */ 233 | - (nullable id)versionComparatorForUpdater:(SUUpdater *)updater; 234 | 235 | /*! 236 | Returns an object that formats version numbers for display to the user. 237 | 238 | If you don't implement this method or return \c nil, 239 | the standard version formatter will be used. 240 | 241 | \sa SUUpdateAlert 242 | 243 | \param updater The SUUpdater instance. 244 | */ 245 | - (nullable id)versionDisplayerForUpdater:(SUUpdater *)updater; 246 | 247 | /*! 248 | Returns the path which is used to relaunch the client after the update is installed. 249 | 250 | The default is the path of the host bundle. 251 | 252 | \param updater The SUUpdater instance. 253 | */ 254 | - (nullable NSString *)pathToRelaunchForUpdater:(SUUpdater *)updater; 255 | 256 | /*! 257 | Called before an updater shows a modal alert window, 258 | to give the host the opportunity to hide attached windows that may get in the way. 259 | 260 | \param updater The SUUpdater instance. 261 | */ 262 | - (void)updaterWillShowModalAlert:(SUUpdater *)updater; 263 | 264 | /*! 265 | Called after an updater shows a modal alert window, 266 | to give the host the opportunity to hide attached windows that may get in the way. 267 | 268 | \param updater The SUUpdater instance. 269 | */ 270 | - (void)updaterDidShowModalAlert:(SUUpdater *)updater; 271 | 272 | /*! 273 | Called when an update is scheduled to be silently installed on quit. 274 | This is after an update has been automatically downloaded in the background. 275 | (i.e. SUUpdater::automaticallyDownloadsUpdates is YES) 276 | 277 | \param updater The SUUpdater instance. 278 | \param item The appcast item corresponding to the update that is proposed to be installed. 279 | \param invocation Can be used to trigger an immediate silent install and relaunch. 280 | */ 281 | - (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationInvocation:(NSInvocation *)invocation; 282 | 283 | /*! 284 | Calls after an update that was scheduled to be silently installed on quit has been canceled. 285 | 286 | \param updater The SUUpdater instance. 287 | \param item The appcast item corresponding to the update that was proposed to be installed. 288 | */ 289 | - (void)updater:(SUUpdater *)updater didCancelInstallUpdateOnQuit:(SUAppcastItem *)item; 290 | 291 | /*! 292 | Called after an update is aborted due to an error. 293 | 294 | \param updater The SUUpdater instance. 295 | \param error The error that caused the abort 296 | */ 297 | - (void)updater:(SUUpdater *)updater didAbortWithError:(NSError *)error; 298 | 299 | @end 300 | 301 | NS_ASSUME_NONNULL_END 302 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUVersionComparisonProtocol.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 12/21/07. 6 | // Copyright 2007 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SUVERSIONCOMPARISONPROTOCOL_H 10 | #define SUVERSIONCOMPARISONPROTOCOL_H 11 | 12 | #if __has_feature(modules) 13 | @import Foundation; 14 | #else 15 | #import 16 | #endif 17 | #import "SUExport.h" 18 | 19 | NS_ASSUME_NONNULL_BEGIN 20 | 21 | /*! 22 | Provides version comparison facilities for Sparkle. 23 | */ 24 | @protocol SUVersionComparison 25 | 26 | /*! 27 | An abstract method to compare two version strings. 28 | 29 | Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, 30 | and NSOrderedSame if they are equivalent. 31 | */ 32 | - (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; // *** MAY BE CALLED ON NON-MAIN THREAD! 33 | 34 | @end 35 | 36 | NS_ASSUME_NONNULL_END 37 | #endif 38 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUVersionDisplayProtocol.h 3 | // EyeTV 4 | // 5 | // Created by Uli Kusterer on 08.12.09. 6 | // Copyright 2009 Elgato Systems GmbH. All rights reserved. 7 | // 8 | 9 | #if __has_feature(modules) 10 | @import Foundation; 11 | #else 12 | #import 13 | #endif 14 | #import "SUExport.h" 15 | 16 | /*! 17 | Applies special display formatting to version numbers. 18 | */ 19 | @protocol SUVersionDisplay 20 | 21 | /*! 22 | Formats two version strings. 23 | 24 | Both versions are provided so that important distinguishing information 25 | can be displayed while also leaving out unnecessary/confusing parts. 26 | */ 27 | - (void)formatVersion:(NSString *_Nonnull*_Nonnull)inOutVersionA andVersion:(NSString *_Nonnull*_Nonnull)inOutVersionB; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- 1 | // 2 | // Sparkle.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07) 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #ifndef SPARKLE_H 10 | #define SPARKLE_H 11 | 12 | // This list should include the shared headers. It doesn't matter if some of them aren't shared (unless 13 | // there are name-space collisions) so we can list all of them to start with: 14 | 15 | #import "SUAppcast.h" 16 | #import "SUAppcastItem.h" 17 | #import "SUStandardVersionComparator.h" 18 | #import "SUUpdater.h" 19 | #import "SUUpdaterDelegate.h" 20 | #import "SUVersionComparisonProtocol.h" 21 | #import "SUVersionDisplayProtocol.h" 22 | #import "SUErrors.h" 23 | 24 | #import "SPUDownloader.h" 25 | #import "SPUDownloaderDelegate.h" 26 | #import "SPUDownloaderDeprecated.h" 27 | #import "SPUDownloadData.h" 28 | #import "SPUDownloaderProtocol.h" 29 | #import "SPUDownloaderSession.h" 30 | #import "SPUURLRequest.h" 31 | #import "SUCodeSigningVerifier.h" 32 | 33 | #endif 34 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Sparkle { 2 | umbrella header "Sparkle.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/PrivateHeaders/SUUnarchiver.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUUnarchiver.h 3 | // Sparkle 4 | // 5 | // Created by Andy Matuschak on 3/16/06. 6 | // Copyright 2006 Andy Matuschak. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @protocol SUUnarchiverProtocol; 14 | 15 | @interface SUUnarchiver : NSObject 16 | 17 | + (nullable id )unarchiverForPath:(NSString *)path updatingHostBundlePath:(nullable NSString *)hostPath decryptionPassword:(nullable NSString *)decryptionPassword; 18 | 19 | @end 20 | 21 | NS_ASSUME_NONNULL_END 22 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18D42 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | Autoupdate 11 | CFBundleIconFile 12 | AppIcon.icns 13 | CFBundleIdentifier 14 | org.sparkle-project.Sparkle.Autoupdate 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.21.3 18-g1ff157710 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.21.3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18B71 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | LSBackgroundOnly 44 | 1 45 | LSMinimumSystemVersion 46 | 10.7 47 | LSUIElement 48 | 1 49 | NSMainNibFile 50 | MainMenu 51 | NSPrincipalClass 52 | NSApplication 53 | 54 | 55 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/DarkAqua.css: -------------------------------------------------------------------------------- 1 | html { 2 | color: #FFFFFFD8; 3 | } 4 | :link { 5 | color: #419CFF; 6 | } 7 | :link:active { 8 | color: #FF1919; 9 | } 10 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18D42 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Sparkle 11 | CFBundleIdentifier 12 | org.sparkle-project.Sparkle 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Sparkle 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 1.21.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.21.3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18B71 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | 44 | 45 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ADP2,1 6 | Developer Transition Kit 7 | iMac1,1 8 | iMac G3 (Rev A-D) 9 | iMac4,1 10 | iMac (Core Duo) 11 | iMac4,2 12 | iMac for Education (17 inch, Core Duo) 13 | iMac5,1 14 | iMac (Core 2 Duo, 17 or 20 inch, SuperDrive) 15 | iMac5,2 16 | iMac (Core 2 Duo, 17 inch, Combo Drive) 17 | iMac6,1 18 | iMac (Core 2 Duo, 24 inch, SuperDrive) 19 | iMac7,1 20 | iMac Intel Core 2 Duo (aluminum enclosure) 21 | iMac8,1 22 | iMac (Core 2 Duo, 20 or 24 inch, Early 2008 ) 23 | iMac9,1 24 | iMac (Core 2 Duo, 20 or 24 inch, Early or Mid 2009 ) 25 | iMac10,1 26 | iMac (Core 2 Duo, 21.5 or 27 inch, Late 2009 ) 27 | iMac11,1 28 | iMac (Core i5 or i7, 27 inch Late 2009) 29 | iMac11,2 30 | 21.5" iMac (mid 2010) 31 | iMac11,3 32 | iMac (Core i5 or i7, 27 inch Mid 2010) 33 | iMac12,1 34 | iMac (Core i3 or i5 or i7, 21.5 inch Mid 2010 or Late 2011) 35 | iMac12,2 36 | iMac (Core i5 or i7, 27 inch Mid 2011) 37 | iMac13,1 38 | iMac (Core i3 or i5 or i7, 21.5 inch Late 2012 or Early 2013) 39 | iMac13,2 40 | iMac (Core i5 or i7, 27 inch Late 2012) 41 | iMac14,1 42 | iMac (Core i5, 21.5 inch Late 2013) 43 | iMac14,2 44 | iMac (Core i5 or i7, 27 inch Late 2013) 45 | iMac14,3 46 | iMac (Core i5 or i7, 21.5 inch Late 2013) 47 | iMac14,4 48 | iMac (Core i5, 21.5 inch Mid 2014) 49 | iMac15,1 50 | iMac (Retina 5K Core i5 or i7, 27 inch Late 2014 or Mid 2015) 51 | iMac16,1 52 | iMac (Core i5, 21,5 inch Late 2015) 53 | iMac16,2 54 | iMac (Retina 4K Core i5 or i7, 21.5 inch Late 2015) 55 | iMac17,1 56 | iMac (Retina 5K Core i5 or i7, 27 inch Late 2015) 57 | MacBook1,1 58 | MacBook (Core Duo) 59 | MacBook2,1 60 | MacBook (Core 2 Duo) 61 | MacBook4,1 62 | MacBook (Core 2 Duo Feb 2008) 63 | MacBook5,1 64 | MacBook (Core 2 Duo, Late 2008, Unibody) 65 | MacBook5,2 66 | MacBook (Core 2 Duo, Early 2009, White) 67 | MacBook6,1 68 | MacBook (Core 2 Duo, Late 2009, Unibody) 69 | MacBook7,1 70 | MacBook (Core 2 Duo, Mid 2010, White) 71 | MacBook8,1 72 | MacBook (Core M, 12 inch, Early 2015) 73 | MacBookAir1,1 74 | MacBook Air (Core 2 Duo, 13 inch, Early 2008) 75 | MacBookAir2,1 76 | MacBook Air (Core 2 Duo, 13 inch, Mid 2009) 77 | MacBookAir3,1 78 | MacBook Air (Core 2 Duo, 11 inch, Late 2010) 79 | MacBookAir3,2 80 | MacBook Air (Core 2 Duo, 13 inch, Late 2010) 81 | MacBookAir4,1 82 | MacBook Air (Core i5 or i7, 11 inch, Mid 2011) 83 | MacBookAir4,2 84 | MacBook Air (Core i5 or i7, 13 inch, Mid 2011) 85 | MacBookAir5,1 86 | MacBook Air (Core i5 or i7, 11 inch, Mid 2012) 87 | MacBookAir5,2 88 | MacBook Air (Core i5 or i7, 13 inch, Mid 2012) 89 | MacBookAir6,1 90 | MacBook Air (Core i5 or i7, 11 inch, Mid 2013 or Early 2014) 91 | MacBookAir6,2 92 | MacBook Air (Core i5 or i7, 13 inch, Mid 2013 or Early 2014) 93 | MacBookAir7,1 94 | MacBook Air (Core i5 or i7, 11 inch, Early 2015) 95 | MacBookAir7,2 96 | MacBook Air (Core i5 or i7, 13 inch, Early 2015) 97 | MacBookPro1,1 98 | MacBook Pro Core Duo (15-inch) 99 | MacBookPro1,2 100 | MacBook Pro Core Duo (17-inch) 101 | MacBookPro2,1 102 | MacBook Pro Core 2 Duo (17-inch) 103 | MacBookPro2,2 104 | MacBook Pro Core 2 Duo (15-inch) 105 | MacBookPro3,1 106 | MacBook Pro Core 2 Duo (15-inch LED, Core 2 Duo) 107 | MacBookPro3,2 108 | MacBook Pro Core 2 Duo (17-inch HD, Core 2 Duo) 109 | MacBookPro4,1 110 | MacBook Pro (Core 2 Duo Feb 2008) 111 | MacBookPro5,1 112 | MacBook Pro Intel Core 2 Duo (aluminum unibody) 113 | MacBookPro5,2 114 | MacBook Pro Intel Core 2 Duo (aluminum unibody) 115 | MacBookPro5,3 116 | MacBook Pro Intel Core 2 Duo (aluminum unibody) 117 | MacBookPro5,4 118 | MacBook Pro Intel Core 2 Duo (aluminum unibody) 119 | MacBookPro5,5 120 | MacBook Pro Intel Core 2 Duo (aluminum unibody) 121 | MacBookPro6,1 122 | MacBook Pro Intel Core i5, Intel Core i7 (mid 2010) 123 | MacBookPro6,2 124 | MacBook Pro Intel Core i5, Intel Core i7 (mid 2010) 125 | MacBookPro7,1 126 | MacBook Pro Intel Core 2 Duo (mid 2010) 127 | MacBookPro8,1 128 | MacBook Pro Intel Core i5, Intel Core i7, 13" (early 2011) 129 | MacBookPro8,2 130 | MacBook Pro Intel Core i7, 15" (early 2011) 131 | MacBookPro8,3 132 | MacBook Pro Intel Core i7, 17" (early 2011) 133 | MacBookPro9,1 134 | MacBook Pro (15-inch, Mid 2012) 135 | MacBookPro9,2 136 | MacBook Pro (13-inch, Mid 2012) 137 | MacBookPro10,1 138 | MacBook Pro (Retina, Mid 2012) 139 | MacBookPro10,2 140 | MacBook Pro (Retina, 13-inch, Late 2012) 141 | MacBookPro11,1 142 | MacBook Pro (Retina, 13-inch, Late 2013) 143 | MacBookPro11,2 144 | MacBook Pro (Retina, 15-inch, Late 2013) 145 | MacBookPro11,3 146 | MacBook Pro (Retina, 15-inch, Late 2013) 147 | MacbookPro11,4 148 | MacBook Pro (Retina, 15-inch, Mid 2015) 149 | MacbookPro11,5 150 | MacBook Pro (Retina, 15-inch, Mid 2015) 151 | MacbookPro12,1  152 | MacBook Pro (Retina, 13-inch, Early 2015) 153 | Macmini1,1 154 | Mac Mini (Core Solo/Duo) 155 | Macmini2,1 156 | Mac mini Intel Core 157 | Macmini3,1 158 | Mac mini Intel Core 159 | Macmini4,1 160 | Mac mini Intel Core (Mid 2010) 161 | Macmini5,1 162 | Mac mini (Core i5, Mid 2011) 163 | Macmini5,2 164 | Mac mini (Core i5 or Core i7, Mid 2011) 165 | Macmini5,3 166 | Mac mini (Core i7, Server, Mid 2011) 167 | Macmini6,1 168 | Mac mini (Core i5, Late 2012) 169 | Macmini6,2 170 | Mac mini (Core i7, Normal or Server, Late 2012) 171 | Macmini7,1 172 | Mac mini (Core i5 or Core i7, Late 2014) 173 | MacPro1,1,Quad 174 | Mac Pro 175 | MacPro1,1 176 | Mac Pro (four-core) 177 | MacPro2,1 178 | Mac Pro (eight-core) 179 | MacPro3,1 180 | Mac Pro (January 2008 4- or 8- core "Harpertown") 181 | MacPro4,1 182 | Mac Pro (March 2009) 183 | MacPro5,1 184 | Mac Pro (2010 or 2012) 185 | MacPro6,1 186 | Mac Pro (Late 2013) 187 | PowerBook1,1 188 | PowerBook G3 189 | PowerBook2,1 190 | iBook G3 191 | PowerBook2,2 192 | iBook G3 (FireWire) 193 | PowerBook2,3 194 | iBook G3 195 | PowerBook2,4 196 | iBook G3 197 | PowerBook3,1 198 | PowerBook G3 (FireWire) 199 | PowerBook3,2 200 | PowerBook G4 201 | PowerBook3,3 202 | PowerBook G4 (Gigabit Ethernet) 203 | PowerBook3,4 204 | PowerBook G4 (DVI) 205 | PowerBook3,5 206 | PowerBook G4 (1GHz / 867MHz) 207 | PowerBook4,1 208 | iBook G3 (Dual USB, Late 2001) 209 | PowerBook4,2 210 | iBook G3 (16MB VRAM) 211 | PowerBook4,3 212 | iBook G3 Opaque 16MB VRAM, 32MB VRAM, Early 2003) 213 | PowerBook5,1 214 | PowerBook G4 (17 inch) 215 | PowerBook5,2 216 | PowerBook G4 (15 inch FW 800) 217 | PowerBook5,3 218 | PowerBook G4 (17-inch 1.33GHz) 219 | PowerBook5,4 220 | PowerBook G4 (15 inch 1.5/1.33GHz) 221 | PowerBook5,5 222 | PowerBook G4 (17-inch 1.5GHz) 223 | PowerBook5,6 224 | PowerBook G4 (15 inch 1.67GHz/1.5GHz) 225 | PowerBook5,7 226 | PowerBook G4 (17-inch 1.67GHz) 227 | PowerBook5,8 228 | PowerBook G4 (Double layer SD, 15 inch) 229 | PowerBook5,9 230 | PowerBook G4 (Double layer SD, 17 inch) 231 | PowerBook6,1 232 | PowerBook G4 (12 inch) 233 | PowerBook6,2 234 | PowerBook G4 (12 inch, DVI) 235 | PowerBook6,3 236 | iBook G4 237 | PowerBook6,4 238 | PowerBook G4 (12 inch 1.33GHz) 239 | PowerBook6,5 240 | iBook G4 (Early-Late 2004) 241 | PowerBook6,7 242 | iBook G4 (Mid 2005) 243 | PowerBook6,8 244 | PowerBook G4 (12 inch 1.5GHz) 245 | PowerMac1,1 246 | Power Macintosh G3 (Blue & White) 247 | PowerMac1,2 248 | Power Macintosh G4 (PCI Graphics) 249 | PowerMac2,1 250 | iMac G3 (Slot-loading CD-ROM) 251 | PowerMac2,2 252 | iMac G3 (Summer 2000) 253 | PowerMac3,1 254 | Power Macintosh G4 (AGP Graphics) 255 | PowerMac3,2 256 | Power Macintosh G4 (AGP Graphics) 257 | PowerMac3,3 258 | Power Macintosh G4 (Gigabit Ethernet) 259 | PowerMac3,4 260 | Power Macintosh G4 (Digital Audio) 261 | PowerMac3,5 262 | Power Macintosh G4 (Quick Silver) 263 | PowerMac3,6 264 | Power Macintosh G4 (Mirrored Drive Door) 265 | PowerMac4,1 266 | iMac G3 (Early/Summer 2001) 267 | PowerMac4,2 268 | iMac G4 (Flat Panel) 269 | PowerMac4,4 270 | eMac 271 | PowerMac4,5 272 | iMac G4 (17-inch Flat Panel) 273 | PowerMac5,1 274 | Power Macintosh G4 Cube 275 | PowerMac5,2 276 | Power Mac G4 Cube 277 | PowerMac6,1 278 | iMac G4 (USB 2.0) 279 | PowerMac6,3 280 | iMac G4 (20-inch Flat Panel) 281 | PowerMac6,4 282 | eMac (USB 2.0, 2005) 283 | PowerMac7,2 284 | Power Macintosh G5 285 | PowerMac7,3 286 | Power Macintosh G5 287 | PowerMac8,1 288 | iMac G5 289 | PowerMac8,2 290 | iMac G5 (Ambient Light Sensor) 291 | PowerMac9,1 292 | Power Macintosh G5 (Late 2005) 293 | PowerMac10,1 294 | Mac Mini G4 295 | PowerMac10,2 296 | Mac Mini (Late 2005) 297 | PowerMac11,2 298 | Power Macintosh G5 (Late 2005) 299 | PowerMac12,1 300 | iMac G5 (iSight) 301 | RackMac1,1 302 | Xserve G4 303 | RackMac1,2 304 | Xserve G4 (slot-loading, cluster node) 305 | RackMac3,1 306 | Xserve G5 307 | Xserve1,1 308 | Xserve (Intel Xeon) 309 | Xserve2,1 310 | Xserve (January 2008 quad-core) 311 | Xserve3,1 312 | Xserve (early 2009) 313 | 314 | 315 | -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/hr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/hr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /src/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/bearclaw.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 48; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 2543B08B1FC5AB2400A9F5E0 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2543B08A1FC5AB2400A9F5E0 /* Assets.xcassets */; }; 11 | 2543B08E1FC5DE6600A9F5E0 /* ScreenshotTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2543B08D1FC5DE6600A9F5E0 /* ScreenshotTool.swift */; }; 12 | 2543B0901FC5E19000A9F5E0 /* SettingsMenuController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2543B08F1FC5E19000A9F5E0 /* SettingsMenuController.swift */; }; 13 | 25804A7222CE031900C7E16C /* Sparkle.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 25804A7122CE031900C7E16C /* Sparkle.framework */; }; 14 | 25804A7322CE031A00C7E16C /* Sparkle.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 25804A7122CE031900C7E16C /* Sparkle.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 15 | 25979ECB1FC6DD4700565515 /* BearAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25979ECA1FC6DD4700565515 /* BearAction.swift */; }; 16 | 25979ECD1FC6FAB500565515 /* Credits.html in Resources */ = {isa = PBXBuildFile; fileRef = 25979ECC1FC6FAB500565515 /* Credits.html */; }; 17 | 259F06631FC559F800FD0806 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 259F06621FC559F800FD0806 /* AppDelegate.swift */; }; 18 | 259F066A1FC559F800FD0806 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 259F06681FC559F800FD0806 /* Main.storyboard */; }; 19 | 259F06731FC55BBC00FD0806 /* ClipperViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 259F06721FC55BBC00FD0806 /* ClipperViewController.swift */; }; 20 | 259F06751FC55D1300FD0806 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 259F06741FC55D1300FD0806 /* EventMonitor.swift */; }; 21 | 259F06771FC55F0200FD0806 /* BearExecutor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 259F06761FC55F0200FD0806 /* BearExecutor.swift */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXCopyFilesBuildPhase section */ 25 | 25979ED31FC7046B00565515 /* CopyFiles */ = { 26 | isa = PBXCopyFilesBuildPhase; 27 | buildActionMask = 2147483647; 28 | dstPath = ""; 29 | dstSubfolderSpec = 10; 30 | files = ( 31 | 25804A7322CE031A00C7E16C /* Sparkle.framework in CopyFiles */, 32 | ); 33 | runOnlyForDeploymentPostprocessing = 0; 34 | }; 35 | /* End PBXCopyFilesBuildPhase section */ 36 | 37 | /* Begin PBXFileReference section */ 38 | 2543B08A1FC5AB2400A9F5E0 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 39 | 2543B08D1FC5DE6600A9F5E0 /* ScreenshotTool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScreenshotTool.swift; sourceTree = ""; }; 40 | 2543B08F1FC5E19000A9F5E0 /* SettingsMenuController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsMenuController.swift; sourceTree = ""; }; 41 | 25804A7122CE031900C7E16C /* Sparkle.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Sparkle.framework; sourceTree = ""; }; 42 | 25979EC91FC6CD7800565515 /* bearclaw.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = bearclaw.entitlements; sourceTree = ""; }; 43 | 25979ECA1FC6DD4700565515 /* BearAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BearAction.swift; sourceTree = ""; }; 44 | 25979ECC1FC6FAB500565515 /* Credits.html */ = {isa = PBXFileReference; lastKnownFileType = text.html; path = Credits.html; sourceTree = ""; }; 45 | 259F065F1FC559F800FD0806 /* bearclaw.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = bearclaw.app; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | 259F06621FC559F800FD0806 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 47 | 259F06691FC559F800FD0806 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 48 | 259F066B1FC559F800FD0806 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 49 | 259F06721FC55BBC00FD0806 /* ClipperViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ClipperViewController.swift; sourceTree = ""; }; 50 | 259F06741FC55D1300FD0806 /* EventMonitor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventMonitor.swift; sourceTree = ""; }; 51 | 259F06761FC55F0200FD0806 /* BearExecutor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BearExecutor.swift; sourceTree = ""; }; 52 | /* End PBXFileReference section */ 53 | 54 | /* Begin PBXFrameworksBuildPhase section */ 55 | 259F065C1FC559F800FD0806 /* Frameworks */ = { 56 | isa = PBXFrameworksBuildPhase; 57 | buildActionMask = 2147483647; 58 | files = ( 59 | 25804A7222CE031900C7E16C /* Sparkle.framework in Frameworks */, 60 | ); 61 | runOnlyForDeploymentPostprocessing = 0; 62 | }; 63 | /* End PBXFrameworksBuildPhase section */ 64 | 65 | /* Begin PBXGroup section */ 66 | 2543B0851FC59D2400A9F5E0 /* Services */ = { 67 | isa = PBXGroup; 68 | children = ( 69 | 2DB2712E232801A3005D7916 /* BearService */, 70 | ); 71 | path = Services; 72 | sourceTree = ""; 73 | }; 74 | 2543B08C1FC5DE4C00A9F5E0 /* Utils */ = { 75 | isa = PBXGroup; 76 | children = ( 77 | 259F06741FC55D1300FD0806 /* EventMonitor.swift */, 78 | 2543B08D1FC5DE6600A9F5E0 /* ScreenshotTool.swift */, 79 | ); 80 | path = Utils; 81 | sourceTree = ""; 82 | }; 83 | 25979EC81FC6B17900565515 /* Controllers */ = { 84 | isa = PBXGroup; 85 | children = ( 86 | 259F06721FC55BBC00FD0806 /* ClipperViewController.swift */, 87 | 2543B08F1FC5E19000A9F5E0 /* SettingsMenuController.swift */, 88 | ); 89 | path = Controllers; 90 | sourceTree = ""; 91 | }; 92 | 25979ECE1FC7033F00565515 /* Frameworks */ = { 93 | isa = PBXGroup; 94 | children = ( 95 | 25804A7122CE031900C7E16C /* Sparkle.framework */, 96 | ); 97 | name = Frameworks; 98 | sourceTree = ""; 99 | }; 100 | 259F06561FC559F800FD0806 = { 101 | isa = PBXGroup; 102 | children = ( 103 | 259F06611FC559F800FD0806 /* bearclaw */, 104 | 259F06601FC559F800FD0806 /* Products */, 105 | 25979ECE1FC7033F00565515 /* Frameworks */, 106 | ); 107 | sourceTree = ""; 108 | }; 109 | 259F06601FC559F800FD0806 /* Products */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | 259F065F1FC559F800FD0806 /* bearclaw.app */, 113 | ); 114 | name = Products; 115 | sourceTree = ""; 116 | }; 117 | 259F06611FC559F800FD0806 /* bearclaw */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | 25979EC91FC6CD7800565515 /* bearclaw.entitlements */, 121 | 259F06621FC559F800FD0806 /* AppDelegate.swift */, 122 | 2543B08A1FC5AB2400A9F5E0 /* Assets.xcassets */, 123 | 2543B0851FC59D2400A9F5E0 /* Services */, 124 | 25979EC81FC6B17900565515 /* Controllers */, 125 | 259F066B1FC559F800FD0806 /* Info.plist */, 126 | 259F06681FC559F800FD0806 /* Main.storyboard */, 127 | 2543B08C1FC5DE4C00A9F5E0 /* Utils */, 128 | 25979ECC1FC6FAB500565515 /* Credits.html */, 129 | ); 130 | path = bearclaw; 131 | sourceTree = ""; 132 | }; 133 | 2DB2712E232801A3005D7916 /* BearService */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 259F06761FC55F0200FD0806 /* BearExecutor.swift */, 137 | 25979ECA1FC6DD4700565515 /* BearAction.swift */, 138 | ); 139 | path = BearService; 140 | sourceTree = ""; 141 | }; 142 | /* End PBXGroup section */ 143 | 144 | /* Begin PBXNativeTarget section */ 145 | 259F065E1FC559F800FD0806 /* bearclaw */ = { 146 | isa = PBXNativeTarget; 147 | buildConfigurationList = 259F066F1FC559F800FD0806 /* Build configuration list for PBXNativeTarget "bearclaw" */; 148 | buildPhases = ( 149 | 259F065B1FC559F800FD0806 /* Sources */, 150 | 259F065C1FC559F800FD0806 /* Frameworks */, 151 | 259F065D1FC559F800FD0806 /* Resources */, 152 | 25979ED31FC7046B00565515 /* CopyFiles */, 153 | ); 154 | buildRules = ( 155 | ); 156 | dependencies = ( 157 | ); 158 | name = bearclaw; 159 | productName = bearclaw; 160 | productReference = 259F065F1FC559F800FD0806 /* bearclaw.app */; 161 | productType = "com.apple.product-type.application"; 162 | }; 163 | /* End PBXNativeTarget section */ 164 | 165 | /* Begin PBXProject section */ 166 | 259F06571FC559F800FD0806 /* Project object */ = { 167 | isa = PBXProject; 168 | attributes = { 169 | LastSwiftUpdateCheck = 0910; 170 | LastUpgradeCheck = 1000; 171 | ORGANIZATIONNAME = Savjee; 172 | TargetAttributes = { 173 | 259F065E1FC559F800FD0806 = { 174 | CreatedOnToolsVersion = 9.1; 175 | LastSwiftMigration = 1000; 176 | ProvisioningStyle = Automatic; 177 | SystemCapabilities = { 178 | com.apple.HardenedRuntime = { 179 | enabled = 0; 180 | }; 181 | com.apple.Sandbox = { 182 | enabled = 0; 183 | }; 184 | }; 185 | }; 186 | }; 187 | }; 188 | buildConfigurationList = 259F065A1FC559F800FD0806 /* Build configuration list for PBXProject "bearclaw" */; 189 | compatibilityVersion = "Xcode 8.0"; 190 | developmentRegion = en; 191 | hasScannedForEncodings = 0; 192 | knownRegions = ( 193 | en, 194 | Base, 195 | ); 196 | mainGroup = 259F06561FC559F800FD0806; 197 | productRefGroup = 259F06601FC559F800FD0806 /* Products */; 198 | projectDirPath = ""; 199 | projectRoot = ""; 200 | targets = ( 201 | 259F065E1FC559F800FD0806 /* bearclaw */, 202 | ); 203 | }; 204 | /* End PBXProject section */ 205 | 206 | /* Begin PBXResourcesBuildPhase section */ 207 | 259F065D1FC559F800FD0806 /* Resources */ = { 208 | isa = PBXResourcesBuildPhase; 209 | buildActionMask = 2147483647; 210 | files = ( 211 | 2543B08B1FC5AB2400A9F5E0 /* Assets.xcassets in Resources */, 212 | 25979ECD1FC6FAB500565515 /* Credits.html in Resources */, 213 | 259F066A1FC559F800FD0806 /* Main.storyboard in Resources */, 214 | ); 215 | runOnlyForDeploymentPostprocessing = 0; 216 | }; 217 | /* End PBXResourcesBuildPhase section */ 218 | 219 | /* Begin PBXSourcesBuildPhase section */ 220 | 259F065B1FC559F800FD0806 /* Sources */ = { 221 | isa = PBXSourcesBuildPhase; 222 | buildActionMask = 2147483647; 223 | files = ( 224 | 259F06731FC55BBC00FD0806 /* ClipperViewController.swift in Sources */, 225 | 25979ECB1FC6DD4700565515 /* BearAction.swift in Sources */, 226 | 2543B0901FC5E19000A9F5E0 /* SettingsMenuController.swift in Sources */, 227 | 259F06771FC55F0200FD0806 /* BearExecutor.swift in Sources */, 228 | 2543B08E1FC5DE6600A9F5E0 /* ScreenshotTool.swift in Sources */, 229 | 259F06631FC559F800FD0806 /* AppDelegate.swift in Sources */, 230 | 259F06751FC55D1300FD0806 /* EventMonitor.swift in Sources */, 231 | ); 232 | runOnlyForDeploymentPostprocessing = 0; 233 | }; 234 | /* End PBXSourcesBuildPhase section */ 235 | 236 | /* Begin PBXVariantGroup section */ 237 | 259F06681FC559F800FD0806 /* Main.storyboard */ = { 238 | isa = PBXVariantGroup; 239 | children = ( 240 | 259F06691FC559F800FD0806 /* Base */, 241 | ); 242 | name = Main.storyboard; 243 | sourceTree = ""; 244 | }; 245 | /* End PBXVariantGroup section */ 246 | 247 | /* Begin XCBuildConfiguration section */ 248 | 259F066D1FC559F800FD0806 /* Debug */ = { 249 | isa = XCBuildConfiguration; 250 | buildSettings = { 251 | ALWAYS_SEARCH_USER_PATHS = NO; 252 | CLANG_ANALYZER_NONNULL = YES; 253 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 254 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 255 | CLANG_CXX_LIBRARY = "libc++"; 256 | CLANG_ENABLE_MODULES = YES; 257 | CLANG_ENABLE_OBJC_ARC = YES; 258 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 259 | CLANG_WARN_BOOL_CONVERSION = YES; 260 | CLANG_WARN_COMMA = YES; 261 | CLANG_WARN_CONSTANT_CONVERSION = YES; 262 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 263 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 264 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 265 | CLANG_WARN_EMPTY_BODY = YES; 266 | CLANG_WARN_ENUM_CONVERSION = YES; 267 | CLANG_WARN_INFINITE_RECURSION = YES; 268 | CLANG_WARN_INT_CONVERSION = YES; 269 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 270 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 271 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 272 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 273 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 274 | CLANG_WARN_STRICT_PROTOTYPES = YES; 275 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 276 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 277 | CLANG_WARN_UNREACHABLE_CODE = YES; 278 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 279 | CODE_SIGN_IDENTITY = "Mac Developer"; 280 | COPY_PHASE_STRIP = NO; 281 | DEBUG_INFORMATION_FORMAT = dwarf; 282 | ENABLE_STRICT_OBJC_MSGSEND = YES; 283 | ENABLE_TESTABILITY = YES; 284 | GCC_C_LANGUAGE_STANDARD = gnu11; 285 | GCC_DYNAMIC_NO_PIC = NO; 286 | GCC_NO_COMMON_BLOCKS = YES; 287 | GCC_OPTIMIZATION_LEVEL = 0; 288 | GCC_PREPROCESSOR_DEFINITIONS = ( 289 | "DEBUG=1", 290 | "$(inherited)", 291 | ); 292 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 293 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 294 | GCC_WARN_UNDECLARED_SELECTOR = YES; 295 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 296 | GCC_WARN_UNUSED_FUNCTION = YES; 297 | GCC_WARN_UNUSED_VARIABLE = YES; 298 | MACOSX_DEPLOYMENT_TARGET = 10.13; 299 | MTL_ENABLE_DEBUG_INFO = YES; 300 | ONLY_ACTIVE_ARCH = YES; 301 | SDKROOT = macosx; 302 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 303 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 304 | }; 305 | name = Debug; 306 | }; 307 | 259F066E1FC559F800FD0806 /* Release */ = { 308 | isa = XCBuildConfiguration; 309 | buildSettings = { 310 | ALWAYS_SEARCH_USER_PATHS = NO; 311 | CLANG_ANALYZER_NONNULL = YES; 312 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 313 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 314 | CLANG_CXX_LIBRARY = "libc++"; 315 | CLANG_ENABLE_MODULES = YES; 316 | CLANG_ENABLE_OBJC_ARC = YES; 317 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 318 | CLANG_WARN_BOOL_CONVERSION = YES; 319 | CLANG_WARN_COMMA = YES; 320 | CLANG_WARN_CONSTANT_CONVERSION = YES; 321 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 322 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 323 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 324 | CLANG_WARN_EMPTY_BODY = YES; 325 | CLANG_WARN_ENUM_CONVERSION = YES; 326 | CLANG_WARN_INFINITE_RECURSION = YES; 327 | CLANG_WARN_INT_CONVERSION = YES; 328 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 329 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 330 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 331 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 332 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 333 | CLANG_WARN_STRICT_PROTOTYPES = YES; 334 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 335 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 336 | CLANG_WARN_UNREACHABLE_CODE = YES; 337 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 338 | CODE_SIGN_IDENTITY = "Mac Developer"; 339 | COPY_PHASE_STRIP = NO; 340 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 341 | ENABLE_NS_ASSERTIONS = NO; 342 | ENABLE_STRICT_OBJC_MSGSEND = YES; 343 | GCC_C_LANGUAGE_STANDARD = gnu11; 344 | GCC_NO_COMMON_BLOCKS = YES; 345 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 346 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 347 | GCC_WARN_UNDECLARED_SELECTOR = YES; 348 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 349 | GCC_WARN_UNUSED_FUNCTION = YES; 350 | GCC_WARN_UNUSED_VARIABLE = YES; 351 | MACOSX_DEPLOYMENT_TARGET = 10.13; 352 | MTL_ENABLE_DEBUG_INFO = NO; 353 | SDKROOT = macosx; 354 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 355 | }; 356 | name = Release; 357 | }; 358 | 259F06701FC559F800FD0806 /* Debug */ = { 359 | isa = XCBuildConfiguration; 360 | buildSettings = { 361 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 362 | CODE_SIGN_STYLE = Automatic; 363 | COMBINE_HIDPI_IMAGES = YES; 364 | DEVELOPMENT_TEAM = KN76H2AC7V; 365 | FRAMEWORK_SEARCH_PATHS = ( 366 | "$(inherited)", 367 | "$(PROJECT_DIR)", 368 | ); 369 | INFOPLIST_FILE = bearclaw/Info.plist; 370 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; 371 | MACOSX_DEPLOYMENT_TARGET = 10.10; 372 | PRODUCT_BUNDLE_IDENTIFIER = be.savjee.bearclaw; 373 | PRODUCT_NAME = "$(TARGET_NAME)"; 374 | SWIFT_VERSION = 4.2; 375 | }; 376 | name = Debug; 377 | }; 378 | 259F06711FC559F800FD0806 /* Release */ = { 379 | isa = XCBuildConfiguration; 380 | buildSettings = { 381 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 382 | CODE_SIGN_STYLE = Automatic; 383 | COMBINE_HIDPI_IMAGES = YES; 384 | DEVELOPMENT_TEAM = KN76H2AC7V; 385 | FRAMEWORK_SEARCH_PATHS = ( 386 | "$(inherited)", 387 | "$(PROJECT_DIR)", 388 | ); 389 | INFOPLIST_FILE = bearclaw/Info.plist; 390 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; 391 | MACOSX_DEPLOYMENT_TARGET = 10.10; 392 | PRODUCT_BUNDLE_IDENTIFIER = be.savjee.bearclaw; 393 | PRODUCT_NAME = "$(TARGET_NAME)"; 394 | SWIFT_VERSION = 4.2; 395 | }; 396 | name = Release; 397 | }; 398 | /* End XCBuildConfiguration section */ 399 | 400 | /* Begin XCConfigurationList section */ 401 | 259F065A1FC559F800FD0806 /* Build configuration list for PBXProject "bearclaw" */ = { 402 | isa = XCConfigurationList; 403 | buildConfigurations = ( 404 | 259F066D1FC559F800FD0806 /* Debug */, 405 | 259F066E1FC559F800FD0806 /* Release */, 406 | ); 407 | defaultConfigurationIsVisible = 0; 408 | defaultConfigurationName = Release; 409 | }; 410 | 259F066F1FC559F800FD0806 /* Build configuration list for PBXNativeTarget "bearclaw" */ = { 411 | isa = XCConfigurationList; 412 | buildConfigurations = ( 413 | 259F06701FC559F800FD0806 /* Debug */, 414 | 259F06711FC559F800FD0806 /* Release */, 415 | ); 416 | defaultConfigurationIsVisible = 0; 417 | defaultConfigurationName = Release; 418 | }; 419 | /* End XCConfigurationList section */ 420 | }; 421 | rootObject = 259F06571FC559F800FD0806 /* Project object */; 422 | } 423 | -------------------------------------------------------------------------------- /src/bearclaw.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/bearclaw.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/bearclaw/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // bearclaw 4 | // 5 | // Created by Xavier Decuyper on 22/11/2017. 6 | // Copyright © 2017 Savjee. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | @NSApplicationMain 12 | class AppDelegate: NSObject, NSApplicationDelegate { 13 | 14 | let statusItem = NSStatusBar.system.statusItem(withLength:NSStatusItem.squareLength) 15 | let popover = NSPopover() 16 | var eventMonitor: EventMonitor? 17 | static var popoverInstance: NSPopover = NSPopover() 18 | 19 | func applicationDidFinishLaunching(_ aNotification: Notification) { 20 | if let button = statusItem.button { 21 | button.image = NSImage(named:"menubarIcon") 22 | button.action = #selector(togglePopover(_:)) 23 | } 24 | 25 | popover.animates = false 26 | popover.contentViewController = ClipperViewController.freshController() 27 | AppDelegate.popoverInstance = popover // Keep a reference 28 | 29 | eventMonitor = EventMonitor(mask: [.leftMouseDown, .rightMouseDown]) { [weak self] event in 30 | if let strongSelf = self, strongSelf.popover.isShown { 31 | strongSelf.closePopover(sender: event) 32 | } 33 | } 34 | } 35 | 36 | func applicationWillTerminate(_ aNotification: Notification) { 37 | // Insert code here to tear down your application 38 | } 39 | 40 | @objc func togglePopover(_ sender: Any?) { 41 | if popover.isShown { 42 | closePopover(sender: sender) 43 | } else { 44 | showPopover(sender: sender) 45 | } 46 | } 47 | 48 | func showPopover(sender: Any?) { 49 | if let button = statusItem.button { 50 | popover.show(relativeTo: button.bounds, of: button, preferredEdge: NSRectEdge.minY) 51 | } 52 | 53 | eventMonitor?.start() 54 | } 55 | 56 | func closePopover(sender: Any?) { 57 | popover.performClose(sender) 58 | eventMonitor?.stop() 59 | } 60 | 61 | } 62 | 63 | -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "16x16", 5 | "idiom" : "mac", 6 | "filename" : "logo-bearclaw-16.png", 7 | "scale" : "1x" 8 | }, 9 | { 10 | "size" : "16x16", 11 | "idiom" : "mac", 12 | "filename" : "logo-bearclaw-33.png", 13 | "scale" : "2x" 14 | }, 15 | { 16 | "size" : "32x32", 17 | "idiom" : "mac", 18 | "filename" : "logo-bearclaw-32.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "32x32", 23 | "idiom" : "mac", 24 | "filename" : "logo-bearclaw-64.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "128x128", 29 | "idiom" : "mac", 30 | "filename" : "logo-bearclaw-128.png", 31 | "scale" : "1x" 32 | }, 33 | { 34 | "size" : "128x128", 35 | "idiom" : "mac", 36 | "filename" : "logo-bearclaw-257.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "256x256", 41 | "idiom" : "mac", 42 | "filename" : "logo-bearclaw-256.png", 43 | "scale" : "1x" 44 | }, 45 | { 46 | "size" : "256x256", 47 | "idiom" : "mac", 48 | "filename" : "logo-bearclaw-513.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "512x512", 53 | "idiom" : "mac", 54 | "filename" : "logo-bearclaw-512.png", 55 | "scale" : "1x" 56 | }, 57 | { 58 | "size" : "512x512", 59 | "idiom" : "mac", 60 | "filename" : "logo-bearclaw-1024.png", 61 | "scale" : "2x" 62 | } 63 | ], 64 | "info" : { 65 | "version" : 1, 66 | "author" : "xcode" 67 | } 68 | } -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-1024.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-128.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-16.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-256.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-257.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-32.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-33.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-512.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-513.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/AppIcon.appiconset/logo-bearclaw-64.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/fullScreenshotIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "mac", 5 | "filename" : "icon-screenshot.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "mac", 10 | "filename" : "icon-screenshot@2x.png", 11 | "scale" : "2x" 12 | } 13 | ], 14 | "info" : { 15 | "version" : 1, 16 | "author" : "xcode" 17 | }, 18 | "properties" : { 19 | "template-rendering-intent" : "template" 20 | } 21 | } -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/fullScreenshotIcon.imageset/icon-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/fullScreenshotIcon.imageset/icon-screenshot.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/fullScreenshotIcon.imageset/icon-screenshot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/fullScreenshotIcon.imageset/icon-screenshot@2x.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/menubarIcon.imageset/Artboard 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/menubarIcon.imageset/Artboard 3.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/menubarIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Artboard 3.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/partialScreenshotIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "mac", 5 | "filename" : "icon-screenshot-part.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "mac", 10 | "filename" : "icon-screenshot-part@2x.png", 11 | "scale" : "2x" 12 | } 13 | ], 14 | "info" : { 15 | "version" : 1, 16 | "author" : "xcode" 17 | }, 18 | "properties" : { 19 | "template-rendering-intent" : "template" 20 | } 21 | } -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/partialScreenshotIcon.imageset/icon-screenshot-part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/partialScreenshotIcon.imageset/icon-screenshot-part.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/partialScreenshotIcon.imageset/icon-screenshot-part@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/partialScreenshotIcon.imageset/icon-screenshot-part@2x.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/settingsIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "mac", 5 | "filename" : "icon-settings.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "mac", 10 | "filename" : "icon-settings@2x.png", 11 | "scale" : "2x" 12 | } 13 | ], 14 | "info" : { 15 | "version" : 1, 16 | "author" : "xcode" 17 | }, 18 | "properties" : { 19 | "template-rendering-intent" : "template" 20 | } 21 | } -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/settingsIcon.imageset/icon-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/settingsIcon.imageset/icon-settings.png -------------------------------------------------------------------------------- /src/bearclaw/Assets.xcassets/settingsIcon.imageset/icon-settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/bearclaw/d43ac296a605cf066cd9dbc8fb63f006de3e440e/src/bearclaw/Assets.xcassets/settingsIcon.imageset/icon-settings@2x.png -------------------------------------------------------------------------------- /src/bearclaw/Controllers/ClipperViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ClipperViewController.swift 3 | // bearclaw 4 | // 5 | // Created by Xavier Decuyper on 22/11/2017. 6 | // Copyright © 2017 Savjee. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class ClipperViewController: NSViewController { 12 | 13 | @IBOutlet var textView: NSTextView! 14 | @IBOutlet var settingsMenu: NSMenu! 15 | 16 | override func viewDidLoad() { 17 | super.viewDidLoad() 18 | 19 | // Style the textView 20 | textView.font = NSFont(name: "Avenir Next", size: 15) 21 | textView.textContainerInset = NSMakeSize(10, 10) 22 | 23 | // Make sure that the text color is dynamically set by the system 24 | // This is only required for older macOS versions. 25 | textView.textColor = NSColor.headerTextColor; 26 | 27 | // Focus directly on the textview 28 | textView.window?.makeFirstResponder(textView) 29 | 30 | NSEvent.addLocalMonitorForEvents(matching: NSEvent.EventTypeMask.keyDown, handler: handleKeyboardEvent(_:)) 31 | } 32 | 33 | override func viewDidAppear() { 34 | NSApplication.shared.activate(ignoringOtherApps: true) 35 | } 36 | 37 | @IBAction func clickedOnFullScreenshotButton(_ sender: NSButton) { 38 | AppDelegate.popoverInstance.close() 39 | 40 | let noteTitle = generateNameForScreenshot() 41 | let base64Image = ScreenshotTool().captureFullscreen() 42 | guard !base64Image.isEmpty else { return } 43 | 44 | let file = FileParameter(fileContent: base64Image, 45 | filename: noteTitle) 46 | let action = BearAction.createNote(title: noteTitle, text: nil, file: file) 47 | BearExecutor().execute(action) 48 | } 49 | 50 | @IBAction func clickedOnSettingsButton(_ sender: NSButton) { 51 | settingsMenu.popUp(positioning: settingsMenu.item(at: 0), at: NSEvent.mouseLocation, in: nil) 52 | } 53 | 54 | @IBAction func clickedOnPartialScreenshotButton(_ sender: NSButton) { 55 | AppDelegate.popoverInstance.close() 56 | 57 | let noteTitle = generateNameForScreenshot() 58 | let base64Image = ScreenshotTool().captureUserSelection() 59 | guard !base64Image.isEmpty else { return } 60 | 61 | let file = FileParameter(fileContent: base64Image, 62 | filename: noteTitle) 63 | let action = BearAction.createNote(title: noteTitle, text: nil, file: file) 64 | BearExecutor().execute(action) 65 | } 66 | 67 | @IBAction func clickedOnSaveToBear(_ sender: Any) { 68 | AppDelegate.popoverInstance.close() 69 | 70 | let action = BearAction.createNote(title: nil, text: self.textView.string, file: nil) 71 | BearExecutor().execute(action) 72 | 73 | // Reset the textView 74 | self.textView.textStorage?.mutableString.setString("") 75 | } 76 | 77 | 78 | func generateNameForScreenshot() -> String{ 79 | let dateFormatter = DateFormatter() 80 | dateFormatter.dateFormat = "yyyy-MM-dd_HH.mm.ss" 81 | 82 | return "Screenshot_" + dateFormatter.string(from: Date()) + ".png" 83 | } 84 | 85 | func handleKeyboardEvent(_ event: NSEvent) -> NSEvent{ 86 | 87 | // cmd + return -> save 88 | if event.modifierFlags.contains(NSEvent.ModifierFlags.command){ 89 | if event.keyCode == 36{ 90 | clickedOnSaveToBear("") 91 | } 92 | } 93 | 94 | // Escape key 95 | if event.keyCode == 53{ 96 | AppDelegate.popoverInstance.close() 97 | } 98 | 99 | return event 100 | } 101 | } 102 | 103 | extension ClipperViewController { 104 | // MARK: Storyboard instantiation 105 | static func freshController() -> ClipperViewController { 106 | //1. 107 | let storyboard = NSStoryboard(name: "Main", bundle: nil) 108 | //2. 109 | let identifier = "ClipperViewController" 110 | //3. 111 | guard let viewcontroller = storyboard.instantiateController(withIdentifier: identifier) as? ClipperViewController else { 112 | fatalError("Why cant i find QuotesViewController? - Check Main.storyboard") 113 | } 114 | 115 | return viewcontroller 116 | } 117 | } 118 | -------------------------------------------------------------------------------- /src/bearclaw/Controllers/SettingsMenuController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SettingsMenuController.swift 3 | // bearclaw 4 | // 5 | // Created by Xavier Decuyper on 22/11/2017. 6 | // Copyright © 2017 Savjee. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class SettingsMenuController : NSMenu{ 12 | 13 | @IBAction func quitItemClicked(_ sender: NSMenuItem) { 14 | NSApplication.shared.terminate(self) 15 | } 16 | 17 | 18 | @IBAction func aboutItemClicked(_ sender: NSMenuItem) { 19 | AppDelegate.popoverInstance.close() 20 | NSApplication.shared.orderFrontStandardAboutPanel(sender) 21 | NSApplication.shared.activate(ignoringOtherApps: true) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/bearclaw/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 | Have feedback or issue's? 5 |
6 | Open an issue on GitHub 7 |

8 |
9 | 10 | -------------------------------------------------------------------------------- /src/bearclaw/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleDisplayName 8 | 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIconFile 12 | 13 | CFBundleIdentifier 14 | $(PRODUCT_BUNDLE_IDENTIFIER) 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | $(PRODUCT_NAME) 19 | CFBundlePackageType 20 | APPL 21 | CFBundleShortVersionString 22 | 1.1.1 23 | CFBundleVersion 24 | 1.1.1 25 | ITSAppUsesNonExemptEncryption 26 | 27 | LSApplicationCategoryType 28 | public.app-category.productivity 29 | LSMinimumSystemVersion 30 | $(MACOSX_DEPLOYMENT_TARGET) 31 | LSUIElement 32 | 33 | NSHumanReadableCopyright 34 | Copyright © 2017 Savjee. All rights reserved. 35 | NSMainStoryboardFile 36 | Main 37 | NSPrincipalClass 38 | NSApplication 39 | SUEnableAutomaticChecks 40 | 41 | SUFeedURL 42 | https://savjee.github.io/bearclaw/updates/appcast.xml 43 | 44 | 45 | -------------------------------------------------------------------------------- /src/bearclaw/Services/BearService/BearAction.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BearAction.swift 3 | // bearclaw 4 | // 5 | // Created by Xavier Decuyper on 23/11/2017. 6 | // Copyright © 2017 Savjee. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct FileParameter { 12 | let fileContent: String 13 | let filename: String 14 | } 15 | 16 | enum BearAction { 17 | case addFile 18 | case createNote(title: String?, text: String?, file: FileParameter? ) 19 | } 20 | 21 | extension BearAction { 22 | func toPathComponent() -> String { 23 | switch self { 24 | case .addFile: 25 | return "/add-file" 26 | case .createNote: 27 | return "/create" 28 | } 29 | } 30 | 31 | func toURL() -> URL? { 32 | var urlComponents = URLComponents() 33 | var queryParameters: [URLQueryItem] = [] 34 | 35 | urlComponents.scheme = "bear" 36 | urlComponents.host = "x-callback-url" 37 | urlComponents.path = toPathComponent() 38 | 39 | switch self { 40 | case .addFile: 41 | break 42 | case .createNote(let title, let text, let file): 43 | if let title = title { 44 | queryParameters.append(URLQueryItem(name: "title", value: title)) 45 | } 46 | if let text = text { 47 | queryParameters.append(URLQueryItem(name: "text", value: text)) 48 | } 49 | if let file = file { 50 | queryParameters.append(URLQueryItem(name: "file", value: file.fileContent)) 51 | queryParameters.append(URLQueryItem(name: "filename", value: file.filename)) 52 | } 53 | } 54 | urlComponents.queryItems = queryParameters 55 | return urlComponents.url 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/bearclaw/Services/BearService/BearExecutor.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BearCaller.swift 3 | // bearclaw 4 | // 5 | // Created by Xavier Decuyper on 22/11/2017. 6 | // Copyright © 2017 Savjee. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import Cocoa 11 | 12 | class BearExecutor{ 13 | func execute(_ action: BearAction) { 14 | if let url = action.toURL() { 15 | NSWorkspace.shared.open(url) 16 | } else { 17 | print("No URL to process") 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/bearclaw/Utils/EventMonitor.swift: -------------------------------------------------------------------------------- 1 | // 2 | // EventMonitor.swift 3 | // bearclaw 4 | // 5 | // Created by Xavier Decuyper on 22/11/2017. 6 | // Copyright © 2017 Savjee. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | public class EventMonitor { 12 | private var monitor: Any? 13 | private let mask: NSEvent.EventTypeMask 14 | private let handler: (NSEvent?) -> Void 15 | 16 | public init(mask: NSEvent.EventTypeMask, handler: @escaping (NSEvent?) -> Void) { 17 | self.mask = mask 18 | self.handler = handler 19 | } 20 | 21 | deinit { 22 | stop() 23 | } 24 | 25 | public func start() { 26 | monitor = NSEvent.addGlobalMonitorForEvents(matching: mask, handler: handler) 27 | } 28 | 29 | public func stop() { 30 | if monitor != nil { 31 | NSEvent.removeMonitor(monitor!) 32 | monitor = nil 33 | } 34 | } 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/bearclaw/Utils/ScreenshotTool.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ScreenshotCapture.swift 3 | // bearclaw 4 | // 5 | // Created by Xavier Decuyper on 22/11/2017. 6 | // Copyright © 2017 Savjee. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import Cocoa 11 | 12 | class ScreenshotTool{ 13 | 14 | 15 | public func captureFullscreen() -> String { 16 | let displayID = CGMainDisplayID() 17 | let imageRef = CGDisplayCreateImage(displayID)! 18 | let bitmapRep = NSBitmapImageRep(cgImage: imageRef) 19 | 20 | return getBase64(bitmapRepresentation: bitmapRep) 21 | } 22 | 23 | public func captureUserSelection() -> String { 24 | 25 | let task = Process() 26 | task.launchPath = "/usr/bin/env" 27 | task.arguments = [ 28 | "screencapture", 29 | "-s", // only allow mouse selection mode 30 | "-x", // do not play sounds 31 | "-c" // force screen capture to go to the clipboard 32 | ] 33 | task.launch() 34 | task.waitUntilExit() 35 | 36 | if !task.isRunning { 37 | let status = task.terminationStatus 38 | 39 | if status == 0 { 40 | let img = NSImage(pasteboard: NSPasteboard.general) 41 | let rep = NSBitmapImageRep(data: (img?.tiffRepresentation)!)! 42 | 43 | 44 | return getBase64(bitmapRepresentation: rep) 45 | } 46 | } 47 | 48 | return "" 49 | } 50 | 51 | /** 52 | * Returns the base64 representation of an image (PNG) as String 53 | */ 54 | private func getBase64(bitmapRepresentation: NSBitmapImageRep) -> String { 55 | return (bitmapRepresentation.representation(using: NSBitmapImageRep.FileType.png, properties: [:])?.base64EncodedString())! 56 | } 57 | 58 | } 59 | -------------------------------------------------------------------------------- /src/bearclaw/bearclaw.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | --------------------------------------------------------------------------------