├── .gitattributes ├── .gitignore ├── LICENSE ├── LauncherApplication ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Info.plist └── LauncherApplication.entitlements ├── README.md ├── Scrapple.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── Scrapple.xcscheme │ └── ShareToScrapbook.xcscheme ├── Scrapple ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── scrapbook 1 copy 2-1.png │ │ ├── scrapbook 1 copy 2.png │ │ ├── scrapbook 1 copy 3.png │ │ ├── scrapbook 1 copy 4.png │ │ ├── scrapbook 1 copy 5-1.png │ │ ├── scrapbook 1 copy 5.png │ │ ├── scrapbook 1 copy 6-1.png │ │ ├── scrapbook 1 copy 6.png │ │ ├── scrapbook 1 copy 7.png │ │ └── scrapbook 1 copy.png │ ├── Contents.json │ └── Icon.imageset │ │ ├── Contents.json │ │ └── scrappy 3 copy 2.png ├── Base.lproj │ └── Main.storyboard ├── Extensions │ ├── EnvironmentKey+NSHostingWindow.swift │ ├── NSApplication+AppBuild.swift │ └── Scrapple-Bridging-Header.h ├── Info.plist ├── Models │ ├── OAuthToken.swift │ ├── Sayings.swift │ ├── Update.swift │ └── UserData.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Scrapple.entitlements ├── Support │ ├── AppDelegate.swift │ └── TouchBar.h └── Views │ ├── ContentView.swift │ ├── PreferencesView.swift │ ├── Support Views │ ├── ActivityIndicator.swift │ ├── PreferencesWindowController.swift │ ├── TextEditor.swift │ └── Tooltip.swift │ └── WelcomeView.swift ├── ShareToScrapbook ├── Base.lproj │ └── ShareViewController.xib ├── Info.plist ├── ShareToScrapbook.entitlements ├── ShareViewController.swift └── icon.icns └── 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 │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── 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 └── _CodeSignature │ └── CodeResources └── Current /.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-detectable=false 2 | *.h linguist-documentation=false 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## User settings 6 | xcuserdata/ 7 | 8 | ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 9 | *.xcscmblueprint 10 | *.xccheckout 11 | 12 | ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 13 | build/ 14 | DerivedData/ 15 | *.moved-aside 16 | *.pbxuser 17 | !default.pbxuser 18 | *.mode1v3 19 | !default.mode1v3 20 | *.mode2v3 21 | !default.mode2v3 22 | *.perspectivev3 23 | !default.perspectivev3 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | 28 | ## App packaging 29 | *.ipa 30 | *.dSYM.zip 31 | *.dSYM 32 | 33 | ## Playgrounds 34 | timeline.xctimeline 35 | playground.xcworkspace 36 | 37 | # Swift Package Manager 38 | # 39 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 40 | # Packages/ 41 | # Package.pins 42 | # Package.resolved 43 | # *.xcodeproj 44 | # 45 | # Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata 46 | # hence it is not needed unless you have added a package configuration file to your project 47 | # .swiftpm 48 | 49 | .build/ 50 | 51 | # CocoaPods 52 | # 53 | # We recommend against adding the Pods directory to your .gitignore. However 54 | # you should judge for yourself, the pros and cons are mentioned at: 55 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 56 | # 57 | # Pods/ 58 | # 59 | # Add this line if you want to avoid checking in source code from the Xcode workspace 60 | # *.xcworkspace 61 | 62 | # Carthage 63 | # 64 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 65 | # Carthage/Checkouts 66 | 67 | Carthage/Build/ 68 | 69 | # Accio dependency management 70 | Dependencies/ 71 | .accio/ 72 | 73 | # fastlane 74 | # 75 | # It is recommended to not store the screenshots in the git repo. 76 | # Instead, use fastlane to re-generate the screenshots whenever they are needed. 77 | # For more information about the recommended setup visit: 78 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 79 | 80 | fastlane/report.xml 81 | fastlane/Preview.html 82 | fastlane/screenshots/**/*.png 83 | fastlane/test_output 84 | 85 | # Code Injection 86 | # 87 | # After new code Injection tools there's a generated folder /iOSInjectionProject 88 | # https://github.com/johnno1962/injectionforxcode 89 | 90 | iOSInjectionProject/ 91 | 92 | .DS_Store 93 | /Design Templates + UI Elements.sketch 94 | /Scrapple Design.sketch 95 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /LauncherApplication/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // LauncherApplication 4 | // 5 | // Created by Linus Skucas on 2/7/21. 6 | // Copyright © 2021 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | extension Notification.Name { 12 | static let killLauncher = Notification.Name("killLauncher") 13 | } 14 | 15 | @NSApplicationMain 16 | class AppDelegate: NSObject { 17 | 18 | @objc func terminate() { 19 | NSApp.terminate(nil) 20 | } 21 | } 22 | 23 | extension AppDelegate: NSApplicationDelegate { 24 | 25 | func applicationDidFinishLaunching(_ aNotification: Notification) { 26 | 27 | let mainAppIdentifier = "sh.linus.Scrapple" 28 | let runningApps = NSWorkspace.shared.runningApplications 29 | let isRunning = !runningApps.filter { $0.bundleIdentifier == mainAppIdentifier }.isEmpty 30 | 31 | if !isRunning { 32 | DistributedNotificationCenter.default().addObserver(self, selector: #selector(self.terminate), name: .killLauncher, object: mainAppIdentifier) 33 | 34 | let path = Bundle.main.bundlePath as NSString 35 | var components = path.pathComponents 36 | components.removeLast() 37 | components.removeLast() 38 | components.removeLast() 39 | components.append("MacOS") 40 | components.append("Scrapple") 41 | 42 | let newPath = NSString.path(withComponents: components) 43 | 44 | NSWorkspace.shared.launchApplication(newPath) 45 | } 46 | else { 47 | self.terminate() 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /LauncherApplication/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /LauncherApplication/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "mac", 5 | "scale" : "1x", 6 | "size" : "16x16" 7 | }, 8 | { 9 | "idiom" : "mac", 10 | "scale" : "2x", 11 | "size" : "16x16" 12 | }, 13 | { 14 | "idiom" : "mac", 15 | "scale" : "1x", 16 | "size" : "32x32" 17 | }, 18 | { 19 | "idiom" : "mac", 20 | "scale" : "2x", 21 | "size" : "32x32" 22 | }, 23 | { 24 | "idiom" : "mac", 25 | "scale" : "1x", 26 | "size" : "128x128" 27 | }, 28 | { 29 | "idiom" : "mac", 30 | "scale" : "2x", 31 | "size" : "128x128" 32 | }, 33 | { 34 | "idiom" : "mac", 35 | "scale" : "1x", 36 | "size" : "256x256" 37 | }, 38 | { 39 | "idiom" : "mac", 40 | "scale" : "2x", 41 | "size" : "256x256" 42 | }, 43 | { 44 | "idiom" : "mac", 45 | "scale" : "1x", 46 | "size" : "512x512" 47 | }, 48 | { 49 | "idiom" : "mac", 50 | "scale" : "2x", 51 | "size" : "512x512" 52 | } 53 | ], 54 | "info" : { 55 | "author" : "xcode", 56 | "version" : 1 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /LauncherApplication/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /LauncherApplication/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /LauncherApplication/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleVersion 22 | 1 23 | LSBackgroundOnly 24 | 25 | LSMinimumSystemVersion 26 | $(MACOSX_DEPLOYMENT_TARGET) 27 | NSHumanReadableCopyright 28 | Copyright © 2021 Linus Skucas. All rights reserved. 29 | NSMainStoryboardFile 30 | Main 31 | NSPrincipalClass 32 | NSApplication 33 | 34 | 35 | -------------------------------------------------------------------------------- /LauncherApplication/LauncherApplication.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ![Scrapple app icon](https://raw.githubusercontent.com/LinusS1/Scrapple/master/Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook%201%20copy%204.png) Scrapple 2 | 3 | Post [Scrapbook](https://scrapbook.hackclub.com) updates right from your menu bar on your Mac! [Download now](https://github.com/LinusS1/Scrapple/releases) 4 | 5 | 6 | ## 🚀 Install 7 | 8 | ### 📦 Zip file 9 | 10 | 1. Download the zip file from the [releases page](https://github.com/LinusS1/Scrapple/releases) 11 | 2. Extract the app from the zip file 12 | 3. Drag the app to your `Applications` folder 13 | 14 | ### 🍻 Homebrew cask 15 | 16 | 1. Run `brew install --cask LinusS1/taps/scrapple` 17 | 18 | ## ✈️ Features 19 | - 🔌 Quick connecting with Slack: it opens the default broswer and has you sign into slack. Then through deep links, it is able to get it's authorization code. 20 | - 🚀 Easy sharing: from the menu bar you are able to type in the update, and select the file. 21 | - 🧨 Auto starting: Starts up when you login 22 | - :sparkles: Automatic updating: With Sparkle, you'll get a notification. 23 | - 🤡 Share files with the share sheet 24 | - 📚 And of course everything else: 25 | - ✅ Doesn't take up _any_ system resources 26 | - :lock: Privacy friendly 27 | - :apple: Signed and notarized. 28 | 29 | Speaking of updates here's the future 🕳: 30 | - ⏰ Reminder to keep your streak! 31 | - ± And a whole ton more.... 32 | 33 | -------------------------------------------------------------------------------- /Scrapple.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Scrapple.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Scrapple.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | PreviewsEnabled 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Scrapple.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- 1 | { 2 | "object": { 3 | "pins": [ 4 | { 5 | "package": "Core", 6 | "repositoryURL": "https://github.com/vapor/core.git", 7 | "state": { 8 | "branch": null, 9 | "revision": "1782c550512dc5a43d0bca405e28fc386d932bbf", 10 | "version": "3.10.0" 11 | } 12 | }, 13 | { 14 | "package": "Crypto", 15 | "repositoryURL": "https://github.com/vapor/crypto.git", 16 | "state": { 17 | "branch": null, 18 | "revision": "105c2f875588bf40dd24c00cef3644bf8e327770", 19 | "version": "3.4.1" 20 | } 21 | }, 22 | { 23 | "package": "HTTP", 24 | "repositoryURL": "https://github.com/vapor/http.git", 25 | "state": { 26 | "branch": null, 27 | "revision": "0464b715a4b59f54078bcf7a4b424767b03db5a5", 28 | "version": "3.4.0" 29 | } 30 | }, 31 | { 32 | "package": "SlackKit", 33 | "repositoryURL": "https://github.com/pvzig/SlackKit", 34 | "state": { 35 | "branch": null, 36 | "revision": "3089435da0c39caebea6037dce2c5bbb660a02b6", 37 | "version": "4.5.1" 38 | } 39 | }, 40 | { 41 | "package": "Starscream", 42 | "repositoryURL": "https://github.com/daltoniam/Starscream", 43 | "state": { 44 | "branch": null, 45 | "revision": "e6b65c6d9077ea48b4a7bdda8994a1d3c6969c8d", 46 | "version": "3.1.1" 47 | } 48 | }, 49 | { 50 | "package": "swift-nio", 51 | "repositoryURL": "https://github.com/apple/swift-nio.git", 52 | "state": { 53 | "branch": null, 54 | "revision": "8da5c5a4e6c5084c296b9f39dc54f00be146e0fa", 55 | "version": "1.14.2" 56 | } 57 | }, 58 | { 59 | "package": "swift-nio-ssl", 60 | "repositoryURL": "https://github.com/apple/swift-nio-ssl.git", 61 | "state": { 62 | "branch": null, 63 | "revision": "0f3999f3e3c359cc74480c292644c3419e44a12f", 64 | "version": "1.4.0" 65 | } 66 | }, 67 | { 68 | "package": "swift-nio-ssl-support", 69 | "repositoryURL": "https://github.com/apple/swift-nio-ssl-support.git", 70 | "state": { 71 | "branch": null, 72 | "revision": "c02eec4e0e6d351cd092938cf44195a8e669f555", 73 | "version": "1.0.0" 74 | } 75 | }, 76 | { 77 | "package": "swift-nio-zlib-support", 78 | "repositoryURL": "https://github.com/apple/swift-nio-zlib-support.git", 79 | "state": { 80 | "branch": null, 81 | "revision": "37760e9a52030bb9011972c5213c3350fa9d41fd", 82 | "version": "1.0.0" 83 | } 84 | }, 85 | { 86 | "package": "Swifter", 87 | "repositoryURL": "https://github.com/httpswift/swifter.git", 88 | "state": { 89 | "branch": null, 90 | "revision": "8b5afb48ae64d4f729f0489ddcfe09c62b9c3687", 91 | "version": "1.4.7" 92 | } 93 | }, 94 | { 95 | "package": "WebSocket", 96 | "repositoryURL": "https://github.com/vapor/websocket", 97 | "state": { 98 | "branch": null, 99 | "revision": "d85e5b6dce4d04065865f77385fc3324f98178f6", 100 | "version": "1.1.2" 101 | } 102 | } 103 | ] 104 | }, 105 | "version": 1 106 | } 107 | -------------------------------------------------------------------------------- /Scrapple.xcodeproj/xcshareddata/xcschemes/Scrapple.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 45 | 51 | 52 | 53 | 54 | 60 | 62 | 68 | 69 | 70 | 71 | 73 | 74 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /Scrapple.xcodeproj/xcshareddata/xcschemes/ShareToScrapbook.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 6 | 9 | 10 | 16 | 22 | 23 | 24 | 30 | 36 | 37 | 38 | 39 | 40 | 45 | 46 | 47 | 48 | 60 | 64 | 65 | 66 | 72 | 73 | 74 | 75 | 82 | 84 | 90 | 91 | 92 | 93 | 95 | 96 | 99 | 100 | 101 | -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "scrapbook 1 copy.png", 5 | "idiom" : "mac", 6 | "scale" : "1x", 7 | "size" : "16x16" 8 | }, 9 | { 10 | "filename" : "scrapbook 1 copy 2.png", 11 | "idiom" : "mac", 12 | "scale" : "2x", 13 | "size" : "16x16" 14 | }, 15 | { 16 | "filename" : "scrapbook 1 copy 2-1.png", 17 | "idiom" : "mac", 18 | "scale" : "1x", 19 | "size" : "32x32" 20 | }, 21 | { 22 | "filename" : "scrapbook 1 copy 3.png", 23 | "idiom" : "mac", 24 | "scale" : "2x", 25 | "size" : "32x32" 26 | }, 27 | { 28 | "filename" : "scrapbook 1 copy 4.png", 29 | "idiom" : "mac", 30 | "scale" : "1x", 31 | "size" : "128x128" 32 | }, 33 | { 34 | "filename" : "scrapbook 1 copy 5.png", 35 | "idiom" : "mac", 36 | "scale" : "2x", 37 | "size" : "128x128" 38 | }, 39 | { 40 | "filename" : "scrapbook 1 copy 5-1.png", 41 | "idiom" : "mac", 42 | "scale" : "1x", 43 | "size" : "256x256" 44 | }, 45 | { 46 | "filename" : "scrapbook 1 copy 6.png", 47 | "idiom" : "mac", 48 | "scale" : "2x", 49 | "size" : "256x256" 50 | }, 51 | { 52 | "filename" : "scrapbook 1 copy 6-1.png", 53 | "idiom" : "mac", 54 | "scale" : "1x", 55 | "size" : "512x512" 56 | }, 57 | { 58 | "filename" : "scrapbook 1 copy 7.png", 59 | "idiom" : "mac", 60 | "scale" : "2x", 61 | "size" : "512x512" 62 | } 63 | ], 64 | "info" : { 65 | "author" : "xcode", 66 | "version" : 1 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 2-1.png -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 2.png -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 3.png -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 4.png -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 5-1.png -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 5.png -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 6-1.png -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 6.png -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy 7.png -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Scrapple/Assets.xcassets/AppIcon.appiconset/scrapbook 1 copy.png -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/Icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "scrappy 3 copy 2.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true, 14 | "template-rendering-intent" : "template" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Scrapple/Assets.xcassets/Icon.imageset/scrappy 3 copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Scrapple/Assets.xcassets/Icon.imageset/scrappy 3 copy 2.png -------------------------------------------------------------------------------- /Scrapple/Extensions/EnvironmentKey+NSHostingWindow.swift: -------------------------------------------------------------------------------- 1 | // 2 | // EnvironmentKey+NSHostingWindow.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 8/20/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import SwiftUI 11 | 12 | struct HostingWindowKey: EnvironmentKey { 13 | typealias WrappedValue = NSWindow 14 | typealias Value = () -> WrappedValue? 15 | static let defaultValue: Self.Value = { nil } 16 | } 17 | 18 | extension EnvironmentValues { 19 | var hostingWindow: HostingWindowKey.Value { 20 | get { 21 | return self[HostingWindowKey.self] 22 | } 23 | set { 24 | self[HostingWindowKey.self] = newValue 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Scrapple/Extensions/NSApplication+AppBuild.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NSApp+AppBuild.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 8/18/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import AppKit 11 | 12 | extension NSApplication { 13 | static var appBuild: String? { 14 | return Bundle.main.infoDictionary?["CFBundleVersion"] as? String 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Scrapple/Extensions/Scrapple-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | #import "TouchBar.h" 6 | -------------------------------------------------------------------------------- /Scrapple/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 19 | CFBundleShortVersionString 20 | $(MARKETING_VERSION) 21 | CFBundleURLTypes 22 | 23 | 24 | CFBundleTypeRole 25 | Editor 26 | CFBundleURLName 27 | sh.linus.Scrapple 28 | CFBundleURLSchemes 29 | 30 | scrapple 31 | 32 | 33 | 34 | CFBundleVersion 35 | $(CURRENT_PROJECT_VERSION) 36 | LSApplicationCategoryType 37 | public.app-category.developer-tools 38 | LSMinimumSystemVersion 39 | $(MACOSX_DEPLOYMENT_TARGET) 40 | LSUIElement 41 | 42 | NSHumanReadableCopyright 43 | Copyright © 2020 Linus Skucas. All rights reserved. 44 | NSMainStoryboardFile 45 | Main 46 | NSPrincipalClass 47 | NSApplication 48 | NSSupportsAutomaticTermination 49 | 50 | NSSupportsSuddenTermination 51 | 52 | SUEnableAutomaticChecks 53 | 54 | SUFeedURL 55 | https://scrapple.pythonanywhere.com/static/appcast.xml 56 | SUPublicEDKey 57 | LAmHf+bPhs6FvPCCNqlhUQzwq2ja27asAjlvkogLBKY= 58 | SUScheduledCheckInterval 59 | 3600 60 | 61 | 62 | -------------------------------------------------------------------------------- /Scrapple/Models/OAuthToken.swift: -------------------------------------------------------------------------------- 1 | // 2 | // OAuthToken.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 8/2/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct OAuthToken { 12 | static let keychainAccount = "sh.linus.Scrapple" 13 | 14 | #if DEBUG 15 | static let teamId = "AZ73FT4DU9" 16 | #else 17 | static let teamId = "P6PV2R9443" 18 | #endif 19 | 20 | var oauthToken: String? { 21 | let query: [String: Any] = [kSecClass as String: kSecClassGenericPassword, 22 | kSecAttrAccount as String: Self.keychainAccount, 23 | kSecMatchLimit as String: kSecMatchLimitOne, 24 | kSecReturnAttributes as String: true, 25 | kSecAttrAccessGroup as String: "\(Self.teamId).sh.linus.Scrapple.shared", 26 | kSecReturnData as String: true] 27 | var item: CFTypeRef? 28 | let status = SecItemCopyMatching(query as CFDictionary, &item) 29 | guard status != errSecItemNotFound else { return nil } 30 | guard status == errSecSuccess else { return nil } 31 | guard let existingItem = item as? [String : Any], 32 | let passwordData = existingItem[kSecValueData as String] as? Data, 33 | let token = String(data: passwordData, encoding: String.Encoding.utf8) 34 | else { 35 | return nil 36 | } 37 | return token 38 | } 39 | 40 | static let shared = OAuthToken() 41 | 42 | func addToKeychain(name: String, token: String) throws { 43 | let password = token.data(using: String.Encoding.utf8)! 44 | let query: [String: Any] = [kSecClass as String: kSecClassGenericPassword, 45 | kSecAttrAccount as String: Self.keychainAccount, 46 | kSecAttrAccessGroup as String: "\(Self.teamId).sh.linus.Scrapple.shared", 47 | kSecValueData as String: password] 48 | let status = SecItemAdd(query as CFDictionary, nil) 49 | guard status == errSecSuccess else { throw KeychainError.unhandledError(status: status)} 50 | } 51 | 52 | func deleteFromKeychain() { 53 | let query: [String: Any] = [kSecClass as String: kSecClassGenericPassword, 54 | kSecAttrAccount as String: Self.keychainAccount, 55 | kSecMatchLimit as String: kSecMatchLimitOne] 56 | SecItemDelete(query as CFDictionary) 57 | } 58 | 59 | } 60 | 61 | enum KeychainError: Error { 62 | case noPassword 63 | case unexpectedPasswordData 64 | case unhandledError(status: OSStatus) 65 | } 66 | 67 | 68 | -------------------------------------------------------------------------------- /Scrapple/Models/Sayings.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Sayings.swift 3 | // ^ Don't ask about the name, I didn't know what to call it. 4 | // Scrapple 5 | // 6 | // Created by Linus Skucas on 8/12/20. 7 | // Copyright © 2020 Linus Skucas. All rights reserved. 8 | // 9 | 10 | import Foundation 11 | 12 | protocol Saying { 13 | static var status: String { get set } 14 | static var sayings: [String] { get set } 15 | } 16 | 17 | struct UpdateSuccessSaying: Saying { 18 | static var status: String = "Success!" 19 | static var sayings: [String] = ["You've just increased your virtual internet points!", "Your file has been uploaded 🚀", "Your sad little streak has been increased by the size of one."] 20 | } 21 | 22 | struct UpdateSendFailSaying: Saying { 23 | static var status: String = "Failure!" 24 | static var sayings: [String] = ["Oops! The file failed to send.", "The file wasn't sent; your streak wasn't increased 🧨", "I couldn't upload your file! No virtual internet points for you!"] 25 | } 26 | 27 | struct BadFileSaying: Saying { 28 | static var status: String = "Bad File!" 29 | static var sayings: [String] = ["Your file sucks!", "It was a bad file, so it didn't work", "Scrappy says your file sucks and you have to try again.", "Scrappy didn't like your file and got constipated from it.", "Scrappy didn't like your file and got diarrhea from it.", "Scrappy hated your file and got constipated AND diarrhea (at the same time) from it."] 30 | } 31 | 32 | struct ReminderSaying: Saying { 33 | static var status: String = "Don't loose your streak!" 34 | static var sayings: [String] = ["Scrappy is hungry; feed it!", "If you don't feed on Scrappy, it might feed on you...", "If you don't feed Scrappy, it might feed on your streak", "If you don't feed Scrappy, it might come after you...", "Don't loose your puny little streak", "If you don't feed Scrappy, it might eat you, and it'll have to go to court...."] 35 | } 36 | 37 | struct QuitScrappleSaying: Saying { 38 | static var status: String = "Quit Scrapple" 39 | static var sayings: [String] = ["Commit a bloody murder and kill Scrapple", "Dismember Scrapple", "Incinerate Scrapple", "Vaporize Scrapple"] // TODO: Add more 40 | } 41 | -------------------------------------------------------------------------------- /Scrapple/Models/Update.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Update.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 7/30/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import SKWebAPI 11 | 12 | struct MediaFile { 13 | var data: Data 14 | var filename: String 15 | var fileType: String 16 | } 17 | 18 | 19 | struct Update { 20 | var image: MediaFile 21 | var text: String 22 | 23 | #if DEBUG 24 | let channel = "#bot-spam" 25 | #else 26 | let channel = "#scrapbook" 27 | #endif 28 | 29 | func sendToSlack(successClosure: @escaping (_ file: File) -> Void, failureClosure: @escaping (_ error: SlackError) -> Void) { 30 | guard UserData.shared.oauthToken?.oauthToken != nil else { return } // todo handle error 31 | let webAPI = WebAPI(token: UserData.shared.oauthToken!.oauthToken!) 32 | webAPI.uploadFile(file: image.data, filename: image.filename, filetype: image.fileType, initialComment: text, channels: [channel], success: successClosure, failure: failureClosure) 33 | } 34 | } 35 | 36 | -------------------------------------------------------------------------------- /Scrapple/Models/UserData.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UserData.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 8/1/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import ServiceManagement 11 | import SKWebAPI 12 | import UserNotifications 13 | 14 | class UserData: ObservableObject { 15 | @Published var runOnLogin: Bool = UserDefaults.standard.bool(forKey: "onLogin") { 16 | didSet { 17 | UserDefaults.standard.setValue(notificationOnFinished, forKey: "notificationOnFinished") 18 | if runOnLogin { 19 | SMLoginItemSetEnabled(Self.launcherAppId as CFString, true) 20 | } else { 21 | SMLoginItemSetEnabled(Self.launcherAppId as CFString, false) 22 | } 23 | } 24 | } 25 | 26 | @Published var notificationOnFinished = UserDefaults.standard.bool(forKey: "notificationOnFinished") { 27 | didSet { UserDefaults.standard.setValue(notificationOnFinished, forKey: "notificationOnFinished") } 28 | } 29 | 30 | @Published var showTouchBarButton = UserDefaults.standard.bool(forKey: "showTouchBarButton") { 31 | didSet { UserDefaults.standard.setValue(showTouchBarButton, forKey: "showTouchBarButton") } 32 | } 33 | 34 | @Published var shouldRemind = false 35 | @Published var remindTime = Date() 36 | @Published var oauthToken: OAuthToken? = OAuthToken.shared 37 | // var scrapbookUsername: String? { 38 | // let webAPI = WebAPI(token: UserData.shared.oauthToken!.oauthToken!) 39 | // 40 | // } 41 | 42 | var lastUpdatedVersionBuild: String? = UserDefaults.standard.string(forKey: "lastUpdatedVersionBuild") { 43 | didSet { UserDefaults.standard.setValue(lastUpdatedVersionBuild, forKey: "lastUpdatedVersionBuild") } 44 | } 45 | 46 | static var shared = UserData() 47 | static let launcherAppId = "sh.linus.Scrapple.LauncherApplication" 48 | 49 | func sendNotification(title: String, subtitle: String, time: Date?, interval: DateComponents?) { 50 | let center = UNUserNotificationCenter.current() 51 | center.requestAuthorization(options: [.sound, .alert]) { granted, error in 52 | if let error = error { 53 | print(error) 54 | return 55 | } 56 | guard granted else { return } 57 | let content = UNMutableNotificationContent() 58 | content.title = title 59 | content.subtitle = subtitle 60 | let uuidString = UUID().uuidString 61 | let request = UNNotificationRequest(identifier: uuidString, content: content, trigger: nil) 62 | center.add(request) { error in 63 | if error != nil { 64 | print(error as Any) 65 | return 66 | } 67 | } 68 | } 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /Scrapple/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Scrapple/Scrapple.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | keychain-access-groups 6 | 7 | $(AppIdentifierPrefix)sh.linus.Scrapple.shared 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Scrapple/Support/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 7/30/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | import Sparkle 11 | import SwiftUI 12 | import UserNotifications 13 | import ServiceManagement 14 | 15 | 16 | @NSApplicationMain 17 | class AppDelegate: NSObject, NSApplicationDelegate, NSMenuDelegate, NSPopoverDelegate { 18 | var window: NSWindow! 19 | var popover: NSPopover! 20 | var statusBarItem: NSStatusItem! 21 | var statusBarPrefsMenu: NSMenu! 22 | 23 | func applicationDidFinishLaunching(_ aNotification: Notification) { 24 | let runningApps = NSWorkspace.shared.runningApplications 25 | let isRunning = !runningApps.filter { $0.bundleIdentifier == UserData.launcherAppId }.isEmpty 26 | if isRunning { 27 | DistributedNotificationCenter.default().post(name: .killLauncher, object: Bundle.main.bundleIdentifier!) 28 | } 29 | 30 | // Create the SwiftUI view that provides the window contents. 31 | if UserData.shared.oauthToken?.oauthToken == nil { 32 | showPrefsWindow(shouldPromptForAuth: true) 33 | } 34 | let contentView = ContentView().environmentObject(UserData.shared) 35 | 36 | let popover = NSPopover() 37 | popover.contentSize = NSSize(width: 350, height: 250) 38 | popover.behavior = .transient 39 | popover.delegate = self 40 | popover.contentViewController = NSHostingController(rootView: contentView) 41 | self.popover = popover 42 | 43 | statusBarItem = NSStatusBar.system.statusItem(withLength: CGFloat(NSStatusItem.squareLength)) 44 | if let button = statusBarItem.button { 45 | button.image = NSImage(named: NSImage.Name("Icon")) 46 | button.action = #selector(togglePopover(_:)) 47 | button.sendAction(on: [.leftMouseUp, .rightMouseUp]) 48 | } 49 | 50 | UNUserNotificationCenter.current().delegate = self 51 | if (UserData.shared.lastUpdatedVersionBuild != NSApplication.appBuild) || UserData.shared.lastUpdatedVersionBuild == nil { 52 | // Preform updates and migration 53 | } 54 | UserData.shared.lastUpdatedVersionBuild = NSApplication.appBuild! 55 | 56 | // MARK: - Touch Bar 57 | 58 | DFRSystemModalShowsCloseBoxWhenFrontMost(true) 59 | let kPandaIdentifier = NSTouchBarItem.Identifier(rawValue: "panda") 60 | let panda = NSCustomTouchBarItem(identifier: kPandaIdentifier) 61 | panda.view = NSButton(image: NSImage(named: NSImage.Name("AppIcon"))!, target: self, action: #selector(openPostWindow)) 62 | NSTouchBarItem.addSystemTrayItem(panda) 63 | if UserData.shared.showTouchBarButton { 64 | DFRElementSetControlStripPresenceForIdentifier(kPandaIdentifier, true) 65 | } 66 | 67 | statusBarPrefsMenu = NSMenu(title: "Scrapple") 68 | statusBarPrefsMenu.delegate = self 69 | statusBarPrefsMenu.addItem(withTitle: "Preferences...", action: #selector(showPrefsWindow), keyEquivalent: ",") 70 | statusBarPrefsMenu.addItem(withTitle: "Check for Updates...", action: #selector(checkForUpdates), keyEquivalent: "") 71 | statusBarPrefsMenu.addItem(NSMenuItem.separator()) 72 | statusBarPrefsMenu.addItem(withTitle: "Quit Scrapple", action: #selector(quitScrapple), keyEquivalent: "q") 73 | } 74 | 75 | func applicationWillFinishLaunching(_ aNotification: Notification) { 76 | // Register for Call back URL events 77 | let aem = NSAppleEventManager.shared() 78 | aem.setEventHandler(self, andSelector: #selector(AppDelegate.handleGetURLEvent(event:replyEvent:)), forEventClass: AEEventClass(kInternetEventClass), andEventID: AEEventID(kAEGetURL)) 79 | } 80 | 81 | @objc func handleGetURLEvent(event: NSAppleEventDescriptor, replyEvent: NSAppleEventDescriptor) { 82 | let urlString = event.paramDescriptor(forKeyword: AEKeyword(keyDirectObject))?.stringValue! 83 | let url = URL(string: urlString!)! 84 | // DO what you will you now have a url.. 85 | let code = url.queryItem("code") 86 | sendRequest(code: code!) 87 | } 88 | 89 | @objc func openPostWindow(sender: NSButton) { 90 | window = NSWindow( 91 | contentRect: NSRect(x: 0, y: 0, width: 400, height: 250), 92 | styleMask: [.titled, .closable], 93 | backing: .buffered, defer: false) 94 | window.isReleasedWhenClosed = false 95 | window.center() 96 | window.contentView = NSHostingView(rootView: ContentView(isPopover: false).environmentObject(UserData.shared).environment(\.hostingWindow, { [weak window] in 97 | window })) 98 | window.makeKeyAndOrderFront(nil) 99 | NSApp.activate(ignoringOtherApps: true) 100 | } 101 | 102 | func applicationWillTerminate(_ aNotification: Notification) { 103 | // Insert code here to tear down your application 104 | } 105 | 106 | @objc func togglePopover(_ sender: NSStatusBarButton) { 107 | let event = NSApp.currentEvent! 108 | if event.type == NSEvent.EventType.leftMouseUp { 109 | if let button = statusBarItem.button { 110 | if popover.isShown { 111 | popover.performClose(sender) 112 | } else { 113 | popover.show(relativeTo: button.bounds, of: button, preferredEdge: NSRectEdge.minY) 114 | popover.contentViewController?.view.window?.becomeKey() 115 | } 116 | } 117 | } else if event.type == NSEvent.EventType.rightMouseUp { 118 | // show prefs menu 119 | statusBarItem.menu = statusBarPrefsMenu 120 | statusBarItem.button?.performClick(nil) 121 | statusBarItem.menu = nil 122 | } 123 | } 124 | 125 | @objc private func showPrefsWindow(shouldPromptForAuth: Bool = false) { 126 | let preferencesView = PreferencesView(authShow: shouldPromptForAuth).environmentObject(UserData.shared) 127 | UserData.shared.notificationOnFinished = shouldPromptForAuth 128 | let controller = PreferencesWindowController(rootView: preferencesView) 129 | controller.window?.title = "Preferences" 130 | controller.showWindow(nil) 131 | controller.window?.becomeFirstResponder() 132 | controller.window?.center() 133 | controller.window?.makeKeyAndOrderFront(nil) 134 | NSApp.activate(ignoringOtherApps: true) 135 | } 136 | 137 | @objc private func checkForUpdates() { 138 | SUUpdater.shared()?.checkForUpdates(nil) 139 | } 140 | 141 | @objc private func quitScrapple() { 142 | NSApp.terminate(nil) 143 | } 144 | 145 | func popoverShouldDetach(_ popover: NSPopover) -> Bool { 146 | return true 147 | } 148 | } 149 | 150 | extension AppDelegate: UNUserNotificationCenterDelegate { 151 | func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { 152 | completionHandler([.alert, .sound]) 153 | } 154 | } 155 | 156 | func sendRequest(code: String) { 157 | /* I just copied this from paw ¯\_(ツ)_/¯ */ 158 | /* Configure session, choose between: 159 | * defaultSessionConfiguration 160 | * ephemeralSessionConfiguration 161 | * backgroundSessionConfigurationWithIdentifier: 162 | And set session-wide properties, such as: HTTPAdditionalHeaders, 163 | HTTPCookieAcceptPolicy, requestCachePolicy or timeoutIntervalForRequest. 164 | */ 165 | let sessionConfig = URLSessionConfiguration.default 166 | 167 | /* Create session, and optionally set a URLSessionDelegate. */ 168 | let session = URLSession(configuration: sessionConfig, delegate: nil, delegateQueue: nil) 169 | 170 | guard let URL = URL(string: "https://Scrapple.pythonanywhere.com/getAuth") else { return } 171 | var request = URLRequest(url: URL) 172 | request.httpMethod = "POST" 173 | 174 | // Headers 175 | 176 | request.addValue("text/plain; charset=utf-8", forHTTPHeaderField: "Content-Type") 177 | 178 | // Body 179 | 180 | let bodyString = code 181 | request.httpBody = bodyString.data(using: .utf8, allowLossyConversion: true) 182 | 183 | /* Start a new Task */ 184 | let task = session.dataTask(with: request, completionHandler: { (data: Data?, _: URLResponse?, error: Error?) -> Void in 185 | if error == nil { 186 | let token = String(bytes: data!, encoding: .utf8)! 187 | DispatchQueue.main.async { 188 | NotificationCenter.default.post(name: Notification.Name("GotToken"), object: nil, userInfo: ["token": token]) 189 | try! OAuthToken.shared.addToKeychain(name: "Scrapple Hack Club Account", token: token) 190 | } 191 | } else { 192 | // Failure 193 | UserData.shared.sendNotification(title: "Authorization failed", subtitle: "We were unable to authorize you with Slack", time: nil, interval: nil) 194 | } 195 | }) 196 | task.resume() 197 | session.finishTasksAndInvalidate() 198 | } 199 | 200 | extension URL { 201 | func queryItem(_ name: String) -> String? { 202 | URLComponents(string: absoluteString)? 203 | .queryItems? 204 | .first { $0.name.caseInsensitiveCompare(name) == .orderedSame }? 205 | .value 206 | } 207 | } 208 | 209 | extension Notification.Name { 210 | static let killLauncher = Notification.Name("killLauncher") 211 | } 212 | -------------------------------------------------------------------------------- /Scrapple/Support/TouchBar.h: -------------------------------------------------------------------------------- 1 | // 2 | // TouchBar.h 3 | // TouchBarTest 4 | // 5 | // Created by Alexsander Akers on 2/13/17. 6 | // Copyright © 2017 Alexsander Akers. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | extern void DFRElementSetControlStripPresenceForIdentifier(NSTouchBarItemIdentifier, BOOL); 12 | extern void DFRSystemModalShowsCloseBoxWhenFrontMost(BOOL); 13 | 14 | @interface NSTouchBarItem () 15 | 16 | + (void)addSystemTrayItem:(NSTouchBarItem *)item; 17 | 18 | @end 19 | 20 | @interface NSTouchBar () 21 | 22 | // macOS 10.14 and above 23 | + (void)presentSystemModalTouchBar:(NSTouchBar *)touchBar systemTrayItemIdentifier:(NSTouchBarItemIdentifier)identifier NS_AVAILABLE_MAC(10.14); 24 | 25 | // macOS 10.13 and below 26 | + (void)presentSystemModalFunctionBar:(NSTouchBar *)touchBar systemTrayItemIdentifier:(NSTouchBarItemIdentifier)identifier NS_DEPRECATED_MAC(10.12.2, 10.14); 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Scrapple/Views/ContentView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContentView.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 7/30/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct ContentView: View { 12 | @EnvironmentObject var userData: UserData 13 | @Environment(\.hostingWindow) var hostingWindow 14 | @State var draftImage: Data? 15 | @State var draftText = "" 16 | @State var isSubmitting = false 17 | 18 | var isPopover = true 19 | 20 | var body: some View { 21 | VStack(alignment: .leading, spacing: 10.0) { 22 | HStack { 23 | Text("Write about what you did:") 24 | Spacer() 25 | if isPopover { 26 | Button(action: { 27 | let preferencesView = PreferencesView().environmentObject(self.userData) 28 | let controller = PreferencesWindowController(rootView: preferencesView) 29 | controller.window?.title = "Preferences" 30 | controller.showWindow(nil) 31 | controller.window?.becomeFirstResponder() 32 | NSApp.activate(ignoringOtherApps: true) 33 | }) { 34 | Image(nsImage: NSImage(named: NSImage.actionTemplateName)!) 35 | }.toolTip("Preferences").buttonStyle(BorderlessButtonStyle()) 36 | } 37 | } 38 | MacEditorTextView(text: self.$draftText) 39 | VStack(alignment: .leading, spacing: 0.0) { 40 | HStack { 41 | Text("Choose your image or video") 42 | Spacer() 43 | Button("Choose File...", action: { self.openFile() }) 44 | .disabled(self.draftText == "") 45 | } 46 | // Text("You can also \"share\" files with Scrapple to post them.") 47 | // .font(.caption) 48 | // .fontWeight(.light) 49 | // .foregroundColor(.secondary) 50 | } 51 | } 52 | .padding() 53 | .frame(maxWidth: .infinity, maxHeight: .infinity) 54 | } 55 | 56 | func openFile() { 57 | let panel = NSOpenPanel() 58 | panel.title = "Choose an image or picture for scrapbook" 59 | panel.prompt = "Post on Scrapbook ✈️" 60 | panel.message = "You'll get a notification when it's been posted!" 61 | 62 | panel.begin { response in 63 | if response == NSApplication.ModalResponse.OK, 64 | let url = panel.url { 65 | guard let imageData = try? Data(contentsOf: url) else { return } 66 | // fire off notification center, do on recieve 67 | let mediaFile = MediaFile(data: imageData, filename: url.relativePath, fileType: url.pathExtension) 68 | let update = Update(image: mediaFile, text: self.draftText) 69 | update.sendToSlack(successClosure: {_ in self.userData.sendNotification(title: UpdateSuccessSaying.status, subtitle: UpdateSuccessSaying.sayings.randomElement()!, time: nil, interval: nil)}, failureClosure: { error in 70 | NSLog(error.rawValue) 71 | self.userData.sendNotification(title: UpdateSendFailSaying.status, subtitle: UpdateSendFailSaying.sayings.randomElement()!, time: nil, interval: nil) 72 | }) 73 | self.draftImage = nil 74 | self.draftText = "" 75 | if !self.isPopover { 76 | self.hostingWindow()?.close() 77 | } 78 | } 79 | } 80 | } 81 | } 82 | 83 | struct ContentView_Previews: PreviewProvider { 84 | static var previews: some View { 85 | ContentView() 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /Scrapple/Views/PreferencesView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PreferencesView.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 8/2/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct PreferencesView: View { 12 | @EnvironmentObject var userData: UserData 13 | @State var authShow: Bool = false 14 | @State var quitButtonText = QuitScrappleSaying.status 15 | 16 | var body: some View { 17 | VStack(alignment: .leading) { 18 | GroupBox { 19 | VStack(alignment: .leading) { 20 | HStack { 21 | Text("Hack Club Account ") 22 | Spacer() 23 | Button("Reconnect...") { 24 | OAuthToken.shared.deleteFromKeychain() 25 | self.authShow = true 26 | } 27 | } 28 | } 29 | .padding() 30 | } 31 | .frame(height: 100) 32 | // .padding(.bottom) 33 | // Picker(selection: $userData.bigSurIcon, label: Text("Icon Shape"), content: { 34 | // Text("Real Shape").tag(false) 35 | // Text("Square thingy").tag(true) 36 | // }) 37 | .pickerStyle(SegmentedPickerStyle()) 38 | VStack(alignment: .leading, spacing: 0.0) { 39 | Toggle(isOn: self.$userData.notificationOnFinished) { 40 | Text("Send notification when finished sending to Scrappy") 41 | } 42 | Text("It's recommended you keep this on, so you know you \nhave posted.") 43 | .font(.caption) 44 | .fontWeight(.light) 45 | .foregroundColor(.secondary) 46 | .lineLimit(2) 47 | } 48 | Toggle(isOn: self.$userData.runOnLogin) { 49 | Text("Run on Login") 50 | } 51 | VStack(alignment: .leading, spacing: 0.0) { 52 | Toggle(isOn: self.$userData.showTouchBarButton) { 53 | Text("Access Scrapple from your Touch Bar.") 54 | } 55 | Text("Restart Scrapple for this to take affect.") 56 | .font(.caption) 57 | .fontWeight(.light) 58 | .foregroundColor(.secondary) 59 | .lineLimit(2) 60 | } 61 | // Toggle(isOn: self.$userData.shouldRemind) { 62 | // Text("Get a reminder to post on your Scrapbook.") 63 | // } 64 | // if self.userData.shouldRemind { 65 | // DatePicker("Notification time", selection: self.$userData.remindTime, displayedComponents: .hourAndMinute) 66 | // } 67 | HStack { 68 | Spacer() 69 | Button(action: { 70 | NSApplication.shared.terminate(nil) 71 | }, label: { 72 | Text(quitButtonText) 73 | }) 74 | .buttonStyle(BorderlessButtonStyle()) 75 | }.onHover(perform: { hovering in 76 | if hovering { 77 | self.quitButtonText = QuitScrappleSaying.sayings.randomElement()! 78 | } else { 79 | self.quitButtonText = QuitScrappleSaying.status 80 | } 81 | }) 82 | } 83 | .sheet(isPresented: self.$authShow, content: { 84 | WelcomeView() 85 | }) 86 | .padding() 87 | } 88 | } 89 | 90 | struct PreferencesView_Previews: PreviewProvider { 91 | static var previews: some View { 92 | PreferencesView() 93 | } 94 | } 95 | -------------------------------------------------------------------------------- /Scrapple/Views/Support Views/ActivityIndicator.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ActivityIndicator.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 7/31/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct ProgressIndicator: NSViewRepresentable { 12 | @Binding var isAnimating: Bool 13 | 14 | func makeNSView(context: Context) -> NSProgressIndicator { 15 | let indicator = NSProgressIndicator() 16 | indicator.style = .spinning 17 | indicator.isIndeterminate = true 18 | indicator.isDisplayedWhenStopped = false 19 | indicator.controlSize = .small 20 | return indicator 21 | } 22 | 23 | func updateNSView(_ nsView: NSProgressIndicator, context: Context) { 24 | isAnimating ? nsView.startAnimation(nil) : nsView.stopAnimation(nil) 25 | } 26 | 27 | typealias NSViewType = NSProgressIndicator 28 | } 29 | -------------------------------------------------------------------------------- /Scrapple/Views/Support Views/PreferencesWindowController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PreferencesWindowController.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 8/2/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import Cocoa 11 | import SwiftUI 12 | 13 | class PreferencesWindowController: NSWindowController { 14 | convenience init(rootView: RootView) { 15 | let hostingController = NSHostingController(rootView: rootView.frame(width: 400, height: 300)) 16 | let window = NSWindow(contentViewController: hostingController) 17 | window.setContentSize(NSSize(width: 400, height: 300)) 18 | self.init(window: window) 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Scrapple/Views/Support Views/TextEditor.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TextEditor.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 8/1/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | // Thanks: https://gist.github.com/unnamedd/6e8c3fbc806b8deb60fa65d6b9affab0 9 | 10 | import Combine 11 | import SwiftUI 12 | 13 | struct MacEditorTextView: NSViewRepresentable { 14 | @Binding var text: String 15 | var isEditable: Bool = true 16 | var font: NSFont? = .systemFont(ofSize: 13, weight: .regular) 17 | 18 | var onEditingChanged: () -> Void = {} 19 | var onCommit : () -> Void = {} 20 | var onTextChange : (String) -> Void = { _ in } 21 | 22 | func makeCoordinator() -> Coordinator { 23 | Coordinator(self) 24 | } 25 | 26 | func makeNSView(context: Context) -> CustomTextView { 27 | let textView = CustomTextView( 28 | text: text, 29 | isEditable: isEditable, 30 | font: font 31 | ) 32 | textView.delegate = context.coordinator 33 | textView.becomeFirstResponder() 34 | 35 | return textView 36 | } 37 | 38 | func updateNSView(_ view: CustomTextView, context: Context) { 39 | view.text = text 40 | view.selectedRanges = context.coordinator.selectedRanges 41 | } 42 | } 43 | 44 | extension MacEditorTextView { 45 | 46 | class Coordinator: NSObject, NSTextViewDelegate { 47 | var parent: MacEditorTextView 48 | var selectedRanges: [NSValue] = [] 49 | 50 | init(_ parent: MacEditorTextView) { 51 | self.parent = parent 52 | } 53 | 54 | func textDidBeginEditing(_ notification: Notification) { 55 | guard let textView = notification.object as? NSTextView else { 56 | return 57 | } 58 | 59 | self.parent.text = textView.string 60 | self.parent.onEditingChanged() 61 | } 62 | 63 | func textDidChange(_ notification: Notification) { 64 | guard let textView = notification.object as? NSTextView else { 65 | return 66 | } 67 | 68 | self.parent.text = textView.string 69 | self.selectedRanges = textView.selectedRanges 70 | } 71 | 72 | func textDidEndEditing(_ notification: Notification) { 73 | guard let textView = notification.object as? NSTextView else { 74 | return 75 | } 76 | 77 | self.parent.text = textView.string 78 | self.parent.onCommit() 79 | } 80 | } 81 | } 82 | 83 | final class CustomTextView: NSView { 84 | private var isEditable: Bool 85 | private var font: NSFont? 86 | 87 | weak var delegate: NSTextViewDelegate? 88 | 89 | var text: String { 90 | didSet { 91 | textView.string = text 92 | } 93 | } 94 | 95 | var selectedRanges: [NSValue] = [] { 96 | didSet { 97 | guard selectedRanges.count > 0 else { 98 | return 99 | } 100 | 101 | textView.selectedRanges = selectedRanges 102 | } 103 | } 104 | 105 | private lazy var scrollView: NSScrollView = { 106 | let scrollView = NSScrollView() 107 | scrollView.drawsBackground = true 108 | scrollView.borderType = .noBorder 109 | scrollView.hasVerticalScroller = true 110 | scrollView.hasHorizontalRuler = false 111 | scrollView.autoresizingMask = [.width, .height] 112 | scrollView.translatesAutoresizingMaskIntoConstraints = false 113 | 114 | return scrollView 115 | }() 116 | 117 | private lazy var textView: NSTextView = { 118 | let contentSize = scrollView.contentSize 119 | let textStorage = NSTextStorage() 120 | 121 | 122 | let layoutManager = NSLayoutManager() 123 | textStorage.addLayoutManager(layoutManager) 124 | 125 | 126 | let textContainer = NSTextContainer(containerSize: scrollView.frame.size) 127 | textContainer.widthTracksTextView = true 128 | textContainer.containerSize = NSSize( 129 | width: contentSize.width, 130 | height: CGFloat.greatestFiniteMagnitude 131 | ) 132 | 133 | layoutManager.addTextContainer(textContainer) 134 | 135 | 136 | let textView = NSTextView(frame: .zero, textContainer: textContainer) 137 | textView.autoresizingMask = .width 138 | textView.backgroundColor = NSColor.textBackgroundColor 139 | textView.delegate = self.delegate 140 | textView.drawsBackground = true 141 | textView.font = self.font 142 | textView.isEditable = self.isEditable 143 | textView.isHorizontallyResizable = false 144 | textView.isVerticallyResizable = true 145 | textView.maxSize = NSSize(width: CGFloat.greatestFiniteMagnitude, height: CGFloat.greatestFiniteMagnitude) 146 | textView.minSize = NSSize(width: 0, height: contentSize.height) 147 | textView.textColor = NSColor.labelColor 148 | 149 | return textView 150 | }() 151 | 152 | // MARK: - Init 153 | init(text: String, isEditable: Bool, font: NSFont?) { 154 | self.font = font 155 | self.isEditable = isEditable 156 | self.text = text 157 | 158 | super.init(frame: .zero) 159 | } 160 | 161 | required init?(coder: NSCoder) { 162 | fatalError("init(coder:) has not been implemented") 163 | } 164 | 165 | // MARK: - Life cycle 166 | 167 | override func viewWillDraw() { 168 | super.viewWillDraw() 169 | 170 | setupScrollViewConstraints() 171 | setupTextView() 172 | } 173 | 174 | func setupScrollViewConstraints() { 175 | scrollView.translatesAutoresizingMaskIntoConstraints = false 176 | 177 | addSubview(scrollView) 178 | 179 | NSLayoutConstraint.activate([ 180 | scrollView.topAnchor.constraint(equalTo: topAnchor), 181 | scrollView.trailingAnchor.constraint(equalTo: trailingAnchor), 182 | scrollView.bottomAnchor.constraint(equalTo: bottomAnchor), 183 | scrollView.leadingAnchor.constraint(equalTo: leadingAnchor) 184 | ]) 185 | } 186 | 187 | func setupTextView() { 188 | scrollView.documentView = textView 189 | } 190 | } 191 | -------------------------------------------------------------------------------- /Scrapple/Views/Support Views/Tooltip.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ToolTip.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 8/2/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import SwiftUI 11 | import AppKit 12 | 13 | struct Tooltip: NSViewRepresentable { 14 | let tooltip: String 15 | 16 | func makeNSView(context: NSViewRepresentableContext) -> NSView { 17 | let view = NSView() 18 | view.toolTip = tooltip 19 | 20 | return view 21 | } 22 | 23 | func updateNSView(_ nsView: NSView, context: NSViewRepresentableContext) { 24 | } 25 | } 26 | 27 | public extension View { 28 | func toolTip(_ toolTip: String) -> some View { 29 | self.overlay(Tooltip(tooltip: toolTip)) 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Scrapple/Views/WelcomeView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // WelcomeView.swift 3 | // Scrapple 4 | // 5 | // Created by Linus Skucas on 8/2/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | import AppKit 11 | 12 | struct WelcomeView: View { 13 | @EnvironmentObject var userData: UserData 14 | @Environment(\.presentationMode) var presentationMode 15 | @State var isConnecting = false 16 | let oauthURL = URL(string: "https://slack.com/oauth/v2/authorize?client_id=2210535565.1275826279571&scope=&user_scope=files:write,files:read,chat:write")! 17 | 18 | var body: some View { 19 | VStack(alignment: .center) { 20 | Image(nsImage: NSApplication.shared.applicationIconImage) 21 | Text("Welcome to Scrapple") 22 | .font(.title) 23 | .fontWeight(.medium) 24 | Spacer() 25 | Text("Connect your Slack account to get started") 26 | HStack { 27 | Button("Connect...") { 28 | self.isConnecting = true 29 | NSWorkspace.shared.open(self.oauthURL) 30 | } 31 | if self.isConnecting { 32 | ProgressIndicator(isAnimating: $isConnecting) 33 | } 34 | } 35 | .onReceive(NotificationCenter.default.publisher(for: Notification.Name("GotToken")), perform: { output in 36 | DispatchQueue.main.async { 37 | UserData.shared.runOnLogin = true 38 | self.presentationMode.wrappedValue.dismiss() 39 | } 40 | }) 41 | } 42 | .padding() 43 | } 44 | } 45 | 46 | struct WelcomeView_Previews: PreviewProvider { 47 | static var previews: some View { 48 | WelcomeView() 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /ShareToScrapbook/Base.lproj/ShareViewController.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 32 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /ShareToScrapbook/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleDisplayName 8 | Post to Scrapbook! 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIconFile 12 | icon 13 | CFBundleIdentifier 14 | $(PRODUCT_BUNDLE_IDENTIFIER) 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | $(PRODUCT_NAME) 19 | CFBundlePackageType 20 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 21 | CFBundleShortVersionString 22 | $(MARKETING_VERSION) 23 | CFBundleVersion 24 | $(CURRENT_PROJECT_VERSION) 25 | LSMinimumSystemVersion 26 | $(MACOSX_DEPLOYMENT_TARGET) 27 | NSExtension 28 | 29 | NSExtensionAttributes 30 | 31 | NSExtensionActivationRule 32 | 33 | NSExtensionActivationSupportsImageWithMaxCount 34 | 1 35 | 36 | 37 | NSExtensionPointIdentifier 38 | com.apple.share-services 39 | NSExtensionPrincipalClass 40 | $(PRODUCT_MODULE_NAME).ShareViewController 41 | 42 | NSHumanReadableCopyright 43 | Copyright © 2020 Linus Skucas. All rights reserved. 44 | 45 | 46 | -------------------------------------------------------------------------------- /ShareToScrapbook/ShareToScrapbook.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | keychain-access-groups 6 | 7 | $(AppIdentifierPrefix)sh.linus.Scrapple.shared 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ShareToScrapbook/ShareViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ShareViewController.swift 3 | // ShareToScrapbook 4 | // 5 | // Created by Linus Skucas on 8/26/20. 6 | // Copyright © 2020 Linus Skucas. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class ShareViewController: NSViewController { 12 | @IBOutlet var textOutletField: NSTextField! 13 | 14 | override var nibName: NSNib.Name? { 15 | return NSNib.Name("ShareViewController") 16 | } 17 | 18 | override func loadView() { 19 | super.loadView() 20 | 21 | // Insert code here to customize the view 22 | let item = extensionContext!.inputItems[0] as! NSExtensionItem 23 | if let attachments = item.attachments { 24 | NSLog("Attachments = %@", attachments as NSArray) 25 | } else { 26 | NSLog("No Attachments") 27 | } 28 | } 29 | 30 | @IBAction func send(_ sender: AnyObject?) { 31 | let updateText = textOutletField.stringValue 32 | if let item = extensionContext?.inputItems.first as? NSExtensionItem { 33 | if let itemProvider = item.attachments?.first { 34 | if itemProvider.hasItemConformingToTypeIdentifier("public.file-url") { 35 | itemProvider.loadItem(forTypeIdentifier: "public.url", options: nil, completionHandler: { (url, error) -> Void in 36 | if let shareURL = url as? URL { 37 | let update = Update(image: MediaFile(data: try! Data(contentsOf: shareURL), filename: shareURL.relativePath, fileType: shareURL.pathExtension), text: updateText) 38 | update.sendToSlack(successClosure: {_ in UserData.shared.sendNotification(title: UpdateSuccessSaying.status, subtitle: UpdateSuccessSaying.sayings.randomElement()!, time: nil, interval: nil)}, failureClosure: { error in 39 | NSLog(error.rawValue) 40 | UserData.shared.sendNotification(title: UpdateSendFailSaying.status, subtitle: UpdateSendFailSaying.sayings.randomElement()!, time: nil, interval: nil) 41 | }) 42 | } 43 | self.extensionContext?.completeRequest(returningItems: [], completionHandler:nil) 44 | }) 45 | } 46 | } 47 | } 48 | } 49 | 50 | @IBAction func cancel(_ sender: AnyObject?) { 51 | let cancelError = NSError(domain: NSCocoaErrorDomain, code: NSUserCancelledError, userInfo: nil) 52 | extensionContext!.cancelRequest(withError: cancelError) 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /ShareToScrapbook/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/ShareToScrapbook/icon.icns -------------------------------------------------------------------------------- /Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Sparkle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Sparkle.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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) NSDate *date; 24 | @property (copy, readonly) NSString *itemDescription; 25 | @property (strong, readonly) NSURL *releaseNotesURL; 26 | @property (strong, readonly) SUSignatures *signatures; 27 | @property (copy, readonly) NSString *minimumSystemVersion; 28 | @property (copy, readonly) NSString *maximumSystemVersion; 29 | @property (strong, readonly) NSURL *fileURL; 30 | @property (nonatomic, readonly) uint64_t contentLength; 31 | @property (copy, readonly) NSString *versionString; 32 | @property (copy, readonly) NSString *osString; 33 | @property (copy, readonly) NSString *displayVersionString; 34 | @property (copy, readonly) NSDictionary *deltaUpdates; 35 | @property (strong, readonly) NSURL *infoURL; 36 | @property (copy, readonly) NSNumber* phasedRolloutInterval; 37 | 38 | // Initializes with data from a dictionary provided by the RSS class. 39 | - (instancetype)initWithDictionary:(NSDictionary *)dict; 40 | - (instancetype)initWithDictionary:(NSDictionary *)dict failureReason:(NSString **)error; 41 | 42 | @property (getter=isDeltaUpdate, readonly) BOOL deltaUpdate; 43 | @property (getter=isCriticalUpdate, readonly) BOOL criticalUpdate; 44 | @property (getter=isMacOsUpdate, readonly) BOOL macOsUpdate; 45 | @property (getter=isInformationOnlyUpdate, readonly) BOOL informationOnlyUpdate; 46 | 47 | // Returns the dictionary provided in initWithDictionary; this might be useful later for extensions. 48 | @property (readonly, copy) NSDictionary *propertiesDictionary; 49 | 50 | - (NSURL *)infoURL; 51 | 52 | @end 53 | 54 | #endif 55 | -------------------------------------------------------------------------------- /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 | #if __has_feature(modules) 13 | @import Foundation; 14 | #else 15 | #import 16 | #endif 17 | #import "SUExport.h" 18 | 19 | SU_EXPORT @interface SUCodeSigningVerifier : NSObject 20 | + (BOOL)codeSignatureAtBundleURL:(NSURL *)oldBundlePath matchesSignatureAtBundleURL:(NSURL *)newBundlePath error:(NSError **)error; 21 | + (BOOL)codeSignatureIsValidAtBundleURL:(NSURL *)bundlePath error:(NSError **)error; 22 | + (BOOL)bundleAtURLIsCodeSigned:(NSURL *)bundlePath; 23 | + (NSDictionary *)codeSignatureInfoAtBundleURL:(NSURL *)bundlePath; 24 | @end 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /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 | SURunningTranslocated = 1004, 33 | 34 | // Download phase errors. 35 | SUTemporaryDirectoryError = 2000, 36 | SUDownloadError = 2001, 37 | 38 | // Extraction phase errors. 39 | SUUnarchivingError = 3000, 40 | SUSignatureError = 3001, 41 | 42 | // Installation phase errors. 43 | SUFileCopyFailure = 4000, 44 | SUAuthenticationFailure = 4001, 45 | SUMissingUpdateError = 4002, 46 | SUMissingInstallerToolError = 4003, 47 | SURelaunchError = 4004, 48 | SUInstallationError = 4005, 49 | SUDowngradeError = 4006, 50 | SUInstallationCancelledError = 4007, 51 | 52 | // System phase errors 53 | SUSystemPowerOffError = 5000 54 | }; 55 | #pragma clang diagnostic pop 56 | 57 | #endif 58 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | or 193 | SUUpdaterDelegate::updater:willInstallUpdateOnQuit:immediateInstallationBlock: 194 | to immediately start installation when an update was found. 195 | 196 | A progress dialog is shown but the user will never be prompted to read the 197 | release notes. 198 | 199 | This function will cause update to be downloaded twice if automatic updates are 200 | enabled. 201 | 202 | You may want to respond to the userDidCancelDownload delegate method in case 203 | the user clicks the "Cancel" button while the update is downloading. 204 | */ 205 | - (void)installUpdatesIfAvailable; 206 | 207 | /*! 208 | Returns the date of last update check. 209 | 210 | \returns \c nil if no check has been performed. 211 | */ 212 | @property (readonly, copy) NSDate *lastUpdateCheckDate; 213 | 214 | /*! 215 | Appropriately schedules or cancels the update checking timer according to 216 | the preferences for time interval and automatic checks. 217 | 218 | This call does not change the date of the next check, 219 | but only the internal NSTimer. 220 | */ 221 | - (void)resetUpdateCycle; 222 | 223 | /*! 224 | A property indicating whether or not an update is in progress. 225 | 226 | Note this property is not indicative of whether or not user initiated updates can be performed. 227 | Use SUUpdater::validateMenuItem: for that instead. 228 | */ 229 | @property (readonly) BOOL updateInProgress; 230 | 231 | @end 232 | 233 | #endif 234 | -------------------------------------------------------------------------------- /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 just before the scheduled update driver prompts the user to install an update. 122 | 123 | \param updater The SUUpdater instance. 124 | 125 | \return YES to allow the update prompt to be shown (the default behavior), or NO to suppress it. 126 | */ 127 | - (BOOL)updaterShouldShowUpdateAlertForScheduledUpdate:(SUUpdater *)updater forItem:(SUAppcastItem *)item; 128 | 129 | /*! 130 | Called after the user dismisses the update alert. 131 | 132 | \param updater The SUUpdater instance. 133 | \param permanently YES if the alert will not appear again for this update; NO if it may reappear. 134 | */ 135 | - (void)updater:(SUUpdater *)updater didDismissUpdateAlertPermanently:(BOOL)permanently forItem:(SUAppcastItem *)item; 136 | 137 | /*! 138 | Called when a valid update is not found. 139 | 140 | \param updater The SUUpdater instance. 141 | */ 142 | - (void)updaterDidNotFindUpdate:(SUUpdater *)updater; 143 | 144 | /*! 145 | Called when the user clicks the Skip This Version button. 146 | 147 | \param updater The SUUpdater instance. 148 | */ 149 | - (void)updater:(SUUpdater *)updater userDidSkipThisVersion:(SUAppcastItem *)item; 150 | 151 | /*! 152 | Called immediately before downloading the specified update. 153 | 154 | \param updater The SUUpdater instance. 155 | \param item The appcast item corresponding to the update that is proposed to be downloaded. 156 | \param request The mutable URL request that will be used to download the update. 157 | */ 158 | - (void)updater:(SUUpdater *)updater willDownloadUpdate:(SUAppcastItem *)item withRequest:(NSMutableURLRequest *)request; 159 | 160 | /*! 161 | Called immediately after succesfull download of the specified update. 162 | 163 | \param updater The SUUpdater instance. 164 | \param item The appcast item corresponding to the update that has been downloaded. 165 | */ 166 | - (void)updater:(SUUpdater *)updater didDownloadUpdate:(SUAppcastItem *)item; 167 | 168 | /*! 169 | Called after the specified update failed to download. 170 | 171 | \param updater The SUUpdater instance. 172 | \param item The appcast item corresponding to the update that failed to download. 173 | \param error The error generated by the failed download. 174 | */ 175 | - (void)updater:(SUUpdater *)updater failedToDownloadUpdate:(SUAppcastItem *)item error:(NSError *)error; 176 | 177 | /*! 178 | Called when the user clicks the cancel button while and update is being downloaded. 179 | 180 | \param updater The SUUpdater instance. 181 | */ 182 | - (void)userDidCancelDownload:(SUUpdater *)updater; 183 | 184 | /*! 185 | Called immediately before extracting the specified downloaded update. 186 | 187 | \param updater The SUUpdater instance. 188 | \param item The appcast item corresponding to the update that is proposed to be extracted. 189 | */ 190 | - (void)updater:(SUUpdater *)updater willExtractUpdate:(SUAppcastItem *)item; 191 | 192 | /*! 193 | Called immediately after extracting the specified downloaded update. 194 | 195 | \param updater The SUUpdater instance. 196 | \param item The appcast item corresponding to the update that has been extracted. 197 | */ 198 | - (void)updater:(SUUpdater *)updater didExtractUpdate:(SUAppcastItem *)item; 199 | 200 | /*! 201 | Called immediately before installing the specified update. 202 | 203 | \param updater The SUUpdater instance. 204 | \param item The appcast item corresponding to the update that is proposed to be installed. 205 | */ 206 | - (void)updater:(SUUpdater *)updater willInstallUpdate:(SUAppcastItem *)item; 207 | 208 | /*! 209 | Returns whether the relaunch should be delayed in order to perform other tasks. 210 | 211 | This is not called if the user didn't relaunch on the previous update, 212 | in that case it will immediately restart. 213 | 214 | \param updater The SUUpdater instance. 215 | \param item The appcast item corresponding to the update that is proposed to be installed. 216 | \param invocation The invocation that must be completed with `[invocation invoke]` before continuing with the relaunch. 217 | 218 | \return \c YES to delay the relaunch until \p invocation is invoked. 219 | */ 220 | - (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item untilInvoking:(NSInvocation *)invocation; 221 | 222 | /*! 223 | Returns whether the relaunch should be delayed in order to perform other tasks. 224 | 225 | This is not called if the user didn't relaunch on the previous update, 226 | in that case it will immediately restart. 227 | 228 | This method acts as a simpler alternative to SUUpdaterDelegate::updater:shouldPostponeRelaunchForUpdate:untilInvoking: avoiding usage of NSInvocation, which is not available in Swift environments. 229 | 230 | \param updater The SUUpdater instance. 231 | \param item The appcast item corresponding to the update that is proposed to be installed. 232 | 233 | \return \c YES to delay the relaunch. 234 | */ 235 | - (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)item; 236 | 237 | /*! 238 | Returns whether the application should be relaunched at all. 239 | 240 | Some apps \b cannot be relaunched under certain circumstances. 241 | This method can be used to explicitly prevent a relaunch. 242 | 243 | \param updater The SUUpdater instance. 244 | */ 245 | - (BOOL)updaterShouldRelaunchApplication:(SUUpdater *)updater; 246 | 247 | /*! 248 | Called immediately before relaunching. 249 | 250 | \param updater The SUUpdater instance. 251 | */ 252 | - (void)updaterWillRelaunchApplication:(SUUpdater *)updater; 253 | 254 | /*! 255 | Called immediately after relaunching. SUUpdater delegate must be set before applicationDidFinishLaunching: to catch this event. 256 | 257 | \param updater The SUUpdater instance. 258 | */ 259 | - (void)updaterDidRelaunchApplication:(SUUpdater *)updater; 260 | 261 | /*! 262 | Returns an object that compares version numbers to determine their arithmetic relation to each other. 263 | 264 | This method allows you to provide a custom version comparator. 265 | If you don't implement this method or return \c nil, 266 | the standard version comparator will be used. 267 | 268 | \sa SUStandardVersionComparator 269 | 270 | \param updater The SUUpdater instance. 271 | */ 272 | - (nullable id)versionComparatorForUpdater:(SUUpdater *)updater; 273 | 274 | /*! 275 | Returns an object that formats version numbers for display to the user. 276 | 277 | If you don't implement this method or return \c nil, 278 | the standard version formatter will be used. 279 | 280 | \sa SUUpdateAlert 281 | 282 | \param updater The SUUpdater instance. 283 | */ 284 | - (nullable id)versionDisplayerForUpdater:(SUUpdater *)updater; 285 | 286 | /*! 287 | Returns the path which is used to relaunch the client after the update is installed. 288 | 289 | The default is the path of the host bundle. 290 | 291 | \param updater The SUUpdater instance. 292 | */ 293 | - (nullable NSString *)pathToRelaunchForUpdater:(SUUpdater *)updater; 294 | 295 | /*! 296 | Called before an updater shows a modal alert window, 297 | to give the host the opportunity to hide attached windows that may get in the way. 298 | 299 | \param updater The SUUpdater instance. 300 | */ 301 | - (void)updaterWillShowModalAlert:(SUUpdater *)updater; 302 | 303 | /*! 304 | Called after an updater shows a modal alert window, 305 | to give the host the opportunity to hide attached windows that may get in the way. 306 | 307 | \param updater The SUUpdater instance. 308 | */ 309 | - (void)updaterDidShowModalAlert:(SUUpdater *)updater; 310 | 311 | /*! 312 | Called when an update is scheduled to be silently installed on quit. 313 | This is after an update has been automatically downloaded in the background. 314 | (i.e. SUUpdater::automaticallyDownloadsUpdates is YES) 315 | 316 | \param updater The SUUpdater instance. 317 | \param item The appcast item corresponding to the update that is proposed to be installed. 318 | \param invocation Can be used to trigger an immediate silent install and relaunch. 319 | */ 320 | - (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationInvocation:(NSInvocation *)invocation; 321 | 322 | /*! 323 | Called when an update is scheduled to be silently installed on quit. 324 | This is after an update has been automatically downloaded in the background. 325 | (i.e. SUUpdater::automaticallyDownloadsUpdates is YES) 326 | This method acts as a more modern alternative to SUUpdaterDelegate::updater:willInstallUpdateOnQuit:immediateInstallationInvocation: using a block instead of NSInvocation, which is not available in Swift environments. 327 | 328 | \param updater The SUUpdater instance. 329 | \param item The appcast item corresponding to the update that is proposed to be installed. 330 | \param installationBlock Can be used to trigger an immediate silent install and relaunch. 331 | */ 332 | - (void)updater:(SUUpdater *)updater willInstallUpdateOnQuit:(SUAppcastItem *)item immediateInstallationBlock:(void (^)(void))installationBlock; 333 | 334 | /*! 335 | Calls after an update that was scheduled to be silently installed on quit has been canceled. 336 | 337 | \param updater The SUUpdater instance. 338 | \param item The appcast item corresponding to the update that was proposed to be installed. 339 | */ 340 | - (void)updater:(SUUpdater *)updater didCancelInstallUpdateOnQuit:(SUAppcastItem *)item; 341 | 342 | /*! 343 | Called after an update is aborted due to an error. 344 | 345 | \param updater The SUUpdater instance. 346 | \param error The error that caused the abort 347 | */ 348 | - (void)updater:(SUUpdater *)updater didAbortWithError:(NSError *)error; 349 | 350 | @end 351 | 352 | NS_ASSUME_NONNULL_END 353 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | #pragma clang diagnostic push 16 | // Do not use <> style includes since 2.x has two frameworks that need to work: Sparkle and SparkleCore 17 | #pragma clang diagnostic ignored "-Wquoted-include-in-framework-header" 18 | 19 | #import "SUAppcast.h" 20 | #import "SUAppcastItem.h" 21 | #import "SUStandardVersionComparator.h" 22 | #import "SUUpdater.h" 23 | #import "SUUpdaterDelegate.h" 24 | #import "SUVersionComparisonProtocol.h" 25 | #import "SUVersionDisplayProtocol.h" 26 | #import "SUErrors.h" 27 | 28 | #import "SPUDownloader.h" 29 | #import "SPUDownloaderDelegate.h" 30 | #import "SPUDownloaderDeprecated.h" 31 | #import "SPUDownloadData.h" 32 | #import "SPUDownloaderProtocol.h" 33 | #import "SPUDownloaderSession.h" 34 | #import "SPUURLRequest.h" 35 | #import "SUCodeSigningVerifier.h" 36 | 37 | #pragma clang diagnostic pop 38 | 39 | #endif 40 | -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Sparkle { 2 | umbrella header "Sparkle.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20B28 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.24.0 a-67-g0e162c98 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.24.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12C5020f 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.1 37 | DTSDKBuild 38 | 20C5048g 39 | DTSDKName 40 | macosx11.1 41 | DTXcode 42 | 1230 43 | DTXcodeBuild 44 | 12C5020f 45 | LSBackgroundOnly 46 | 1 47 | LSMinimumSystemVersion 48 | 10.7 49 | LSUIElement 50 | 1 51 | NSMainNibFile 52 | MainMenu 53 | NSPrincipalClass 54 | NSApplication 55 | 56 | 57 | -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20B28 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.24.0 a-67-g0e162c98 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.24.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12C5020f 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.1 37 | DTSDKBuild 38 | 20C5048g 39 | DTSDKName 40 | macosx11.1 41 | DTXcode 42 | 1230 43 | DTXcodeBuild 44 | 12C5020f 45 | LSMinimumSystemVersion 46 | 10.7 47 | 48 | 49 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/hr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/hr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/Scrapple/c639a87fe9d2cb8db30869875f46e8b28995175e/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A --------------------------------------------------------------------------------