├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── cli.js ├── license ├── package.json ├── readme.md ├── test.js └── vendor └── Touch Bar Simulator.app └── Contents ├── Frameworks ├── DFRFoundation.framework │ ├── DFRFoundation │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── DFRFoundation │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ ├── framework.sb │ │ │ ├── touch@2x.png │ │ │ └── version.plist │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current ├── SkyLight.framework │ ├── Resources │ ├── SkyLight │ └── Versions │ │ ├── A │ │ ├── Resources │ │ │ ├── Configuration.plist │ │ │ ├── CursorAsset │ │ │ ├── Info.plist │ │ │ ├── SkyLightShaders.air64.metallib │ │ │ ├── WSInfo │ │ │ ├── WindowServer │ │ │ └── version.plist │ │ ├── SkyLight │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current ├── Sparkle.framework │ ├── Resources │ ├── Sparkle │ └── Versions │ │ ├── A │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 ├── libswiftAppKit.dylib ├── libswiftCore.dylib ├── libswiftCoreData.dylib ├── libswiftCoreFoundation.dylib ├── libswiftCoreGraphics.dylib ├── libswiftCoreImage.dylib ├── libswiftDarwin.dylib ├── libswiftDispatch.dylib ├── libswiftFoundation.dylib ├── libswiftIOKit.dylib ├── libswiftMetal.dylib ├── libswiftObjectiveC.dylib ├── libswiftQuartzCore.dylib ├── libswiftXPC.dylib └── libswiftos.dylib ├── Info.plist ├── MacOS └── Touch Bar Simulator ├── PkgInfo ├── Resources ├── AppIcon.icns └── Assets.car └── _CodeSignature └── CodeResources /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | 10 | [*.yml] 11 | indent_style = space 12 | indent_size = 2 13 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | on: 3 | - push 4 | - pull_request 5 | jobs: 6 | test: 7 | name: Node.js ${{ matrix.node-version }} 8 | runs-on: ubuntu-latest 9 | strategy: 10 | fail-fast: false 11 | matrix: 12 | node-version: 13 | - 14 14 | - 12 15 | - 10 16 | - 8 17 | steps: 18 | - uses: actions/checkout@v2 19 | - uses: actions/setup-node@v1 20 | with: 21 | node-version: ${{ matrix.node-version }} 22 | - run: npm install 23 | - run: npm test 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict'; 3 | const path = require('path'); 4 | const meow = require('meow'); 5 | const execa = require('execa'); 6 | const macosVersion = require('macos-version'); 7 | 8 | macosVersion.assertGreaterThanOrEqualTo('10.14'); 9 | 10 | meow(` 11 | Example 12 | $ touch-bar 13 | `); 14 | 15 | const appPath = path.resolve(__dirname, 'vendor/Touch Bar Simulator.app'); 16 | 17 | execa('open', ['-a', appPath]); 18 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Sindre Sorhus (sindresorhus.com) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "touch-bar", 3 | "version": "2.0.0", 4 | "description": "Launch the macOS Touch Bar simulator from the command-line", 5 | "license": "MIT", 6 | "repository": "sindresorhus/touch-bar", 7 | "author": { 8 | "name": "Sindre Sorhus", 9 | "email": "sindresorhus@gmail.com", 10 | "url": "sindresorhus.com" 11 | }, 12 | "bin": "cli.js", 13 | "engines": { 14 | "node": ">=8" 15 | }, 16 | "scripts": { 17 | "test": "xo && ava" 18 | }, 19 | "files": [ 20 | "cli.js", 21 | "vendor" 22 | ], 23 | "keywords": [ 24 | "cli-app", 25 | "cli", 26 | "macos", 27 | "touch", 28 | "bar", 29 | "touchbar", 30 | "macbook" 31 | ], 32 | "dependencies": { 33 | "execa": "^1.0.0", 34 | "macos-version": "^4.1.0", 35 | "meow": "^5.0.0" 36 | }, 37 | "devDependencies": { 38 | "ava": "^0.25.0", 39 | "xo": "^0.23.0" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # touch-bar 2 | 3 | > Launch the macOS [Touch Bar simulator](https://github.com/sindresorhus/touch-bar-simulator) from the command-line 4 | 5 | 6 | ## Install 7 | 8 | ``` 9 | $ npm install --global touch-bar 10 | ``` 11 | 12 | *Requires macOS 10.14 or later.* 13 | 14 | 15 | ## Usage 16 | 17 | ``` 18 | $ touch-bar 19 | ``` 20 | 21 | 22 | ## Related 23 | 24 | - [touch-bar-simulator](https://github.com/sindresorhus/touch-bar-simulator) - The app used in this module 25 | 26 | 27 | ## License 28 | 29 | MIT © [Sindre Sorhus](https://sindresorhus.com) 30 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | import test from 'ava'; 2 | import execa from 'execa'; 3 | 4 | if (process.env.CI) { 5 | test('ci', t => { 6 | t.pass(); 7 | }); 8 | } else { 9 | test('main', async t => { 10 | await t.notThrows(execa('./cli.js')); 11 | }); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/DFRFoundation.framework/DFRFoundation: -------------------------------------------------------------------------------- 1 | Versions/Current/DFRFoundation -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/DFRFoundation.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/DFRFoundation.framework/Versions/A/DFRFoundation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/DFRFoundation.framework/Versions/A/DFRFoundation -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/DFRFoundation.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17A405001 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | DFRFoundation 11 | CFBundleIdentifier 12 | com.apple.framework.DFRFoundation 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | DFRFoundation 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 210 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10L213p 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 10.14 37 | DTSDKBuild 38 | 18A371 39 | DTSDKName 40 | macosx10.14internal 41 | DTXcode 42 | 1000 43 | DTXcodeBuild 44 | 10L213p 45 | LSMinimumSystemVersion 46 | 10.14 47 | NSHumanReadableCopyright 48 | Copyright © 2015-2017 Apple Inc. All rights reserved. 49 | 50 | 51 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/DFRFoundation.framework/Versions/A/Resources/framework.sb: -------------------------------------------------------------------------------- 1 | ;; 2 | ;; DFRFoundation - sandbox profile 3 | ;; Copyright (c) 2015 Apple Inc. All Rights reserved. 4 | ;; 5 | ;; WARNING: The sandbox rules in this file currently constitute 6 | ;; Apple System Private Interface and are subject to change at any time and 7 | ;; without notice. The contents of this file are also auto-generated and not 8 | ;; user editable; it may be overwritten at any time. 9 | ;; 10 | 11 | (allow mach-lookup 12 | (global-name "com.apple.touchbarserver") 13 | (global-name "com.apple.touchbarserver.mig") 14 | (global-name "com.apple.controlstrip")) 15 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/DFRFoundation.framework/Versions/A/Resources/touch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/DFRFoundation.framework/Versions/A/Resources/touch@2x.png -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/DFRFoundation.framework/Versions/A/Resources/version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildAliasOf 6 | TouchBarServer 7 | BuildVersion 8 | 216 9 | CFBundleShortVersionString 10 | 1.0 11 | CFBundleVersion 12 | 210 13 | ProjectName 14 | DFRFoundation 15 | SourceVersion 16 | 210000000000000 17 | 18 | 19 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/DFRFoundation.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/Info.plist 8 | 9 | /CVpjeVzV2nMsj3B68+2QL7gDpk= 10 | 11 | Resources/framework.sb 12 | 13 | 3Uc49F7sREbWYid2b1B1ozqeEmM= 14 | 15 | Resources/touch@2x.png 16 | 17 | h+aMWmjQ4Sb6zVAgyKgsR27HZDs= 18 | 19 | Resources/version.plist 20 | 21 | /k1UHIlqxuBJ+7+ULh/eIVhtwiM= 22 | 23 | 24 | files2 25 | 26 | Resources/Info.plist 27 | 28 | hash2 29 | 30 | YxqgvKoXjpr4Q2pGRWZ8Ys+jjMhb7W27VddRZfnPaS0= 31 | 32 | 33 | Resources/framework.sb 34 | 35 | hash2 36 | 37 | NnN+KrJHwS0S4o8MUH63dQYMsC1SUrBoJBeG4GWf5yc= 38 | 39 | 40 | Resources/touch@2x.png 41 | 42 | hash2 43 | 44 | n88f6ShanSDaD/9SrF60iwVdJBQRVfVH0oA+KHSanDM= 45 | 46 | 47 | Resources/version.plist 48 | 49 | hash2 50 | 51 | kRM6nWu9FqTtycn0wX5cLpNieZDUi6kui3IavQ88tNE= 52 | 53 | 54 | 55 | rules 56 | 57 | ^Resources/ 58 | 59 | ^Resources/.*\.lproj/ 60 | 61 | optional 62 | 63 | weight 64 | 1000 65 | 66 | ^Resources/.*\.lproj/locversion.plist$ 67 | 68 | omit 69 | 70 | weight 71 | 1100 72 | 73 | ^Resources/Base\.lproj/ 74 | 75 | weight 76 | 1010 77 | 78 | ^version.plist$ 79 | 80 | 81 | rules2 82 | 83 | .*\.dSYM($|/) 84 | 85 | weight 86 | 11 87 | 88 | ^(.*/)?\.DS_Store$ 89 | 90 | omit 91 | 92 | weight 93 | 2000 94 | 95 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 96 | 97 | nested 98 | 99 | weight 100 | 10 101 | 102 | ^.* 103 | 104 | ^Info\.plist$ 105 | 106 | omit 107 | 108 | weight 109 | 20 110 | 111 | ^PkgInfo$ 112 | 113 | omit 114 | 115 | weight 116 | 20 117 | 118 | ^Resources/ 119 | 120 | weight 121 | 20 122 | 123 | ^Resources/.*\.lproj/ 124 | 125 | optional 126 | 127 | weight 128 | 1000 129 | 130 | ^Resources/.*\.lproj/locversion.plist$ 131 | 132 | omit 133 | 134 | weight 135 | 1100 136 | 137 | ^Resources/Base\.lproj/ 138 | 139 | weight 140 | 1010 141 | 142 | ^[^/]+$ 143 | 144 | nested 145 | 146 | weight 147 | 10 148 | 149 | ^embedded\.provisionprofile$ 150 | 151 | weight 152 | 20 153 | 154 | ^version\.plist$ 155 | 156 | weight 157 | 20 158 | 159 | 160 | 161 | 162 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/DFRFoundation.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/SkyLight: -------------------------------------------------------------------------------- 1 | Versions/Current/SkyLight -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/Configuration.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/Configuration.plist -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/CursorAsset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/CursorAsset -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17A405001 7 | CFBundleExecutable 8 | SkyLight 9 | CFBundleIdentifier 10 | com.apple.SkyLight 11 | CFBundleName 12 | SkyLight 13 | CFBundleShortVersionString 14 | 1.600.0 15 | CFBundleSupportedPlatforms 16 | 17 | MacOSX 18 | 19 | DTCompiler 20 | com.apple.compilers.llvm.clang.1_0 21 | DTPlatformBuild 22 | 10L213p 23 | DTPlatformName 24 | macosx 25 | DTPlatformVersion 26 | 10.14 27 | DTSDKBuild 28 | 18A381 29 | DTSDKName 30 | macosx10.14internal 31 | DTXcode 32 | 1000 33 | DTXcodeBuild 34 | 10L213p 35 | LSMinimumSystemVersion 36 | 10.14 37 | 38 | 39 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/SkyLightShaders.air64.metallib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/SkyLightShaders.air64.metallib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/WSInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/WSInfo -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/WindowServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/WindowServer -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/Resources/version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildAliasOf 6 | SkyLight 7 | BuildVersion 8 | 7 9 | CFBundleShortVersionString 10 | 1.600.0 11 | ProjectName 12 | SkyLight 13 | SourceVersion 14 | 336080006000000 15 | 16 | 17 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/SkyLight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/SkyLight -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/Configuration.plist 8 | 9 | jcI2+NL+zCsynBNHYorxvixc9pE= 10 | 11 | Resources/CursorAsset 12 | 13 | GlixPl52t1nDpdGRIepd7mWIkk4= 14 | 15 | Resources/Info.plist 16 | 17 | mw2DYoDszMJ6gyVZLcX0qoHerjg= 18 | 19 | Resources/SkyLightShaders.air64.metallib 20 | 21 | TcT7LBR+B4AfYf7/J0JaN2LB0TY= 22 | 23 | Resources/WSInfo 24 | 25 | oBUJ4JSyYUjxxHnzWEZVMRYOH1g= 26 | 27 | Resources/WindowServer 28 | 29 | KxIe2tFH27LN1tdGwiP8/Wu+8U0= 30 | 31 | Resources/version.plist 32 | 33 | iS6HoqOQDv2BQckorEU70e/HjwM= 34 | 35 | 36 | files2 37 | 38 | Resources/Configuration.plist 39 | 40 | hash2 41 | 42 | l4g521VLX8g9Eo8/voNyPOhlFvrPlqD/m3uL0TyB950= 43 | 44 | 45 | Resources/CursorAsset 46 | 47 | hash2 48 | 49 | uRJ47Kv7TkNaWhq3IKf86KShruDqNo6yRhhBsi1KkL0= 50 | 51 | 52 | Resources/Info.plist 53 | 54 | hash2 55 | 56 | evXD8ZKwSNhQTvamXIxiKDaM6L9Pm5tEBmwNA5jQa+Q= 57 | 58 | 59 | Resources/SkyLightShaders.air64.metallib 60 | 61 | hash2 62 | 63 | cJvd1IkCpkOo7Rt2qnSxMneGjroiotkSfRHqiTvKD1Q= 64 | 65 | 66 | Resources/WSInfo 67 | 68 | hash2 69 | 70 | 3zmrytuRILVhLmt3d8Z3dDAf+pMwWOqFZsM5Lwoj4VI= 71 | 72 | 73 | Resources/WindowServer 74 | 75 | hash2 76 | 77 | 0zOHqHKedL6YPUefE26Itk6aifvHdBGfB1RmR/HcdRA= 78 | 79 | 80 | Resources/version.plist 81 | 82 | hash2 83 | 84 | evWHjU8jwYG2jf9XVho5IwRhiO86gkk7jvQES8UXM90= 85 | 86 | 87 | 88 | rules 89 | 90 | ^Resources/ 91 | 92 | ^Resources/.*\.lproj/ 93 | 94 | optional 95 | 96 | weight 97 | 1000 98 | 99 | ^Resources/.*\.lproj/locversion.plist$ 100 | 101 | omit 102 | 103 | weight 104 | 1100 105 | 106 | ^Resources/Base\.lproj/ 107 | 108 | weight 109 | 1010 110 | 111 | ^version.plist$ 112 | 113 | 114 | rules2 115 | 116 | .*\.dSYM($|/) 117 | 118 | weight 119 | 11 120 | 121 | ^(.*/)?\.DS_Store$ 122 | 123 | omit 124 | 125 | weight 126 | 2000 127 | 128 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 129 | 130 | nested 131 | 132 | weight 133 | 10 134 | 135 | ^.* 136 | 137 | ^Info\.plist$ 138 | 139 | omit 140 | 141 | weight 142 | 20 143 | 144 | ^PkgInfo$ 145 | 146 | omit 147 | 148 | weight 149 | 20 150 | 151 | ^Resources/ 152 | 153 | weight 154 | 20 155 | 156 | ^Resources/.*\.lproj/ 157 | 158 | optional 159 | 160 | weight 161 | 1000 162 | 163 | ^Resources/.*\.lproj/locversion.plist$ 164 | 165 | omit 166 | 167 | weight 168 | 1100 169 | 170 | ^Resources/Base\.lproj/ 171 | 172 | weight 173 | 1010 174 | 175 | ^[^/]+$ 176 | 177 | nested 178 | 179 | weight 180 | 10 181 | 182 | ^embedded\.provisionprofile$ 183 | 184 | weight 185 | 20 186 | 187 | ^version\.plist$ 188 | 189 | weight 190 | 20 191 | 192 | 193 | 194 | 195 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/SkyLight.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A384a 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.20.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.20.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10A255 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18A384 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1000 41 | DTXcodeBuild 42 | 10A255 43 | LSBackgroundOnly 44 | 1 45 | LSMinimumSystemVersion 46 | 10.7 47 | LSUIElement 48 | 1 49 | NSMainNibFile 50 | MainMenu 51 | NSPrincipalClass 52 | NSApplication 53 | 54 | 55 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/AppIcon.icns 8 | 9 | 4McwRDEss5BzWwUMG2Xf93+ze08= 10 | 11 | Resources/SUStatus.nib 12 | 13 | YmjEXrre3HCptnNsKrhatN5Kv/c= 14 | 15 | Resources/ar.lproj/Sparkle.strings 16 | 17 | hash 18 | 19 | 9n6+2ab5/d3baNlcFRfSpztHdKc= 20 | 21 | optional 22 | 23 | 24 | Resources/ca.lproj/Sparkle.strings 25 | 26 | hash 27 | 28 | K1BEF6sG2vXMLgibwfo3j2h588E= 29 | 30 | optional 31 | 32 | 33 | Resources/cs.lproj/Sparkle.strings 34 | 35 | hash 36 | 37 | oV92AOAArGmSW7Mp1Cr74C7zx1s= 38 | 39 | optional 40 | 41 | 42 | Resources/da.lproj/Sparkle.strings 43 | 44 | hash 45 | 46 | 88FAIY52ex+k6CHvZHUHiYpaSdQ= 47 | 48 | optional 49 | 50 | 51 | Resources/de.lproj/Sparkle.strings 52 | 53 | hash 54 | 55 | aFIBXoHVaewkHZLyMy8rCTXUNQ0= 56 | 57 | optional 58 | 59 | 60 | Resources/el.lproj/Sparkle.strings 61 | 62 | hash 63 | 64 | gQTKA4Zd4FpsXRLWTcEfqV3Czu0= 65 | 66 | optional 67 | 68 | 69 | Resources/en.lproj/Sparkle.strings 70 | 71 | hash 72 | 73 | D14kRfcAqRpBq5GMobJjIRUh/yc= 74 | 75 | optional 76 | 77 | 78 | Resources/es.lproj/Sparkle.strings 79 | 80 | hash 81 | 82 | saEdp9H51NgvY5tzYYY5QoM5dsg= 83 | 84 | optional 85 | 86 | 87 | Resources/fi.lproj/Sparkle.strings 88 | 89 | hash 90 | 91 | Xfk3iYvY4+ymcoVUpHQATY5FNLg= 92 | 93 | optional 94 | 95 | 96 | Resources/fr.lproj/Sparkle.strings 97 | 98 | hash 99 | 100 | ySuf1W/oXCB4ZX1wloQDxoAMmAA= 101 | 102 | optional 103 | 104 | 105 | Resources/he.lproj/Sparkle.strings 106 | 107 | hash 108 | 109 | ONZyQ7mMihp025wvYCm+YH5p9t8= 110 | 111 | optional 112 | 113 | 114 | Resources/hu.lproj/Sparkle.strings 115 | 116 | hash 117 | 118 | +TIsL/LOSbJlW/J9cAMXFHK17FA= 119 | 120 | optional 121 | 122 | 123 | Resources/is.lproj/Sparkle.strings 124 | 125 | hash 126 | 127 | bKE7f6KUVWbXzh+cBrwa31j6sXU= 128 | 129 | optional 130 | 131 | 132 | Resources/it.lproj/Sparkle.strings 133 | 134 | hash 135 | 136 | PGQtWau2xbYKJPKZjSvkwnPSSJU= 137 | 138 | optional 139 | 140 | 141 | Resources/ja.lproj/Sparkle.strings 142 | 143 | hash 144 | 145 | SkZ6V1m0j1Za3GCmzVfpgP0pIBU= 146 | 147 | optional 148 | 149 | 150 | Resources/ko.lproj/Sparkle.strings 151 | 152 | hash 153 | 154 | 36Fahhtf/RNpPA22ntiODYGqG30= 155 | 156 | optional 157 | 158 | 159 | Resources/nb.lproj/Sparkle.strings 160 | 161 | hash 162 | 163 | lxEVDkftYdIz5tpFIlCBRzjq1G8= 164 | 165 | optional 166 | 167 | 168 | Resources/nl.lproj/Sparkle.strings 169 | 170 | hash 171 | 172 | 3esiRzch9B/dcmSDuZOlhGRmvhI= 173 | 174 | optional 175 | 176 | 177 | Resources/pl.lproj/Sparkle.strings 178 | 179 | hash 180 | 181 | 5DAYxRDmzfZJHVzkzmq9B33cV+Q= 182 | 183 | optional 184 | 185 | 186 | Resources/pt_BR.lproj/Sparkle.strings 187 | 188 | hash 189 | 190 | 9OEsTkc4OnLubR99mP0Br13Mflo= 191 | 192 | optional 193 | 194 | 195 | Resources/pt_PT.lproj/Sparkle.strings 196 | 197 | hash 198 | 199 | DXgfdoW9r94wdvH+tYnJNakKzDs= 200 | 201 | optional 202 | 203 | 204 | Resources/ro.lproj/Sparkle.strings 205 | 206 | hash 207 | 208 | Yk1UW9SBQyAtNbFvLmiIjW/UCcc= 209 | 210 | optional 211 | 212 | 213 | Resources/ru.lproj/Sparkle.strings 214 | 215 | hash 216 | 217 | Px2O36VmsQbjS8ywxoJ/Pp+xQiQ= 218 | 219 | optional 220 | 221 | 222 | Resources/sk.lproj/Sparkle.strings 223 | 224 | hash 225 | 226 | 8A/scZSblfhf9/SAyz5Di2EqrqM= 227 | 228 | optional 229 | 230 | 231 | Resources/sl.lproj/Sparkle.strings 232 | 233 | hash 234 | 235 | YRXBwzauFczYTqobmqCxBBPR4DE= 236 | 237 | optional 238 | 239 | 240 | Resources/sv.lproj/Sparkle.strings 241 | 242 | hash 243 | 244 | K+ak+cmJ5S1D27ODU3IntD0wITI= 245 | 246 | optional 247 | 248 | 249 | Resources/th.lproj/Sparkle.strings 250 | 251 | hash 252 | 253 | anxUgZs0IJsgMZlzI1HUeCjvmrc= 254 | 255 | optional 256 | 257 | 258 | Resources/tr.lproj/Sparkle.strings 259 | 260 | hash 261 | 262 | 4L5cXvWM1KkQdn5c+uYML/PX6xg= 263 | 264 | optional 265 | 266 | 267 | Resources/uk.lproj/Sparkle.strings 268 | 269 | hash 270 | 271 | uhJ3st+FckuLz8HIH0r/RtUVGsw= 272 | 273 | optional 274 | 275 | 276 | Resources/zh_CN.lproj/Sparkle.strings 277 | 278 | hash 279 | 280 | JFvKYN1jjNAURBvctgcHJxsr1iA= 281 | 282 | optional 283 | 284 | 285 | Resources/zh_TW.lproj/Sparkle.strings 286 | 287 | hash 288 | 289 | fq2MGchNCsDkfRX6i950z9hnHAM= 290 | 291 | optional 292 | 293 | 294 | 295 | files2 296 | 297 | MacOS/fileop 298 | 299 | cdhash 300 | 301 | 1PZWeATEbQRN8jC2gl7eKNYh3z0= 302 | 303 | requirement 304 | anchor apple generic and identifier fileop and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 305 | 306 | Resources/AppIcon.icns 307 | 308 | hash 309 | 310 | 4McwRDEss5BzWwUMG2Xf93+ze08= 311 | 312 | hash2 313 | 314 | nq7j0ugQwyNbJn/7zGFwxIR0njwU3i7hAYKEyZhvUfE= 315 | 316 | 317 | Resources/SUStatus.nib 318 | 319 | hash 320 | 321 | YmjEXrre3HCptnNsKrhatN5Kv/c= 322 | 323 | hash2 324 | 325 | YkYQw7DDZ8HDzVzFPUaLw9ymbxmXOWoqsoJr+hjT+vw= 326 | 327 | 328 | Resources/ar.lproj/Sparkle.strings 329 | 330 | hash 331 | 332 | 9n6+2ab5/d3baNlcFRfSpztHdKc= 333 | 334 | hash2 335 | 336 | kEBNsn9OraKT0YF/n5ZaJC14Y/+GW/HI/CjiahPHgwM= 337 | 338 | optional 339 | 340 | 341 | Resources/ca.lproj/Sparkle.strings 342 | 343 | hash 344 | 345 | K1BEF6sG2vXMLgibwfo3j2h588E= 346 | 347 | hash2 348 | 349 | D01nO0KWUvaVR/PR0E95dLAlJCYEKPRh858t+lcxFto= 350 | 351 | optional 352 | 353 | 354 | Resources/cs.lproj/Sparkle.strings 355 | 356 | hash 357 | 358 | oV92AOAArGmSW7Mp1Cr74C7zx1s= 359 | 360 | hash2 361 | 362 | 7GfIV0Cn0XzZpKh/k81zfx5tMrwh4BC40CcYDTDzDZ8= 363 | 364 | optional 365 | 366 | 367 | Resources/da.lproj/Sparkle.strings 368 | 369 | hash 370 | 371 | 88FAIY52ex+k6CHvZHUHiYpaSdQ= 372 | 373 | hash2 374 | 375 | YtLfD1azWIUD2eqATgQak+tKys3x9ZFjo91mSYwSY68= 376 | 377 | optional 378 | 379 | 380 | Resources/de.lproj/Sparkle.strings 381 | 382 | hash 383 | 384 | aFIBXoHVaewkHZLyMy8rCTXUNQ0= 385 | 386 | hash2 387 | 388 | veXcpERRtworZCTZFpq6GTcRafdACMWDh9QC0psa2/0= 389 | 390 | optional 391 | 392 | 393 | Resources/el.lproj/Sparkle.strings 394 | 395 | hash 396 | 397 | gQTKA4Zd4FpsXRLWTcEfqV3Czu0= 398 | 399 | hash2 400 | 401 | DpBU2fltmtw85+0U85gXwPH8qApgI0zbG6K0qIn2X0c= 402 | 403 | optional 404 | 405 | 406 | Resources/en.lproj/Sparkle.strings 407 | 408 | hash 409 | 410 | D14kRfcAqRpBq5GMobJjIRUh/yc= 411 | 412 | hash2 413 | 414 | UgBa+U3LY4m8juJ+PqXx4Zq4/EaRW9KMvUIp1GE/AQs= 415 | 416 | optional 417 | 418 | 419 | Resources/es.lproj/Sparkle.strings 420 | 421 | hash 422 | 423 | saEdp9H51NgvY5tzYYY5QoM5dsg= 424 | 425 | hash2 426 | 427 | Rv71G/XkSv/4JZd+ejfFkpu4HKXFsM0Nxe094rw3mAQ= 428 | 429 | optional 430 | 431 | 432 | Resources/fi.lproj/Sparkle.strings 433 | 434 | hash 435 | 436 | Xfk3iYvY4+ymcoVUpHQATY5FNLg= 437 | 438 | hash2 439 | 440 | DwdjkY2nc5XvSzY7wbwHcwKnnCfJXwDl1bO6PbtoeUU= 441 | 442 | optional 443 | 444 | 445 | Resources/fr.lproj/Sparkle.strings 446 | 447 | hash 448 | 449 | ySuf1W/oXCB4ZX1wloQDxoAMmAA= 450 | 451 | hash2 452 | 453 | uwpnRFOnusMwYJvTxNLG0RdzAwDoH83iKciaeRTtmMk= 454 | 455 | optional 456 | 457 | 458 | Resources/he.lproj/Sparkle.strings 459 | 460 | hash 461 | 462 | ONZyQ7mMihp025wvYCm+YH5p9t8= 463 | 464 | hash2 465 | 466 | 35ECtsAW7lQQpZTAtYBIKgel5ItYO6FvWJaSueWWqVU= 467 | 468 | optional 469 | 470 | 471 | Resources/hu.lproj/Sparkle.strings 472 | 473 | hash 474 | 475 | +TIsL/LOSbJlW/J9cAMXFHK17FA= 476 | 477 | hash2 478 | 479 | 1N/ySk8tpKij7RyDNK6fTXjHqEmWJkcoSsSDAjMTooU= 480 | 481 | optional 482 | 483 | 484 | Resources/is.lproj/Sparkle.strings 485 | 486 | hash 487 | 488 | bKE7f6KUVWbXzh+cBrwa31j6sXU= 489 | 490 | hash2 491 | 492 | Dh4VgRSkntzRdCDvUFT0O91wxRUTyfKmsonwoD8JO3s= 493 | 494 | optional 495 | 496 | 497 | Resources/it.lproj/Sparkle.strings 498 | 499 | hash 500 | 501 | PGQtWau2xbYKJPKZjSvkwnPSSJU= 502 | 503 | hash2 504 | 505 | 6KWPm6/BMUnxP7kax40a/akTj6RVSNWSgXpS2+5bkMg= 506 | 507 | optional 508 | 509 | 510 | Resources/ja.lproj/Sparkle.strings 511 | 512 | hash 513 | 514 | SkZ6V1m0j1Za3GCmzVfpgP0pIBU= 515 | 516 | hash2 517 | 518 | WwKlqu3Hr89+HxOExBoaMwcXdNeW7VhIHqnvUraJFv0= 519 | 520 | optional 521 | 522 | 523 | Resources/ko.lproj/Sparkle.strings 524 | 525 | hash 526 | 527 | 36Fahhtf/RNpPA22ntiODYGqG30= 528 | 529 | hash2 530 | 531 | oX2Hsbm8fF05oGgMFXazS+rqg3KswApukPT1inQKxs8= 532 | 533 | optional 534 | 535 | 536 | Resources/nb.lproj/Sparkle.strings 537 | 538 | hash 539 | 540 | lxEVDkftYdIz5tpFIlCBRzjq1G8= 541 | 542 | hash2 543 | 544 | j1Ga6bYhYJ7h65dfZiX0udIIngNspVWPJaqKaEZhdIY= 545 | 546 | optional 547 | 548 | 549 | Resources/nl.lproj/Sparkle.strings 550 | 551 | hash 552 | 553 | 3esiRzch9B/dcmSDuZOlhGRmvhI= 554 | 555 | hash2 556 | 557 | Ft3lAx+eG7MsySkCRtYN7wT7zRTPWDsJDJnghgcNWrA= 558 | 559 | optional 560 | 561 | 562 | Resources/pl.lproj/Sparkle.strings 563 | 564 | hash 565 | 566 | 5DAYxRDmzfZJHVzkzmq9B33cV+Q= 567 | 568 | hash2 569 | 570 | tv/j3ywfuO1E3J5/vmrVFQ3cbZPi3EudMtacnjqVqWA= 571 | 572 | optional 573 | 574 | 575 | Resources/pt_BR.lproj/Sparkle.strings 576 | 577 | hash 578 | 579 | 9OEsTkc4OnLubR99mP0Br13Mflo= 580 | 581 | hash2 582 | 583 | p12hYL8AHpuT+aXzheKTHwZEQFpPfc/qCoaYe7NmP6I= 584 | 585 | optional 586 | 587 | 588 | Resources/pt_PT.lproj/Sparkle.strings 589 | 590 | hash 591 | 592 | DXgfdoW9r94wdvH+tYnJNakKzDs= 593 | 594 | hash2 595 | 596 | xjNkmadedPLED0QHUgWiGXlJ/d0rZeHWkUmAyGdURyA= 597 | 598 | optional 599 | 600 | 601 | Resources/ro.lproj/Sparkle.strings 602 | 603 | hash 604 | 605 | Yk1UW9SBQyAtNbFvLmiIjW/UCcc= 606 | 607 | hash2 608 | 609 | IffqR5gxQdL9YEeJj/L9jauu1eduqT1taxe3hKDDXOk= 610 | 611 | optional 612 | 613 | 614 | Resources/ru.lproj/Sparkle.strings 615 | 616 | hash 617 | 618 | Px2O36VmsQbjS8ywxoJ/Pp+xQiQ= 619 | 620 | hash2 621 | 622 | MBWSZcnNsYWJkCrv3YDWyANbEghjnWl8TFrApZqIh8c= 623 | 624 | optional 625 | 626 | 627 | Resources/sk.lproj/Sparkle.strings 628 | 629 | hash 630 | 631 | 8A/scZSblfhf9/SAyz5Di2EqrqM= 632 | 633 | hash2 634 | 635 | hKJVJbokW6LXrUqrf3FyGAxdnXJe+NAM1IzwtfMpPTs= 636 | 637 | optional 638 | 639 | 640 | Resources/sl.lproj/Sparkle.strings 641 | 642 | hash 643 | 644 | YRXBwzauFczYTqobmqCxBBPR4DE= 645 | 646 | hash2 647 | 648 | mO9OxrL9L5y2wDXWsMt11pjcxa4wJrXVXM26w/TWqpE= 649 | 650 | optional 651 | 652 | 653 | Resources/sv.lproj/Sparkle.strings 654 | 655 | hash 656 | 657 | K+ak+cmJ5S1D27ODU3IntD0wITI= 658 | 659 | hash2 660 | 661 | OXVaG3Vrb1xKlSXHj2qnMe/+X3r5r+huDymhPpx7j5w= 662 | 663 | optional 664 | 665 | 666 | Resources/th.lproj/Sparkle.strings 667 | 668 | hash 669 | 670 | anxUgZs0IJsgMZlzI1HUeCjvmrc= 671 | 672 | hash2 673 | 674 | uFBTQa44/YKNE5qHbmLqdlZUuLF0Zfk0LepBeIQ7ZQ8= 675 | 676 | optional 677 | 678 | 679 | Resources/tr.lproj/Sparkle.strings 680 | 681 | hash 682 | 683 | 4L5cXvWM1KkQdn5c+uYML/PX6xg= 684 | 685 | hash2 686 | 687 | rOuDu7og0MYRXCQMAZ48ge5FRTN4+ZBYl9DxJEDnDaY= 688 | 689 | optional 690 | 691 | 692 | Resources/uk.lproj/Sparkle.strings 693 | 694 | hash 695 | 696 | uhJ3st+FckuLz8HIH0r/RtUVGsw= 697 | 698 | hash2 699 | 700 | AdON9wb2iTlde8P8StWkzdTMy8iL7M6mj94hIj6ixA0= 701 | 702 | optional 703 | 704 | 705 | Resources/zh_CN.lproj/Sparkle.strings 706 | 707 | hash 708 | 709 | JFvKYN1jjNAURBvctgcHJxsr1iA= 710 | 711 | hash2 712 | 713 | NgmrcL+YBJDI967Qilj/xC5XpMheyS0Jlyg+J8qEhrg= 714 | 715 | optional 716 | 717 | 718 | Resources/zh_TW.lproj/Sparkle.strings 719 | 720 | hash 721 | 722 | fq2MGchNCsDkfRX6i950z9hnHAM= 723 | 724 | hash2 725 | 726 | 4bQfH6cx4JPlejfZbFtgdDFbRS9FENa0UFlKJqZqhtg= 727 | 728 | optional 729 | 730 | 731 | 732 | rules 733 | 734 | ^Resources/ 735 | 736 | ^Resources/.*\.lproj/ 737 | 738 | optional 739 | 740 | weight 741 | 1000 742 | 743 | ^Resources/.*\.lproj/locversion.plist$ 744 | 745 | omit 746 | 747 | weight 748 | 1100 749 | 750 | ^Resources/Base\.lproj/ 751 | 752 | weight 753 | 1010 754 | 755 | ^version.plist$ 756 | 757 | 758 | rules2 759 | 760 | .*\.dSYM($|/) 761 | 762 | weight 763 | 11 764 | 765 | ^(.*/)?\.DS_Store$ 766 | 767 | omit 768 | 769 | weight 770 | 2000 771 | 772 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 773 | 774 | nested 775 | 776 | weight 777 | 10 778 | 779 | ^.* 780 | 781 | ^Info\.plist$ 782 | 783 | omit 784 | 785 | weight 786 | 20 787 | 788 | ^PkgInfo$ 789 | 790 | omit 791 | 792 | weight 793 | 20 794 | 795 | ^Resources/ 796 | 797 | weight 798 | 20 799 | 800 | ^Resources/.*\.lproj/ 801 | 802 | optional 803 | 804 | weight 805 | 1000 806 | 807 | ^Resources/.*\.lproj/locversion.plist$ 808 | 809 | omit 810 | 811 | weight 812 | 1100 813 | 814 | ^Resources/Base\.lproj/ 815 | 816 | weight 817 | 1010 818 | 819 | ^[^/]+$ 820 | 821 | nested 822 | 823 | weight 824 | 10 825 | 826 | ^embedded\.provisionprofile$ 827 | 828 | weight 829 | 20 830 | 831 | ^version\.plist$ 832 | 833 | weight 834 | 20 835 | 836 | 837 | 838 | 839 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A384a 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.20.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.20.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10A255 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18A384 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1000 41 | DTXcodeBuild 42 | 10A255 43 | 44 | 45 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/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 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftAppKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftAppKit.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftCore.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftCoreData.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftCoreData.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftCoreFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftCoreFoundation.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftCoreGraphics.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftCoreGraphics.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftCoreImage.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftCoreImage.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftDarwin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftDarwin.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftDispatch.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftDispatch.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftFoundation.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftIOKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftIOKit.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftMetal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftMetal.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftObjectiveC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftObjectiveC.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftQuartzCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftQuartzCore.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftXPC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftXPC.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftos.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Frameworks/libswiftos.dylib -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleExecutable 8 | Touch Bar Simulator 9 | CFBundleIconFile 10 | AppIcon 11 | CFBundleIconName 12 | AppIcon 13 | CFBundleIdentifier 14 | com.sindresorhus.Touch-Bar-Simulator 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | Touch Bar Simulator 19 | CFBundlePackageType 20 | APPL 21 | CFBundleShortVersionString 22 | 2.0.0 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.0.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10A255 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18A384 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1000 41 | DTXcodeBuild 42 | 10A255 43 | LSApplicationCategoryType 44 | public.app-category.developer-tools 45 | LSMinimumSystemVersion 46 | 10.14 47 | LSUIElement 48 | 49 | NSHumanReadableCopyright 50 | MIT License © Sindre Sorhus 51 | NSPrincipalClass 52 | NSApplication 53 | NSServices 54 | 55 | 56 | NSKeyEquivalent 57 | 58 | NSMenuItem 59 | 60 | default 61 | Toggle Touch Bar 62 | 63 | NSMessage 64 | toggleView 65 | NSPortName 66 | Touch Bar Simulator 67 | 68 | 69 | SUEnableAutomaticChecks 70 | 71 | SUFeedURL 72 | https://sindresorhus.com/touch-bar-simulator/appcast.xml 73 | 74 | 75 | -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/MacOS/Touch Bar Simulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/MacOS/Touch Bar Simulator -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/Resources/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/touch-bar/d06d9e5bca8767b94291405240128fd5fef147de/vendor/Touch Bar Simulator.app/Contents/Resources/Assets.car -------------------------------------------------------------------------------- /vendor/Touch Bar Simulator.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/AppIcon.icns 8 | 9 | LdYsiOJFEtf/OoeDL83B3CbUnX8= 10 | 11 | Resources/Assets.car 12 | 13 | nB7G/UliP7qw1rV/mmMz+nEsYeY= 14 | 15 | 16 | files2 17 | 18 | Frameworks/DFRFoundation.framework 19 | 20 | cdhash 21 | 22 | /KXs/9z0axfU4Ix245w5zwmSkuc= 23 | 24 | requirement 25 | anchor apple generic and identifier "com.apple.framework.DFRFoundation" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 26 | 27 | Frameworks/SkyLight.framework 28 | 29 | cdhash 30 | 31 | iuMH/6TY2Tw2zWSM+9PLhVYUFwc= 32 | 33 | requirement 34 | anchor apple generic and identifier "com.apple.SkyLight" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 35 | 36 | Frameworks/Sparkle.framework 37 | 38 | cdhash 39 | 40 | bf+PZB8dB3k2K6uFCTvDcsrARDQ= 41 | 42 | requirement 43 | anchor apple generic and identifier "org.sparkle-project.Sparkle" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 44 | 45 | Frameworks/libswiftAppKit.dylib 46 | 47 | cdhash 48 | 49 | UYspVxwQXTjgC+u+OhrqCatwpSc= 50 | 51 | requirement 52 | anchor apple generic and identifier "com.apple.dt.runtime.swiftAppKit" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 53 | 54 | Frameworks/libswiftCore.dylib 55 | 56 | cdhash 57 | 58 | /ybYduDVVR4mKzdePtmL266x+ko= 59 | 60 | requirement 61 | anchor apple generic and identifier "com.apple.dt.runtime.swiftCore" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 62 | 63 | Frameworks/libswiftCoreData.dylib 64 | 65 | cdhash 66 | 67 | y+khHMoJwC9hJs4PnrCrE168zK4= 68 | 69 | requirement 70 | anchor apple generic and identifier "com.apple.dt.runtime.swiftCoreData" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 71 | 72 | Frameworks/libswiftCoreFoundation.dylib 73 | 74 | cdhash 75 | 76 | PSkpuKpakwRNzQqldn7+RAH4ZQo= 77 | 78 | requirement 79 | anchor apple generic and identifier "com.apple.dt.runtime.swiftCoreFoundation" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 80 | 81 | Frameworks/libswiftCoreGraphics.dylib 82 | 83 | cdhash 84 | 85 | g9uPV5EBkclKLZbjzERe7JFLp+4= 86 | 87 | requirement 88 | anchor apple generic and identifier "com.apple.dt.runtime.swiftCoreGraphics" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 89 | 90 | Frameworks/libswiftCoreImage.dylib 91 | 92 | cdhash 93 | 94 | 5GLoojGRxR8Ci5Jftjxyl26o7i8= 95 | 96 | requirement 97 | anchor apple generic and identifier "com.apple.dt.runtime.swiftCoreImage" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 98 | 99 | Frameworks/libswiftDarwin.dylib 100 | 101 | cdhash 102 | 103 | 5mQ1ctDLhyTxsunwqwu9YYRAbuI= 104 | 105 | requirement 106 | anchor apple generic and identifier "com.apple.dt.runtime.swiftDarwin" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 107 | 108 | Frameworks/libswiftDispatch.dylib 109 | 110 | cdhash 111 | 112 | seU0VhP+b+/AfJ4PWmKpAzxicKo= 113 | 114 | requirement 115 | anchor apple generic and identifier "com.apple.dt.runtime.swiftDispatch" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 116 | 117 | Frameworks/libswiftFoundation.dylib 118 | 119 | cdhash 120 | 121 | +Qc2SMV1NVvKlps+AtjMRWZcWMM= 122 | 123 | requirement 124 | anchor apple generic and identifier "com.apple.dt.runtime.swiftFoundation" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 125 | 126 | Frameworks/libswiftIOKit.dylib 127 | 128 | cdhash 129 | 130 | L+HOfXX/GQhJ3lXZL6aK5mU1AeI= 131 | 132 | requirement 133 | anchor apple generic and identifier "com.apple.dt.runtime.swiftIOKit" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 134 | 135 | Frameworks/libswiftMetal.dylib 136 | 137 | cdhash 138 | 139 | sbF7/f8HW+ITCUC7o4ocHBuiny4= 140 | 141 | requirement 142 | anchor apple generic and identifier "com.apple.dt.runtime.swiftMetal" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 143 | 144 | Frameworks/libswiftObjectiveC.dylib 145 | 146 | cdhash 147 | 148 | BPYv70pccDoTahEHHmnupN40fdY= 149 | 150 | requirement 151 | anchor apple generic and identifier "com.apple.dt.runtime.swiftObjectiveC" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 152 | 153 | Frameworks/libswiftQuartzCore.dylib 154 | 155 | cdhash 156 | 157 | WVpOo3sGIQKM9dHGPbDuonfT7BM= 158 | 159 | requirement 160 | anchor apple generic and identifier "com.apple.dt.runtime.swiftQuartzCore" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 161 | 162 | Frameworks/libswiftXPC.dylib 163 | 164 | cdhash 165 | 166 | TTG5C+pKy4mFzRDwZ8ZLrtobLjc= 167 | 168 | requirement 169 | anchor apple generic and identifier "com.apple.dt.runtime.swiftXPC" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 170 | 171 | Frameworks/libswiftos.dylib 172 | 173 | cdhash 174 | 175 | l2s+OC45OJnZQ5LI734yvDTm+Xs= 176 | 177 | requirement 178 | anchor apple generic and identifier "com.apple.dt.runtime.swiftos" and (certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = YG56YK5RN5) 179 | 180 | Resources/AppIcon.icns 181 | 182 | hash2 183 | 184 | nW1rugoP0T2Jf7284eyYike/j9/5EyIN1GlOgA+6TO4= 185 | 186 | 187 | Resources/Assets.car 188 | 189 | hash2 190 | 191 | Nl8qpDoT8hv7JXI+GHF0YP6EF030U33Ut+6Qs5JBT+I= 192 | 193 | 194 | 195 | rules 196 | 197 | ^Resources/ 198 | 199 | ^Resources/.*\.lproj/ 200 | 201 | optional 202 | 203 | weight 204 | 1000 205 | 206 | ^Resources/.*\.lproj/locversion.plist$ 207 | 208 | omit 209 | 210 | weight 211 | 1100 212 | 213 | ^Resources/Base\.lproj/ 214 | 215 | weight 216 | 1010 217 | 218 | ^version.plist$ 219 | 220 | 221 | rules2 222 | 223 | .*\.dSYM($|/) 224 | 225 | weight 226 | 11 227 | 228 | ^(.*/)?\.DS_Store$ 229 | 230 | omit 231 | 232 | weight 233 | 2000 234 | 235 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 236 | 237 | nested 238 | 239 | weight 240 | 10 241 | 242 | ^.* 243 | 244 | ^Info\.plist$ 245 | 246 | omit 247 | 248 | weight 249 | 20 250 | 251 | ^PkgInfo$ 252 | 253 | omit 254 | 255 | weight 256 | 20 257 | 258 | ^Resources/ 259 | 260 | weight 261 | 20 262 | 263 | ^Resources/.*\.lproj/ 264 | 265 | optional 266 | 267 | weight 268 | 1000 269 | 270 | ^Resources/.*\.lproj/locversion.plist$ 271 | 272 | omit 273 | 274 | weight 275 | 1100 276 | 277 | ^Resources/Base\.lproj/ 278 | 279 | weight 280 | 1010 281 | 282 | ^[^/]+$ 283 | 284 | nested 285 | 286 | weight 287 | 10 288 | 289 | ^embedded\.provisionprofile$ 290 | 291 | weight 292 | 20 293 | 294 | ^version\.plist$ 295 | 296 | weight 297 | 20 298 | 299 | 300 | 301 | 302 | --------------------------------------------------------------------------------