├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── suggestion.yml └── workflows │ ├── swift.yml │ └── tuist-test.yml ├── .gitignore ├── .mise.toml ├── .package.resolved ├── .swiftformat ├── .swiftlint.yml ├── CONTRIBUTING.md ├── Cork ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Final Icon-1024.png │ │ ├── Final Icon-128.png │ │ ├── Final Icon-16.png │ │ ├── Final Icon-256 1.png │ │ ├── Final Icon-256.png │ │ ├── Final Icon-32 1.png │ │ ├── Final Icon-32.png │ │ ├── Final Icon-512 1.png │ │ ├── Final Icon-512.png │ │ └── Final Icon-64.png │ ├── Contents.json │ ├── custom.apple.terminal.badge.magnifyingglass.symbolset │ │ ├── Contents.json │ │ └── custom.apple.terminal.badge.magnifyingglass.svg │ ├── custom.brain.slash.symbolset │ │ ├── Contents.json │ │ └── custom.brain.slash.svg │ ├── custom.macwindow.badge.magnifyingglass.symbolset │ │ ├── Contents.json │ │ └── custom.macwindow.badge.magnifyingglass.svg │ ├── custom.macwindow.badge.xmark.symbolset │ │ ├── Contents.json │ │ └── custom.macwindow.badge.xmark.svg │ ├── custom.pin.fill.questionmark.symbolset │ │ ├── Contents.json │ │ └── pin.fill.questionmark.svg │ ├── custom.shippingbox.2.badge.arrow.down.symbolset │ │ ├── Contents.json │ │ └── custom.shippingbox.2.badge.arrow.down.svg │ ├── custom.shippingbox.badge.magnifyingglass.symbolset │ │ ├── Contents.json │ │ └── custom.shippingbox.badge.magnifyingglass.svg │ ├── custom.shippingbox.badge.plus.symbolset │ │ ├── Contents.json │ │ └── custom.shippingbox.badge.plus.svg │ ├── custom.sparkles.slash.symbolset │ │ ├── Contents.json │ │ └── custom.sparkles.slash.svg │ ├── custom.spigot.badge.plus.symbolset │ │ ├── Contents.json │ │ └── custom.spigot.badge.plus.svg │ ├── custom.spigot.badge.xmark.symbolset │ │ ├── Contents.json │ │ └── custom.spigot.badge.xmark.svg │ ├── custom.square.stack.badge.pause.symbolset │ │ ├── Contents.json │ │ └── custom.square.stack.badge.pause.svg │ ├── custom.square.stack.badge.play.symbolset │ │ ├── Contents.json │ │ └── custom.square.stack.badge.play.svg │ ├── custom.square.stack.badge.questionmark.symbolset │ │ ├── Contents.json │ │ └── custom.square.stack.badge.questionmark.svg │ ├── custom.square.stack.trianglebadge.exclamationmark.symbolset │ │ ├── Contents.json │ │ └── custom.square.stack.trianglebadge.exclamationmark.svg │ ├── custom.terminal.badge.xmark.symbolset │ │ ├── Contents.json │ │ └── custom.terminal.badge.xmark.svg │ └── custom.trash.triangle.fill.symbolset │ │ ├── Contents.json │ │ └── custom.trash.triangle.fill.svg ├── ContentView.swift ├── Cork.entitlements ├── CorkApp.swift ├── Enums │ ├── Alerts │ │ └── Services │ │ │ ├── Error Details │ │ │ ├── Services Alerts - Descriptions.swift │ │ │ └── Services Alerts - Suggestions.swift │ │ │ └── Services Fatal Errors.swift │ ├── Navigation │ │ ├── Navigation Destinations - Main Window.swift │ │ └── Navigation Destinations - Services.swift │ ├── Outdated Packages Notification Type.swift │ ├── Package Caveats.swift │ ├── Package Installation │ │ ├── Package Installation Stage.swift │ │ └── Package Installation Steps.swift │ ├── Package Reinstallation │ │ └── Package Reinstallation Stage.swift │ ├── Package Updating │ │ ├── Complete │ │ │ ├── Package Updating Stages.swift │ │ │ └── Package Updating Steps.swift │ │ └── Update Availability.swift │ └── Services │ │ └── Service Status.swift ├── Extensions │ ├── DateStyle - AppStorage Support.swift │ ├── String - Window IDs.swift │ └── UTType - Homebrew Backup Format.swift ├── Info.plist ├── Localizable.xcstrings ├── Logic │ ├── App Adoption │ │ └── Adopt Package.swift │ ├── App Intents │ │ ├── Currently Installed Packages │ │ │ ├── Get Installed Casks Intent.swift │ │ │ ├── Get Installed Formulae Intent.swift │ │ │ └── Get Installed Packages Intent.swift │ │ ├── Package Updating │ │ │ └── Package Refreshing │ │ │ │ └── Refresh Packages Intent.swift │ │ └── Shortcuts Provider │ │ │ └── Cork Shortcuts.swift │ ├── Brewfile │ │ ├── Export Brewfile.swift │ │ └── Import Brewfile.swift │ ├── Discoverability │ │ └── Load up Top Packages.swift │ ├── Helpers │ │ ├── Copy to Clipboard.swift │ │ ├── Load Image from Local URL.swift │ │ ├── Programs │ │ │ └── Sudo Helper │ │ ├── Restart App.swift │ │ └── Switch Cork to Foreground.swift │ ├── Maintenance │ │ ├── Steps │ │ │ ├── Delete Cached Downloads.swift │ │ │ ├── Perform Brew Health Check.swift │ │ │ ├── Purge Brew Cache.swift │ │ │ └── Uninstall Orphaned Packages.swift │ │ └── Utility Functions │ │ │ ├── Purge Cache Utility.swift │ │ │ └── Uninstall Orphans - Utility.swift │ ├── Networking │ │ └── Check If User Bought Cork.swift │ ├── Open Terminal.swift │ ├── Search for Package by ID.swift │ ├── Search │ │ └── Search for Package.swift │ ├── Services │ │ ├── Load up Services.swift │ │ ├── Modification │ │ │ ├── Kill Service.swift │ │ │ ├── Start Service.swift │ │ │ ├── Stop Service.swift │ │ │ └── Synchronize Services.swift │ │ └── Service Details │ │ │ └── Load up Service Details.swift │ ├── Shell │ │ └── Brew Interface.swift │ ├── Submit System Version.swift │ └── Updating and Upgrading │ │ ├── Refresh Packages.swift │ │ └── Update Packages.swift ├── Models │ ├── Data File.swift │ ├── Discoverability │ │ └── Top Packages Tracker.swift │ ├── Misc │ │ ├── Acknowledged Contributor.swift │ │ ├── Network Proxy.swift │ │ └── Used Package.swift │ ├── Package Installation │ │ ├── Installation Progress Tracker.swift │ │ └── Package in Progress of Being Installed.swift │ ├── Search Result Tracker.swift │ ├── Searching │ │ └── Package Search Token.swift │ ├── Services │ │ ├── Service Details.swift │ │ ├── Service.swift │ │ └── Services Tracker.swift │ ├── Update Progress Tracker.swift │ └── Updating │ │ └── Updating Process Details.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Protocols │ └── View │ │ └── Dismissable Pane.swift ├── Styles │ ├── AsyncButton │ │ └── AsyncButton - Plain Style.swift │ ├── DisclosureGroup - No Padding.swift │ └── Gauge - Mini Gauge.swift ├── View Modifiers │ └── Stretched Pickers.swift └── Views │ ├── About │ └── About View.swift │ ├── Backups │ ├── Exporting │ │ └── Brewfile Export Progress.swift │ └── Importing │ │ └── Brewfile Import Progress.swift │ ├── Error Inspector.swift │ ├── Installation │ ├── Install Package.swift │ ├── Reusables │ │ └── Search Result Row.swift │ └── Sub-Views │ │ ├── Initial.swift │ │ ├── Initial │ │ └── Top Packages Section.swift │ │ ├── Installing.swift │ │ ├── Misc Views │ │ └── Live Code Output.swift │ │ ├── Presenting Search Results.swift │ │ ├── Searching.swift │ │ └── Status Views │ │ ├── Adopting Already Installed Cask.swift │ │ ├── Another Process Already Running.swift │ │ ├── Binary Already Exists.swift │ │ ├── Installation Fatal Error.swift │ │ ├── Installation Finished Successfully.swift │ │ ├── Installation Terminated Unexpectedly.swift │ │ ├── Sudo Required.swift │ │ └── Wrong Architecture.swift │ ├── Licensing │ ├── Licensing View.swift │ └── Sub-Views │ │ ├── Bought │ │ └── Licensing - Bought View.swift │ │ ├── Demo │ │ └── Licensing - Demo View.swift │ │ ├── Not Bought Or Activated Demo │ │ └── Licensing - Not Bought Or Activated View.swift │ │ └── Self-Compiled │ │ └── Self-Compiled View.swift │ ├── Maintenance │ ├── Maintenance View.swift │ └── Sub-Views │ │ ├── Maintenance Finished View.swift │ │ ├── Maintenance Running View.swift │ │ └── Ready View.swift │ ├── Mass App Adoption │ ├── Components │ │ └── Adoption Results List.swift │ ├── Mass Adoption Stages │ │ ├── Mass Adoption Stage - Adopting.swift │ │ ├── Mass Adoption Stage - Failure.swift │ │ ├── Mass Adoption Stage - Some Success Some Failure.swift │ │ └── Mass Adoption Stage - Success.swift │ └── Mass App Adoption View.swift │ ├── Menu Bar │ ├── Menu Bar Item.swift │ └── Sub-Views │ │ ├── Menu Bar - Cache Cleanup.swift │ │ ├── Menu Bar - Cached Downloads Cleanup.swift │ │ ├── Menu Bar - Orphan Cleanup.swift │ │ ├── Menu Bar - Package Installation.swift │ │ ├── Menu Bar - Package Overview.swift │ │ └── Menu Bar - Package Updating.swift │ ├── Onboarding │ ├── Onboarding.swift │ └── Sub-Views │ │ ├── Feature Categories │ │ ├── Basic Category.swift │ │ ├── Discoverability Category.swift │ │ ├── Extras Category.swift │ │ ├── Package Features Category.swift │ │ └── Tap Features Category.swift │ │ └── Onboarding Defaults Slider.swift │ ├── Package Previews │ └── Package Preview.swift │ ├── Packages │ ├── Package Details │ │ ├── Package Details.swift │ │ └── Sub-Views │ │ │ ├── Basic Package Info.swift │ │ │ ├── Dependency List.swift │ │ │ ├── Package Caveats │ │ │ ├── Package Caveat Full Display.swift │ │ │ └── Package Caveat Minified Display.swift │ │ │ ├── Package Dependencies.swift │ │ │ ├── Package Deprecation │ │ │ ├── Package Deprecation View Full Display.swift │ │ │ └── Package Deprecation View Minified Display.swift │ │ │ ├── Package Detail Header Complex.swift │ │ │ ├── Package Modification Buttons.swift │ │ │ ├── Package Pinning │ │ │ └── Pin Unpin Button.swift │ │ │ └── Package System Info.swift │ └── Package List Item.swift │ ├── Reinstall Corrupted Package │ └── Reinstall Corrupted Package.swift │ ├── Removal │ └── Sudo Required For Removal.swift │ ├── Reusables │ ├── App Icon Display.swift │ ├── Buttons │ │ ├── Check for Outdated Packages.swift │ │ ├── Maintenance │ │ │ ├── Delete Cached Downloads Button.swift │ │ │ └── Open Maintenance Sheet Button.swift │ │ ├── Open Cork Button.swift │ │ ├── Packages │ │ │ ├── Install Package Button.swift │ │ │ └── Update Packages Button.swift │ │ ├── Preview Package.swift │ │ ├── Quit Cork Button.swift │ │ ├── Reinstall Homebrew.swift │ │ ├── Restart Cork Button.swift │ │ ├── Reveal in Finder Button.swift │ │ └── Taps │ │ │ └── Add Tap Button.swift │ ├── Collapsible Section Header.swift │ ├── Complex with Icon.swift │ ├── Files │ │ └── Path Control.swift │ ├── Full-Size Grouped Form.swift │ ├── GroupBox Headline Group.swift │ ├── Headline with Subheadline.swift │ ├── Nicer Text Editor.swift │ ├── No Content Available.swift │ ├── No Description Provided View.swift │ ├── Search Fields │ │ ├── Custom Search Field.swift │ │ └── Install Process Custom Search Field.swift │ ├── Settings │ │ └── Settings Pane Template.swift │ ├── Sheets │ │ ├── Components │ │ │ ├── Disappearable Sheet.swift │ │ │ └── Dismiss Sheet Button.swift │ │ ├── Sheet Template.swift │ │ └── Sheet with Title.swift │ ├── Tag Untag Button.swift │ ├── Uninstallation │ │ ├── Remove Packages Buttons.swift │ │ └── Uninstallation Progress Wheel.swift │ └── Updating │ │ └── Update Package Button.swift │ ├── Services │ ├── Homebrew Services View.swift │ ├── Reusables │ │ └── Buttons │ │ │ └── Load Services Button.swift │ ├── Service Detail │ │ ├── Service Detail.swift │ │ └── Sub-Views │ │ │ ├── Basic Service Info View.swift │ │ │ ├── Service Header Complex.swift │ │ │ ├── Service Locations View.swift │ │ │ └── Service Modification Buttons.swift │ ├── Services Sidebar │ │ ├── Services Sidebar.swift │ │ └── Sub-Views │ │ │ └── Sidebar Service Row.swift │ ├── Services State.swift │ └── Start Page │ │ └── Services Start Page.swift │ ├── Settings │ ├── Panes │ │ ├── Advanced Pane.swift │ │ ├── Brew Pane.swift │ │ ├── Discoverability Pane.swift │ │ ├── General Pane.swift │ │ ├── Installation Pane.swift │ │ ├── Maintenance Pane.swift │ │ ├── Notifications Pane.swift │ │ └── Sub-Views │ │ │ └── Brew Pane │ │ │ └── Custom Homebrew Executable View.swift │ └── Settings View.swift │ ├── Shared │ ├── Button Bottom Row.swift │ ├── Button That Opens Websites.swift │ ├── Buttons │ │ ├── HelpButton.swift │ │ └── NSButton Port.swift │ ├── Inline Content Unavailable View.swift │ ├── Inline Fatal Error.swift │ ├── Loading View.swift │ ├── PillText.swift │ ├── Sanitized Package Name.swift │ └── Subtitle Text.swift │ ├── Sidebar │ ├── Components │ │ ├── Casks Section.swift │ │ ├── Formulae Section.swift │ │ ├── Sidebar Context Menu.swift │ │ ├── Sidebar Package Row.swift │ │ └── Taps Section.swift │ └── Sidebar View.swift │ ├── Start Page │ ├── Start Page.swift │ └── Sub-Views │ │ ├── Adoptable Packages Box.swift │ │ ├── Analytics Status Box.swift │ │ ├── Broken Packages │ │ └── Broken Package List Row.swift │ │ ├── Cached Downloads Folder Info Box.swift │ │ ├── Loading Errors Box.swift │ │ ├── Outdated Packages Box.swift │ │ ├── Outdated Packages │ │ ├── Loading of Outdated Packages Failed List Box.swift │ │ ├── No Updates Available Box.swift │ │ ├── Outdated Package List Box.swift │ │ └── Outdated Package Loader Box.swift │ │ └── Package And Tap Overview Box.swift │ ├── Taps │ ├── Add Tap View.swift │ ├── Sub-Views │ │ ├── Tap - Adding.swift │ │ ├── Tap - Error.swift │ │ ├── Tap - Finished.swift │ │ └── Tap - Initial.swift │ └── Tap Details │ │ ├── Sub-Views │ │ ├── Included Packages.swift │ │ ├── Packages Included in Tap.swift │ │ ├── Tap Info.swift │ │ └── Tap Title.swift │ │ └── Tap Details.swift │ └── Updating │ ├── Complete Updating │ ├── Sub-Views │ │ ├── Stages │ │ │ ├── Errored Out Stage.swift │ │ │ ├── Finished Stage.swift │ │ │ └── No Updates Available.swift │ │ └── States │ │ │ ├── Checking for Updates.swift │ │ │ ├── Ready to Update.swift │ │ │ ├── Updating Finished.swift │ │ │ ├── Updating Package Tracker.swift │ │ │ └── Updating Packages.swift │ └── Update Packages View.swift │ └── Incremental Updating │ └── Update Some Packages View.swift ├── CorkHelp ├── CorkHelp-Info.plist └── Resources │ ├── Raw Files │ ├── getting-started │ │ └── main.md │ ├── index.md │ ├── maintenance-operations │ │ └── main.md │ ├── package-operations │ │ ├── advanced │ │ │ ├── pin.md │ │ │ └── purging.md │ │ └── main.md │ ├── tap-operations │ │ └── main.md │ ├── template.html │ └── user-interface │ │ ├── Assets │ │ ├── Cork Main Window.png │ │ ├── Raw │ │ │ ├── Cork Main Window.afdesign │ │ │ ├── Sidebar.afdesign │ │ │ ├── Status Page.afdesign │ │ │ └── Toolbar.afdesign │ │ ├── Sidebar.png │ │ ├── Status Page.png │ │ └── Toolbar.png │ │ ├── detail-area │ │ ├── detail-page.md │ │ ├── main.md │ │ └── status-page.md │ │ ├── main.md │ │ ├── sidebar.md │ │ └── toolbar.md │ └── en.lproj │ ├── index.html │ ├── topic1.html │ └── topic2.html ├── Derived ├── InfoPlists │ ├── CorkHelp-Info.plist │ ├── CorkTests-Info.plist │ ├── Cork_CorkModels-Info.plist │ └── Cork_CorkShared-Info.plist └── Sources │ ├── TuistAssets+Cork.swift │ ├── TuistAssets+CorkModels.swift │ ├── TuistAssets+CorkShared.swift │ ├── TuistAssets+SelfCompiled.swift │ ├── TuistBundle+Cork.swift │ ├── TuistBundle+CorkModels.swift │ ├── TuistBundle+CorkShared.swift │ └── TuistBundle+SelfCompiled.swift ├── Modules ├── Intents │ └── intent.swift ├── Notifications │ └── Send Notification.swift ├── Packages │ └── PackagesModels │ │ ├── App State.swift │ │ ├── Enums │ │ ├── Alerts │ │ │ ├── Displayable Alerts.swift │ │ │ └── Error Details │ │ │ │ ├── Displayable Alerts - Descriptions.swift │ │ │ │ └── Displayable Alerts - Recovery Suggestions.swift │ │ ├── Brewfile import Stage.swift │ │ ├── Confirmation dialogs │ │ │ └── Confirmation Dialog.swift │ │ └── Sheets │ │ │ └── Displayable Sheet.swift │ │ ├── Errors │ │ ├── Cached Download Deletion Error.swift │ │ ├── Intent Error.swift │ │ ├── JSON Parsing Error.swift │ │ ├── Package Loading Error 2.swift │ │ ├── Package Loading Error.swift │ │ ├── Package Synchronization Error.swift │ │ └── Tap Loading Error.swift │ │ ├── Logic │ │ ├── Apply Pinned Status.swift │ │ ├── Caches │ │ │ └── Load Cached Package Downloads.swift │ │ ├── Check if Package was Installed Intentionally.swift │ │ ├── Get Names of Pinned Packages.swift │ │ ├── Get Package Name from URL.swift │ │ ├── Installation & Removal │ │ │ ├── Removal │ │ │ │ ├── Apply Uninstallation Spinner.swift │ │ │ │ └── Uninstall Packages.swift │ │ │ └── Synchnorize Installed Packages.swift │ │ ├── Package Loading │ │ │ ├── Get Outdated Packages.swift │ │ │ ├── Helper Logic │ │ │ │ └── Get Package Type from URL.swift │ │ │ └── Load Up Installed Packages.swift │ │ ├── Packages │ │ │ ├── Get Adoptable Packages.swift │ │ │ └── Load Up Package Info.swift │ │ ├── Tagging │ │ │ └── Apply Tags to Package Array.swift │ │ ├── Taps │ │ │ ├── Add Tap.swift │ │ │ ├── Load up Tapped Taps.swift │ │ │ ├── Parse Tap Info.swift │ │ │ └── Remove Tap.swift │ │ ├── Update Package Tracker In place.swift │ │ └── Utilities │ │ │ └── Get Contents of Folder.swift │ │ ├── Models │ │ ├── App Adoption │ │ │ ├── Adoptable App.swift │ │ │ └── Excluded Adptable App.swift │ │ ├── Application.swift │ │ ├── Brew Package.swift │ │ ├── Brew Tap.swift │ │ ├── Cached Download.swift │ │ ├── Caches │ │ │ └── Assign Types to Cached Packages.swift │ │ ├── Corrupted Package.swift │ │ ├── Extensions │ │ │ └── Excluded Adoptable App - Initialize from Adoptable App.swift │ │ ├── Intents │ │ │ └── Minimal Homebrew Package.swift │ │ ├── Outdated Package.swift │ │ ├── Outdated Packages │ │ │ └── Outdated Package Tracker.swift │ │ ├── Packages │ │ │ ├── Brew Package Details.swift │ │ │ └── Package Dependency.swift │ │ └── Tap Codable Model.swift │ │ ├── Protocols │ │ └── Modifiable.swift │ │ └── Trackers │ │ ├── Brew Packages Tracker.swift │ │ ├── Cached Packages Tracker.swift │ │ └── Tap Tracker.swift ├── Shared │ ├── App Constants.swift │ ├── Defaults │ │ ├── Defaults.swift │ │ ├── Licensing.swift │ │ ├── Onboarding.swift │ │ └── Settings │ │ │ ├── Discoverability Settings.swift │ │ │ ├── General Settings.swift │ │ │ ├── Homebrew Settings.swift │ │ │ ├── Maintenance Settings.swift │ │ │ ├── Notifications Settings.swift │ │ │ └── Packages Settings.swift │ ├── Enums │ │ ├── Discoverability │ │ │ ├── Day Spans.swift │ │ │ └── Top Package Sorting.swift │ │ ├── Outdated Packages Notification Type.swift │ │ ├── Package Caveats.swift │ │ ├── Package Sorting.swift │ │ └── Package Updating │ │ │ └── Outdated Package Info Amount.swift │ ├── Extensions │ │ └── DateStyle - Conform to Defaults Serializable.swift │ ├── Logic │ │ ├── Check if URL is Symlink.swift │ │ ├── Filter Out Symlinks.swift │ │ ├── Get Folder Size.swift │ │ ├── Networking │ │ │ └── Download Data From URL.swift │ │ └── REGEX Match.swift │ └── Modules │ │ └── Persistence │ │ ├── Excluded Adoptable Package.swift │ │ └── Tagged Packages Storage.swift └── TerminalSupport │ ├── Logic │ └── Shell Commands.swift │ └── Models │ └── Terminal Output.swift ├── PrivacyInfo.xcprivacy ├── Project.swift ├── README.md ├── Tests ├── Cork Itself │ └── Setup │ │ └── Top Packages.swift └── Homebrew Backend │ └── Taps │ ├── Tap Decoding.swift │ └── Tap Retrieval.swift ├── Tuist.swift ├── Tuist ├── Package.resolved ├── Package.swift └── Tuist.swift ├── crowdin.yml └── xcconfigs ├── Cork.xcconfig ├── CorkHelp.xcconfig ├── Project.xcconfig └── Self-Compiled.xcconfig /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/.github/ISSUE_TEMPLATE/suggestion.yml -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.github/workflows/tuist-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/.github/workflows/tuist-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/.gitignore -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | tuist = "latest" 3 | -------------------------------------------------------------------------------- /.package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/.package.resolved -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cork/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/AppDelegate.swift -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-1024.png -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-128.png -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-16.png -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-256 1.png -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-256.png -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-32 1.png -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-32.png -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-512 1.png -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-512.png -------------------------------------------------------------------------------- /Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/AppIcon.appiconset/Final Icon-64.png -------------------------------------------------------------------------------- /Cork/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.apple.terminal.badge.magnifyingglass.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.apple.terminal.badge.magnifyingglass.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.apple.terminal.badge.magnifyingglass.symbolset/custom.apple.terminal.badge.magnifyingglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.apple.terminal.badge.magnifyingglass.symbolset/custom.apple.terminal.badge.magnifyingglass.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.brain.slash.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.brain.slash.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.brain.slash.symbolset/custom.brain.slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.brain.slash.symbolset/custom.brain.slash.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.macwindow.badge.magnifyingglass.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.macwindow.badge.magnifyingglass.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.macwindow.badge.magnifyingglass.symbolset/custom.macwindow.badge.magnifyingglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.macwindow.badge.magnifyingglass.symbolset/custom.macwindow.badge.magnifyingglass.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.macwindow.badge.xmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.macwindow.badge.xmark.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.macwindow.badge.xmark.symbolset/custom.macwindow.badge.xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.macwindow.badge.xmark.symbolset/custom.macwindow.badge.xmark.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.pin.fill.questionmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.pin.fill.questionmark.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.pin.fill.questionmark.symbolset/pin.fill.questionmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.pin.fill.questionmark.symbolset/pin.fill.questionmark.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.shippingbox.2.badge.arrow.down.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.shippingbox.2.badge.arrow.down.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.shippingbox.2.badge.arrow.down.symbolset/custom.shippingbox.2.badge.arrow.down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.shippingbox.2.badge.arrow.down.symbolset/custom.shippingbox.2.badge.arrow.down.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.shippingbox.badge.magnifyingglass.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.shippingbox.badge.magnifyingglass.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.shippingbox.badge.magnifyingglass.symbolset/custom.shippingbox.badge.magnifyingglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.shippingbox.badge.magnifyingglass.symbolset/custom.shippingbox.badge.magnifyingglass.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.shippingbox.badge.plus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.shippingbox.badge.plus.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.shippingbox.badge.plus.symbolset/custom.shippingbox.badge.plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.shippingbox.badge.plus.symbolset/custom.shippingbox.badge.plus.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.sparkles.slash.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.sparkles.slash.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.sparkles.slash.symbolset/custom.sparkles.slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.sparkles.slash.symbolset/custom.sparkles.slash.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.spigot.badge.plus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.spigot.badge.plus.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.spigot.badge.plus.symbolset/custom.spigot.badge.plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.spigot.badge.plus.symbolset/custom.spigot.badge.plus.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.spigot.badge.xmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.spigot.badge.xmark.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.spigot.badge.xmark.symbolset/custom.spigot.badge.xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.spigot.badge.xmark.symbolset/custom.spigot.badge.xmark.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.square.stack.badge.pause.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.square.stack.badge.pause.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.square.stack.badge.pause.symbolset/custom.square.stack.badge.pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.square.stack.badge.pause.symbolset/custom.square.stack.badge.pause.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.square.stack.badge.play.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.square.stack.badge.play.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.square.stack.badge.play.symbolset/custom.square.stack.badge.play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.square.stack.badge.play.symbolset/custom.square.stack.badge.play.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.square.stack.badge.questionmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.square.stack.badge.questionmark.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.square.stack.badge.questionmark.symbolset/custom.square.stack.badge.questionmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.square.stack.badge.questionmark.symbolset/custom.square.stack.badge.questionmark.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.square.stack.trianglebadge.exclamationmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.square.stack.trianglebadge.exclamationmark.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.square.stack.trianglebadge.exclamationmark.symbolset/custom.square.stack.trianglebadge.exclamationmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.square.stack.trianglebadge.exclamationmark.symbolset/custom.square.stack.trianglebadge.exclamationmark.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.terminal.badge.xmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.terminal.badge.xmark.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.terminal.badge.xmark.symbolset/custom.terminal.badge.xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.terminal.badge.xmark.symbolset/custom.terminal.badge.xmark.svg -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.trash.triangle.fill.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.trash.triangle.fill.symbolset/Contents.json -------------------------------------------------------------------------------- /Cork/Assets.xcassets/custom.trash.triangle.fill.symbolset/custom.trash.triangle.fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Assets.xcassets/custom.trash.triangle.fill.symbolset/custom.trash.triangle.fill.svg -------------------------------------------------------------------------------- /Cork/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/ContentView.swift -------------------------------------------------------------------------------- /Cork/Cork.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Cork.entitlements -------------------------------------------------------------------------------- /Cork/CorkApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/CorkApp.swift -------------------------------------------------------------------------------- /Cork/Enums/Alerts/Services/Error Details/Services Alerts - Descriptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Alerts/Services/Error Details/Services Alerts - Descriptions.swift -------------------------------------------------------------------------------- /Cork/Enums/Alerts/Services/Error Details/Services Alerts - Suggestions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Alerts/Services/Error Details/Services Alerts - Suggestions.swift -------------------------------------------------------------------------------- /Cork/Enums/Alerts/Services/Services Fatal Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Alerts/Services/Services Fatal Errors.swift -------------------------------------------------------------------------------- /Cork/Enums/Navigation/Navigation Destinations - Main Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Navigation/Navigation Destinations - Main Window.swift -------------------------------------------------------------------------------- /Cork/Enums/Navigation/Navigation Destinations - Services.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Navigation/Navigation Destinations - Services.swift -------------------------------------------------------------------------------- /Cork/Enums/Outdated Packages Notification Type.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Cork/Enums/Package Caveats.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Cork/Enums/Package Installation/Package Installation Stage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Package Installation/Package Installation Stage.swift -------------------------------------------------------------------------------- /Cork/Enums/Package Installation/Package Installation Steps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Package Installation/Package Installation Steps.swift -------------------------------------------------------------------------------- /Cork/Enums/Package Reinstallation/Package Reinstallation Stage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Package Reinstallation/Package Reinstallation Stage.swift -------------------------------------------------------------------------------- /Cork/Enums/Package Updating/Complete/Package Updating Stages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Package Updating/Complete/Package Updating Stages.swift -------------------------------------------------------------------------------- /Cork/Enums/Package Updating/Complete/Package Updating Steps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Package Updating/Complete/Package Updating Steps.swift -------------------------------------------------------------------------------- /Cork/Enums/Package Updating/Update Availability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Package Updating/Update Availability.swift -------------------------------------------------------------------------------- /Cork/Enums/Services/Service Status.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Enums/Services/Service Status.swift -------------------------------------------------------------------------------- /Cork/Extensions/DateStyle - AppStorage Support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Extensions/DateStyle - AppStorage Support.swift -------------------------------------------------------------------------------- /Cork/Extensions/String - Window IDs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Extensions/String - Window IDs.swift -------------------------------------------------------------------------------- /Cork/Extensions/UTType - Homebrew Backup Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Extensions/UTType - Homebrew Backup Format.swift -------------------------------------------------------------------------------- /Cork/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Info.plist -------------------------------------------------------------------------------- /Cork/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Localizable.xcstrings -------------------------------------------------------------------------------- /Cork/Logic/App Adoption/Adopt Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/App Adoption/Adopt Package.swift -------------------------------------------------------------------------------- /Cork/Logic/App Intents/Currently Installed Packages/Get Installed Casks Intent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/App Intents/Currently Installed Packages/Get Installed Casks Intent.swift -------------------------------------------------------------------------------- /Cork/Logic/App Intents/Currently Installed Packages/Get Installed Formulae Intent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/App Intents/Currently Installed Packages/Get Installed Formulae Intent.swift -------------------------------------------------------------------------------- /Cork/Logic/App Intents/Currently Installed Packages/Get Installed Packages Intent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/App Intents/Currently Installed Packages/Get Installed Packages Intent.swift -------------------------------------------------------------------------------- /Cork/Logic/App Intents/Package Updating/Package Refreshing/Refresh Packages Intent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/App Intents/Package Updating/Package Refreshing/Refresh Packages Intent.swift -------------------------------------------------------------------------------- /Cork/Logic/App Intents/Shortcuts Provider/Cork Shortcuts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/App Intents/Shortcuts Provider/Cork Shortcuts.swift -------------------------------------------------------------------------------- /Cork/Logic/Brewfile/Export Brewfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Brewfile/Export Brewfile.swift -------------------------------------------------------------------------------- /Cork/Logic/Brewfile/Import Brewfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Brewfile/Import Brewfile.swift -------------------------------------------------------------------------------- /Cork/Logic/Discoverability/Load up Top Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Discoverability/Load up Top Packages.swift -------------------------------------------------------------------------------- /Cork/Logic/Helpers/Copy to Clipboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Helpers/Copy to Clipboard.swift -------------------------------------------------------------------------------- /Cork/Logic/Helpers/Load Image from Local URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Helpers/Load Image from Local URL.swift -------------------------------------------------------------------------------- /Cork/Logic/Helpers/Programs/Sudo Helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Helpers/Programs/Sudo Helper -------------------------------------------------------------------------------- /Cork/Logic/Helpers/Restart App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Helpers/Restart App.swift -------------------------------------------------------------------------------- /Cork/Logic/Helpers/Switch Cork to Foreground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Helpers/Switch Cork to Foreground.swift -------------------------------------------------------------------------------- /Cork/Logic/Maintenance/Steps/Delete Cached Downloads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Maintenance/Steps/Delete Cached Downloads.swift -------------------------------------------------------------------------------- /Cork/Logic/Maintenance/Steps/Perform Brew Health Check.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Maintenance/Steps/Perform Brew Health Check.swift -------------------------------------------------------------------------------- /Cork/Logic/Maintenance/Steps/Purge Brew Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Maintenance/Steps/Purge Brew Cache.swift -------------------------------------------------------------------------------- /Cork/Logic/Maintenance/Steps/Uninstall Orphaned Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Maintenance/Steps/Uninstall Orphaned Packages.swift -------------------------------------------------------------------------------- /Cork/Logic/Maintenance/Utility Functions/Purge Cache Utility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Maintenance/Utility Functions/Purge Cache Utility.swift -------------------------------------------------------------------------------- /Cork/Logic/Maintenance/Utility Functions/Uninstall Orphans - Utility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Maintenance/Utility Functions/Uninstall Orphans - Utility.swift -------------------------------------------------------------------------------- /Cork/Logic/Networking/Check If User Bought Cork.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Networking/Check If User Bought Cork.swift -------------------------------------------------------------------------------- /Cork/Logic/Open Terminal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Open Terminal.swift -------------------------------------------------------------------------------- /Cork/Logic/Search for Package by ID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Search for Package by ID.swift -------------------------------------------------------------------------------- /Cork/Logic/Search/Search for Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Search/Search for Package.swift -------------------------------------------------------------------------------- /Cork/Logic/Services/Load up Services.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Services/Load up Services.swift -------------------------------------------------------------------------------- /Cork/Logic/Services/Modification/Kill Service.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Services/Modification/Kill Service.swift -------------------------------------------------------------------------------- /Cork/Logic/Services/Modification/Start Service.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Services/Modification/Start Service.swift -------------------------------------------------------------------------------- /Cork/Logic/Services/Modification/Stop Service.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Services/Modification/Stop Service.swift -------------------------------------------------------------------------------- /Cork/Logic/Services/Modification/Synchronize Services.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Services/Modification/Synchronize Services.swift -------------------------------------------------------------------------------- /Cork/Logic/Services/Service Details/Load up Service Details.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Services/Service Details/Load up Service Details.swift -------------------------------------------------------------------------------- /Cork/Logic/Shell/Brew Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Shell/Brew Interface.swift -------------------------------------------------------------------------------- /Cork/Logic/Submit System Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Submit System Version.swift -------------------------------------------------------------------------------- /Cork/Logic/Updating and Upgrading/Refresh Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Updating and Upgrading/Refresh Packages.swift -------------------------------------------------------------------------------- /Cork/Logic/Updating and Upgrading/Update Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Logic/Updating and Upgrading/Update Packages.swift -------------------------------------------------------------------------------- /Cork/Models/Data File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Data File.swift -------------------------------------------------------------------------------- /Cork/Models/Discoverability/Top Packages Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Discoverability/Top Packages Tracker.swift -------------------------------------------------------------------------------- /Cork/Models/Misc/Acknowledged Contributor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Misc/Acknowledged Contributor.swift -------------------------------------------------------------------------------- /Cork/Models/Misc/Network Proxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Misc/Network Proxy.swift -------------------------------------------------------------------------------- /Cork/Models/Misc/Used Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Misc/Used Package.swift -------------------------------------------------------------------------------- /Cork/Models/Package Installation/Installation Progress Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Package Installation/Installation Progress Tracker.swift -------------------------------------------------------------------------------- /Cork/Models/Package Installation/Package in Progress of Being Installed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Package Installation/Package in Progress of Being Installed.swift -------------------------------------------------------------------------------- /Cork/Models/Search Result Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Search Result Tracker.swift -------------------------------------------------------------------------------- /Cork/Models/Searching/Package Search Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Searching/Package Search Token.swift -------------------------------------------------------------------------------- /Cork/Models/Services/Service Details.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Services/Service Details.swift -------------------------------------------------------------------------------- /Cork/Models/Services/Service.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Services/Service.swift -------------------------------------------------------------------------------- /Cork/Models/Services/Services Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Services/Services Tracker.swift -------------------------------------------------------------------------------- /Cork/Models/Update Progress Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Update Progress Tracker.swift -------------------------------------------------------------------------------- /Cork/Models/Updating/Updating Process Details.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Models/Updating/Updating Process Details.swift -------------------------------------------------------------------------------- /Cork/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Cork/Protocols/View/Dismissable Pane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Protocols/View/Dismissable Pane.swift -------------------------------------------------------------------------------- /Cork/Styles/AsyncButton/AsyncButton - Plain Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Styles/AsyncButton/AsyncButton - Plain Style.swift -------------------------------------------------------------------------------- /Cork/Styles/DisclosureGroup - No Padding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Styles/DisclosureGroup - No Padding.swift -------------------------------------------------------------------------------- /Cork/Styles/Gauge - Mini Gauge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Styles/Gauge - Mini Gauge.swift -------------------------------------------------------------------------------- /Cork/View Modifiers/Stretched Pickers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/View Modifiers/Stretched Pickers.swift -------------------------------------------------------------------------------- /Cork/Views/About/About View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/About/About View.swift -------------------------------------------------------------------------------- /Cork/Views/Backups/Exporting/Brewfile Export Progress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Backups/Exporting/Brewfile Export Progress.swift -------------------------------------------------------------------------------- /Cork/Views/Backups/Importing/Brewfile Import Progress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Backups/Importing/Brewfile Import Progress.swift -------------------------------------------------------------------------------- /Cork/Views/Error Inspector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Error Inspector.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Install Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Install Package.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Reusables/Search Result Row.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Reusables/Search Result Row.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Initial.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Initial.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Initial/Top Packages Section.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Initial/Top Packages Section.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Installing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Installing.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Misc Views/Live Code Output.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Misc Views/Live Code Output.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Presenting Search Results.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Presenting Search Results.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Searching.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Searching.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Status Views/Adopting Already Installed Cask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Status Views/Adopting Already Installed Cask.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Status Views/Another Process Already Running.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Status Views/Another Process Already Running.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Status Views/Binary Already Exists.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Status Views/Binary Already Exists.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Status Views/Installation Fatal Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Status Views/Installation Fatal Error.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Status Views/Installation Finished Successfully.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Status Views/Installation Finished Successfully.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Status Views/Installation Terminated Unexpectedly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Status Views/Installation Terminated Unexpectedly.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Status Views/Sudo Required.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Status Views/Sudo Required.swift -------------------------------------------------------------------------------- /Cork/Views/Installation/Sub-Views/Status Views/Wrong Architecture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Installation/Sub-Views/Status Views/Wrong Architecture.swift -------------------------------------------------------------------------------- /Cork/Views/Licensing/Licensing View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Licensing/Licensing View.swift -------------------------------------------------------------------------------- /Cork/Views/Licensing/Sub-Views/Bought/Licensing - Bought View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Licensing/Sub-Views/Bought/Licensing - Bought View.swift -------------------------------------------------------------------------------- /Cork/Views/Licensing/Sub-Views/Demo/Licensing - Demo View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Licensing/Sub-Views/Demo/Licensing - Demo View.swift -------------------------------------------------------------------------------- /Cork/Views/Licensing/Sub-Views/Not Bought Or Activated Demo/Licensing - Not Bought Or Activated View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Licensing/Sub-Views/Not Bought Or Activated Demo/Licensing - Not Bought Or Activated View.swift -------------------------------------------------------------------------------- /Cork/Views/Licensing/Sub-Views/Self-Compiled/Self-Compiled View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Licensing/Sub-Views/Self-Compiled/Self-Compiled View.swift -------------------------------------------------------------------------------- /Cork/Views/Maintenance/Maintenance View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Maintenance/Maintenance View.swift -------------------------------------------------------------------------------- /Cork/Views/Maintenance/Sub-Views/Maintenance Finished View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Maintenance/Sub-Views/Maintenance Finished View.swift -------------------------------------------------------------------------------- /Cork/Views/Maintenance/Sub-Views/Maintenance Running View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Maintenance/Sub-Views/Maintenance Running View.swift -------------------------------------------------------------------------------- /Cork/Views/Maintenance/Sub-Views/Ready View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Maintenance/Sub-Views/Ready View.swift -------------------------------------------------------------------------------- /Cork/Views/Mass App Adoption/Components/Adoption Results List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Mass App Adoption/Components/Adoption Results List.swift -------------------------------------------------------------------------------- /Cork/Views/Mass App Adoption/Mass Adoption Stages/Mass Adoption Stage - Adopting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Mass App Adoption/Mass Adoption Stages/Mass Adoption Stage - Adopting.swift -------------------------------------------------------------------------------- /Cork/Views/Mass App Adoption/Mass Adoption Stages/Mass Adoption Stage - Failure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Mass App Adoption/Mass Adoption Stages/Mass Adoption Stage - Failure.swift -------------------------------------------------------------------------------- /Cork/Views/Mass App Adoption/Mass Adoption Stages/Mass Adoption Stage - Some Success Some Failure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Mass App Adoption/Mass Adoption Stages/Mass Adoption Stage - Some Success Some Failure.swift -------------------------------------------------------------------------------- /Cork/Views/Mass App Adoption/Mass Adoption Stages/Mass Adoption Stage - Success.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Mass App Adoption/Mass Adoption Stages/Mass Adoption Stage - Success.swift -------------------------------------------------------------------------------- /Cork/Views/Mass App Adoption/Mass App Adoption View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Mass App Adoption/Mass App Adoption View.swift -------------------------------------------------------------------------------- /Cork/Views/Menu Bar/Menu Bar Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Menu Bar/Menu Bar Item.swift -------------------------------------------------------------------------------- /Cork/Views/Menu Bar/Sub-Views/Menu Bar - Cache Cleanup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Menu Bar/Sub-Views/Menu Bar - Cache Cleanup.swift -------------------------------------------------------------------------------- /Cork/Views/Menu Bar/Sub-Views/Menu Bar - Cached Downloads Cleanup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Menu Bar/Sub-Views/Menu Bar - Cached Downloads Cleanup.swift -------------------------------------------------------------------------------- /Cork/Views/Menu Bar/Sub-Views/Menu Bar - Orphan Cleanup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Menu Bar/Sub-Views/Menu Bar - Orphan Cleanup.swift -------------------------------------------------------------------------------- /Cork/Views/Menu Bar/Sub-Views/Menu Bar - Package Installation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Menu Bar/Sub-Views/Menu Bar - Package Installation.swift -------------------------------------------------------------------------------- /Cork/Views/Menu Bar/Sub-Views/Menu Bar - Package Overview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Menu Bar/Sub-Views/Menu Bar - Package Overview.swift -------------------------------------------------------------------------------- /Cork/Views/Menu Bar/Sub-Views/Menu Bar - Package Updating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Menu Bar/Sub-Views/Menu Bar - Package Updating.swift -------------------------------------------------------------------------------- /Cork/Views/Onboarding/Onboarding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Onboarding/Onboarding.swift -------------------------------------------------------------------------------- /Cork/Views/Onboarding/Sub-Views/Feature Categories/Basic Category.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Onboarding/Sub-Views/Feature Categories/Basic Category.swift -------------------------------------------------------------------------------- /Cork/Views/Onboarding/Sub-Views/Feature Categories/Discoverability Category.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Onboarding/Sub-Views/Feature Categories/Discoverability Category.swift -------------------------------------------------------------------------------- /Cork/Views/Onboarding/Sub-Views/Feature Categories/Extras Category.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Onboarding/Sub-Views/Feature Categories/Extras Category.swift -------------------------------------------------------------------------------- /Cork/Views/Onboarding/Sub-Views/Feature Categories/Package Features Category.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Onboarding/Sub-Views/Feature Categories/Package Features Category.swift -------------------------------------------------------------------------------- /Cork/Views/Onboarding/Sub-Views/Feature Categories/Tap Features Category.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Onboarding/Sub-Views/Feature Categories/Tap Features Category.swift -------------------------------------------------------------------------------- /Cork/Views/Onboarding/Sub-Views/Onboarding Defaults Slider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Onboarding/Sub-Views/Onboarding Defaults Slider.swift -------------------------------------------------------------------------------- /Cork/Views/Package Previews/Package Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Package Previews/Package Preview.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Package Details.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Package Details.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Sub-Views/Basic Package Info.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Sub-Views/Basic Package Info.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Sub-Views/Dependency List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Sub-Views/Dependency List.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Sub-Views/Package Caveats/Package Caveat Full Display.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Sub-Views/Package Caveats/Package Caveat Full Display.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Sub-Views/Package Caveats/Package Caveat Minified Display.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Sub-Views/Package Caveats/Package Caveat Minified Display.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Sub-Views/Package Dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Sub-Views/Package Dependencies.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Sub-Views/Package Deprecation/Package Deprecation View Full Display.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Sub-Views/Package Deprecation/Package Deprecation View Full Display.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Sub-Views/Package Deprecation/Package Deprecation View Minified Display.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Sub-Views/Package Deprecation/Package Deprecation View Minified Display.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Sub-Views/Package Detail Header Complex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Sub-Views/Package Detail Header Complex.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Sub-Views/Package Modification Buttons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Sub-Views/Package Modification Buttons.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Sub-Views/Package Pinning/Pin Unpin Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Sub-Views/Package Pinning/Pin Unpin Button.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package Details/Sub-Views/Package System Info.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package Details/Sub-Views/Package System Info.swift -------------------------------------------------------------------------------- /Cork/Views/Packages/Package List Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Packages/Package List Item.swift -------------------------------------------------------------------------------- /Cork/Views/Reinstall Corrupted Package/Reinstall Corrupted Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reinstall Corrupted Package/Reinstall Corrupted Package.swift -------------------------------------------------------------------------------- /Cork/Views/Removal/Sudo Required For Removal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Removal/Sudo Required For Removal.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/App Icon Display.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/App Icon Display.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Check for Outdated Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Check for Outdated Packages.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Maintenance/Delete Cached Downloads Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Maintenance/Delete Cached Downloads Button.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Maintenance/Open Maintenance Sheet Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Maintenance/Open Maintenance Sheet Button.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Open Cork Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Open Cork Button.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Packages/Install Package Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Packages/Install Package Button.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Packages/Update Packages Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Packages/Update Packages Button.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Preview Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Preview Package.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Quit Cork Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Quit Cork Button.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Reinstall Homebrew.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Reinstall Homebrew.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Restart Cork Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Restart Cork Button.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Reveal in Finder Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Reveal in Finder Button.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Buttons/Taps/Add Tap Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Buttons/Taps/Add Tap Button.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Collapsible Section Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Collapsible Section Header.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Complex with Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Complex with Icon.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Files/Path Control.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Files/Path Control.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Full-Size Grouped Form.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Full-Size Grouped Form.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/GroupBox Headline Group.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/GroupBox Headline Group.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Headline with Subheadline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Headline with Subheadline.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Nicer Text Editor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Nicer Text Editor.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/No Content Available.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/No Content Available.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/No Description Provided View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/No Description Provided View.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Search Fields/Custom Search Field.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Search Fields/Custom Search Field.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Search Fields/Install Process Custom Search Field.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Search Fields/Install Process Custom Search Field.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Settings/Settings Pane Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Settings/Settings Pane Template.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Sheets/Components/Disappearable Sheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Sheets/Components/Disappearable Sheet.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Sheets/Components/Dismiss Sheet Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Sheets/Components/Dismiss Sheet Button.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Sheets/Sheet Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Sheets/Sheet Template.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Sheets/Sheet with Title.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Sheets/Sheet with Title.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Tag Untag Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Tag Untag Button.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Uninstallation/Remove Packages Buttons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Uninstallation/Remove Packages Buttons.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Uninstallation/Uninstallation Progress Wheel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Uninstallation/Uninstallation Progress Wheel.swift -------------------------------------------------------------------------------- /Cork/Views/Reusables/Updating/Update Package Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Reusables/Updating/Update Package Button.swift -------------------------------------------------------------------------------- /Cork/Views/Services/Homebrew Services View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Services/Homebrew Services View.swift -------------------------------------------------------------------------------- /Cork/Views/Services/Reusables/Buttons/Load Services Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Services/Reusables/Buttons/Load Services Button.swift -------------------------------------------------------------------------------- /Cork/Views/Services/Service Detail/Service Detail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Services/Service Detail/Service Detail.swift -------------------------------------------------------------------------------- /Cork/Views/Services/Service Detail/Sub-Views/Basic Service Info View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Services/Service Detail/Sub-Views/Basic Service Info View.swift -------------------------------------------------------------------------------- /Cork/Views/Services/Service Detail/Sub-Views/Service Header Complex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Services/Service Detail/Sub-Views/Service Header Complex.swift -------------------------------------------------------------------------------- /Cork/Views/Services/Service Detail/Sub-Views/Service Locations View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Services/Service Detail/Sub-Views/Service Locations View.swift -------------------------------------------------------------------------------- /Cork/Views/Services/Service Detail/Sub-Views/Service Modification Buttons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Services/Service Detail/Sub-Views/Service Modification Buttons.swift -------------------------------------------------------------------------------- /Cork/Views/Services/Services Sidebar/Services Sidebar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Services/Services Sidebar/Services Sidebar.swift -------------------------------------------------------------------------------- /Cork/Views/Services/Services Sidebar/Sub-Views/Sidebar Service Row.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Services/Services Sidebar/Sub-Views/Sidebar Service Row.swift -------------------------------------------------------------------------------- /Cork/Views/Services/Services State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Services/Services State.swift -------------------------------------------------------------------------------- /Cork/Views/Services/Start Page/Services Start Page.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Services/Start Page/Services Start Page.swift -------------------------------------------------------------------------------- /Cork/Views/Settings/Panes/Advanced Pane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Settings/Panes/Advanced Pane.swift -------------------------------------------------------------------------------- /Cork/Views/Settings/Panes/Brew Pane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Settings/Panes/Brew Pane.swift -------------------------------------------------------------------------------- /Cork/Views/Settings/Panes/Discoverability Pane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Settings/Panes/Discoverability Pane.swift -------------------------------------------------------------------------------- /Cork/Views/Settings/Panes/General Pane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Settings/Panes/General Pane.swift -------------------------------------------------------------------------------- /Cork/Views/Settings/Panes/Installation Pane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Settings/Panes/Installation Pane.swift -------------------------------------------------------------------------------- /Cork/Views/Settings/Panes/Maintenance Pane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Settings/Panes/Maintenance Pane.swift -------------------------------------------------------------------------------- /Cork/Views/Settings/Panes/Notifications Pane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Settings/Panes/Notifications Pane.swift -------------------------------------------------------------------------------- /Cork/Views/Settings/Panes/Sub-Views/Brew Pane/Custom Homebrew Executable View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Settings/Panes/Sub-Views/Brew Pane/Custom Homebrew Executable View.swift -------------------------------------------------------------------------------- /Cork/Views/Settings/Settings View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Settings/Settings View.swift -------------------------------------------------------------------------------- /Cork/Views/Shared/Button Bottom Row.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Shared/Button Bottom Row.swift -------------------------------------------------------------------------------- /Cork/Views/Shared/Button That Opens Websites.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Shared/Button That Opens Websites.swift -------------------------------------------------------------------------------- /Cork/Views/Shared/Buttons/HelpButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Shared/Buttons/HelpButton.swift -------------------------------------------------------------------------------- /Cork/Views/Shared/Buttons/NSButton Port.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Shared/Buttons/NSButton Port.swift -------------------------------------------------------------------------------- /Cork/Views/Shared/Inline Content Unavailable View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Shared/Inline Content Unavailable View.swift -------------------------------------------------------------------------------- /Cork/Views/Shared/Inline Fatal Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Shared/Inline Fatal Error.swift -------------------------------------------------------------------------------- /Cork/Views/Shared/Loading View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Shared/Loading View.swift -------------------------------------------------------------------------------- /Cork/Views/Shared/PillText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Shared/PillText.swift -------------------------------------------------------------------------------- /Cork/Views/Shared/Sanitized Package Name.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Shared/Sanitized Package Name.swift -------------------------------------------------------------------------------- /Cork/Views/Shared/Subtitle Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Shared/Subtitle Text.swift -------------------------------------------------------------------------------- /Cork/Views/Sidebar/Components/Casks Section.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Sidebar/Components/Casks Section.swift -------------------------------------------------------------------------------- /Cork/Views/Sidebar/Components/Formulae Section.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Sidebar/Components/Formulae Section.swift -------------------------------------------------------------------------------- /Cork/Views/Sidebar/Components/Sidebar Context Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Sidebar/Components/Sidebar Context Menu.swift -------------------------------------------------------------------------------- /Cork/Views/Sidebar/Components/Sidebar Package Row.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Sidebar/Components/Sidebar Package Row.swift -------------------------------------------------------------------------------- /Cork/Views/Sidebar/Components/Taps Section.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Sidebar/Components/Taps Section.swift -------------------------------------------------------------------------------- /Cork/Views/Sidebar/Sidebar View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Sidebar/Sidebar View.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Start Page.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Start Page.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Sub-Views/Adoptable Packages Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Sub-Views/Adoptable Packages Box.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Sub-Views/Analytics Status Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Sub-Views/Analytics Status Box.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Sub-Views/Broken Packages/Broken Package List Row.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Sub-Views/Broken Packages/Broken Package List Row.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Sub-Views/Cached Downloads Folder Info Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Sub-Views/Cached Downloads Folder Info Box.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Sub-Views/Loading Errors Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Sub-Views/Loading Errors Box.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Sub-Views/Outdated Packages Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Sub-Views/Outdated Packages Box.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Sub-Views/Outdated Packages/Loading of Outdated Packages Failed List Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Sub-Views/Outdated Packages/Loading of Outdated Packages Failed List Box.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Sub-Views/Outdated Packages/No Updates Available Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Sub-Views/Outdated Packages/No Updates Available Box.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Sub-Views/Outdated Packages/Outdated Package List Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Sub-Views/Outdated Packages/Outdated Package List Box.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Sub-Views/Outdated Packages/Outdated Package Loader Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Sub-Views/Outdated Packages/Outdated Package Loader Box.swift -------------------------------------------------------------------------------- /Cork/Views/Start Page/Sub-Views/Package And Tap Overview Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Start Page/Sub-Views/Package And Tap Overview Box.swift -------------------------------------------------------------------------------- /Cork/Views/Taps/Add Tap View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Taps/Add Tap View.swift -------------------------------------------------------------------------------- /Cork/Views/Taps/Sub-Views/Tap - Adding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Taps/Sub-Views/Tap - Adding.swift -------------------------------------------------------------------------------- /Cork/Views/Taps/Sub-Views/Tap - Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Taps/Sub-Views/Tap - Error.swift -------------------------------------------------------------------------------- /Cork/Views/Taps/Sub-Views/Tap - Finished.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Taps/Sub-Views/Tap - Finished.swift -------------------------------------------------------------------------------- /Cork/Views/Taps/Sub-Views/Tap - Initial.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Taps/Sub-Views/Tap - Initial.swift -------------------------------------------------------------------------------- /Cork/Views/Taps/Tap Details/Sub-Views/Included Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Taps/Tap Details/Sub-Views/Included Packages.swift -------------------------------------------------------------------------------- /Cork/Views/Taps/Tap Details/Sub-Views/Packages Included in Tap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Taps/Tap Details/Sub-Views/Packages Included in Tap.swift -------------------------------------------------------------------------------- /Cork/Views/Taps/Tap Details/Sub-Views/Tap Info.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Taps/Tap Details/Sub-Views/Tap Info.swift -------------------------------------------------------------------------------- /Cork/Views/Taps/Tap Details/Sub-Views/Tap Title.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Taps/Tap Details/Sub-Views/Tap Title.swift -------------------------------------------------------------------------------- /Cork/Views/Taps/Tap Details/Tap Details.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Taps/Tap Details/Tap Details.swift -------------------------------------------------------------------------------- /Cork/Views/Updating/Complete Updating/Sub-Views/Stages/Errored Out Stage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Updating/Complete Updating/Sub-Views/Stages/Errored Out Stage.swift -------------------------------------------------------------------------------- /Cork/Views/Updating/Complete Updating/Sub-Views/Stages/Finished Stage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Updating/Complete Updating/Sub-Views/Stages/Finished Stage.swift -------------------------------------------------------------------------------- /Cork/Views/Updating/Complete Updating/Sub-Views/Stages/No Updates Available.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Updating/Complete Updating/Sub-Views/Stages/No Updates Available.swift -------------------------------------------------------------------------------- /Cork/Views/Updating/Complete Updating/Sub-Views/States/Checking for Updates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Updating/Complete Updating/Sub-Views/States/Checking for Updates.swift -------------------------------------------------------------------------------- /Cork/Views/Updating/Complete Updating/Sub-Views/States/Ready to Update.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Updating/Complete Updating/Sub-Views/States/Ready to Update.swift -------------------------------------------------------------------------------- /Cork/Views/Updating/Complete Updating/Sub-Views/States/Updating Finished.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Updating/Complete Updating/Sub-Views/States/Updating Finished.swift -------------------------------------------------------------------------------- /Cork/Views/Updating/Complete Updating/Sub-Views/States/Updating Package Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Updating/Complete Updating/Sub-Views/States/Updating Package Tracker.swift -------------------------------------------------------------------------------- /Cork/Views/Updating/Complete Updating/Sub-Views/States/Updating Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Updating/Complete Updating/Sub-Views/States/Updating Packages.swift -------------------------------------------------------------------------------- /Cork/Views/Updating/Complete Updating/Update Packages View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Updating/Complete Updating/Update Packages View.swift -------------------------------------------------------------------------------- /Cork/Views/Updating/Incremental Updating/Update Some Packages View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Cork/Views/Updating/Incremental Updating/Update Some Packages View.swift -------------------------------------------------------------------------------- /CorkHelp/CorkHelp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/CorkHelp-Info.plist -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/getting-started/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/getting-started/main.md -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/index.md -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/maintenance-operations/main.md: -------------------------------------------------------------------------------- 1 | # Maintenance Operations 2 | 3 | -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/package-operations/advanced/pin.md: -------------------------------------------------------------------------------- 1 | # Package Pinning 2 | 3 | -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/package-operations/advanced/purging.md: -------------------------------------------------------------------------------- 1 | # Purge Packages 2 | 3 | -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/package-operations/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/package-operations/main.md -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/tap-operations/main.md: -------------------------------------------------------------------------------- 1 | # Tap Operations 2 | 3 | -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/template.html -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/Assets/Cork Main Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/Assets/Cork Main Window.png -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/Assets/Raw/Cork Main Window.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/Assets/Raw/Cork Main Window.afdesign -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/Assets/Raw/Sidebar.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/Assets/Raw/Sidebar.afdesign -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/Assets/Raw/Status Page.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/Assets/Raw/Status Page.afdesign -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/Assets/Raw/Toolbar.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/Assets/Raw/Toolbar.afdesign -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/Assets/Sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/Assets/Sidebar.png -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/Assets/Status Page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/Assets/Status Page.png -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/Assets/Toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/Assets/Toolbar.png -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/detail-area/detail-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/detail-area/detail-page.md -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/detail-area/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/detail-area/main.md -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/detail-area/status-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/detail-area/status-page.md -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/main.md -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/sidebar.md -------------------------------------------------------------------------------- /CorkHelp/Resources/Raw Files/user-interface/toolbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/Raw Files/user-interface/toolbar.md -------------------------------------------------------------------------------- /CorkHelp/Resources/en.lproj/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/en.lproj/index.html -------------------------------------------------------------------------------- /CorkHelp/Resources/en.lproj/topic1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/en.lproj/topic1.html -------------------------------------------------------------------------------- /CorkHelp/Resources/en.lproj/topic2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/CorkHelp/Resources/en.lproj/topic2.html -------------------------------------------------------------------------------- /Derived/InfoPlists/CorkHelp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/InfoPlists/CorkHelp-Info.plist -------------------------------------------------------------------------------- /Derived/InfoPlists/CorkTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/InfoPlists/CorkTests-Info.plist -------------------------------------------------------------------------------- /Derived/InfoPlists/Cork_CorkModels-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/InfoPlists/Cork_CorkModels-Info.plist -------------------------------------------------------------------------------- /Derived/InfoPlists/Cork_CorkShared-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/InfoPlists/Cork_CorkShared-Info.plist -------------------------------------------------------------------------------- /Derived/Sources/TuistAssets+Cork.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/Sources/TuistAssets+Cork.swift -------------------------------------------------------------------------------- /Derived/Sources/TuistAssets+CorkModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/Sources/TuistAssets+CorkModels.swift -------------------------------------------------------------------------------- /Derived/Sources/TuistAssets+CorkShared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/Sources/TuistAssets+CorkShared.swift -------------------------------------------------------------------------------- /Derived/Sources/TuistAssets+SelfCompiled.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/Sources/TuistAssets+SelfCompiled.swift -------------------------------------------------------------------------------- /Derived/Sources/TuistBundle+Cork.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/Sources/TuistBundle+Cork.swift -------------------------------------------------------------------------------- /Derived/Sources/TuistBundle+CorkModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/Sources/TuistBundle+CorkModels.swift -------------------------------------------------------------------------------- /Derived/Sources/TuistBundle+CorkShared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/Sources/TuistBundle+CorkShared.swift -------------------------------------------------------------------------------- /Derived/Sources/TuistBundle+SelfCompiled.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Derived/Sources/TuistBundle+SelfCompiled.swift -------------------------------------------------------------------------------- /Modules/Intents/intent.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Notifications/Send Notification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Notifications/Send Notification.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/App State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/App State.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Enums/Alerts/Displayable Alerts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Enums/Alerts/Displayable Alerts.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Enums/Alerts/Error Details/Displayable Alerts - Descriptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Enums/Alerts/Error Details/Displayable Alerts - Descriptions.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Enums/Alerts/Error Details/Displayable Alerts - Recovery Suggestions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Enums/Alerts/Error Details/Displayable Alerts - Recovery Suggestions.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Enums/Brewfile import Stage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Enums/Brewfile import Stage.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Enums/Confirmation dialogs/Confirmation Dialog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Enums/Confirmation dialogs/Confirmation Dialog.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Enums/Sheets/Displayable Sheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Enums/Sheets/Displayable Sheet.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Errors/Cached Download Deletion Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Errors/Cached Download Deletion Error.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Errors/Intent Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Errors/Intent Error.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Errors/JSON Parsing Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Errors/JSON Parsing Error.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Errors/Package Loading Error 2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Errors/Package Loading Error 2.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Errors/Package Loading Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Errors/Package Loading Error.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Errors/Package Synchronization Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Errors/Package Synchronization Error.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Errors/Tap Loading Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Errors/Tap Loading Error.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Apply Pinned Status.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Apply Pinned Status.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Caches/Load Cached Package Downloads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Caches/Load Cached Package Downloads.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Check if Package was Installed Intentionally.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Check if Package was Installed Intentionally.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Get Names of Pinned Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Get Names of Pinned Packages.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Get Package Name from URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Get Package Name from URL.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Installation & Removal/Removal/Apply Uninstallation Spinner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Installation & Removal/Removal/Apply Uninstallation Spinner.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Installation & Removal/Removal/Uninstall Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Installation & Removal/Removal/Uninstall Packages.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Installation & Removal/Synchnorize Installed Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Installation & Removal/Synchnorize Installed Packages.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Package Loading/Get Outdated Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Package Loading/Get Outdated Packages.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Package Loading/Helper Logic/Get Package Type from URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Package Loading/Helper Logic/Get Package Type from URL.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Package Loading/Load Up Installed Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Package Loading/Load Up Installed Packages.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Packages/Get Adoptable Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Packages/Get Adoptable Packages.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Packages/Load Up Package Info.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Packages/Load Up Package Info.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Tagging/Apply Tags to Package Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Tagging/Apply Tags to Package Array.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Taps/Add Tap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Taps/Add Tap.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Taps/Load up Tapped Taps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Taps/Load up Tapped Taps.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Taps/Parse Tap Info.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Taps/Parse Tap Info.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Taps/Remove Tap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Taps/Remove Tap.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Update Package Tracker In place.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Update Package Tracker In place.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Logic/Utilities/Get Contents of Folder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Logic/Utilities/Get Contents of Folder.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/App Adoption/Adoptable App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/App Adoption/Adoptable App.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/App Adoption/Excluded Adptable App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/App Adoption/Excluded Adptable App.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Application.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Application.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Brew Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Brew Package.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Brew Tap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Brew Tap.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Cached Download.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Cached Download.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Caches/Assign Types to Cached Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Caches/Assign Types to Cached Packages.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Corrupted Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Corrupted Package.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Extensions/Excluded Adoptable App - Initialize from Adoptable App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Extensions/Excluded Adoptable App - Initialize from Adoptable App.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Intents/Minimal Homebrew Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Intents/Minimal Homebrew Package.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Outdated Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Outdated Package.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Outdated Packages/Outdated Package Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Outdated Packages/Outdated Package Tracker.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Packages/Brew Package Details.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Packages/Brew Package Details.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Packages/Package Dependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Packages/Package Dependency.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Models/Tap Codable Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Models/Tap Codable Model.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Protocols/Modifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Protocols/Modifiable.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Trackers/Brew Packages Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Trackers/Brew Packages Tracker.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Trackers/Cached Packages Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Trackers/Cached Packages Tracker.swift -------------------------------------------------------------------------------- /Modules/Packages/PackagesModels/Trackers/Tap Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Packages/PackagesModels/Trackers/Tap Tracker.swift -------------------------------------------------------------------------------- /Modules/Shared/App Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/App Constants.swift -------------------------------------------------------------------------------- /Modules/Shared/Defaults/Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Defaults/Defaults.swift -------------------------------------------------------------------------------- /Modules/Shared/Defaults/Licensing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Defaults/Licensing.swift -------------------------------------------------------------------------------- /Modules/Shared/Defaults/Onboarding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Defaults/Onboarding.swift -------------------------------------------------------------------------------- /Modules/Shared/Defaults/Settings/Discoverability Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Defaults/Settings/Discoverability Settings.swift -------------------------------------------------------------------------------- /Modules/Shared/Defaults/Settings/General Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Defaults/Settings/General Settings.swift -------------------------------------------------------------------------------- /Modules/Shared/Defaults/Settings/Homebrew Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Defaults/Settings/Homebrew Settings.swift -------------------------------------------------------------------------------- /Modules/Shared/Defaults/Settings/Maintenance Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Defaults/Settings/Maintenance Settings.swift -------------------------------------------------------------------------------- /Modules/Shared/Defaults/Settings/Notifications Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Defaults/Settings/Notifications Settings.swift -------------------------------------------------------------------------------- /Modules/Shared/Defaults/Settings/Packages Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Defaults/Settings/Packages Settings.swift -------------------------------------------------------------------------------- /Modules/Shared/Enums/Discoverability/Day Spans.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Enums/Discoverability/Day Spans.swift -------------------------------------------------------------------------------- /Modules/Shared/Enums/Discoverability/Top Package Sorting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Enums/Discoverability/Top Package Sorting.swift -------------------------------------------------------------------------------- /Modules/Shared/Enums/Outdated Packages Notification Type.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Enums/Outdated Packages Notification Type.swift -------------------------------------------------------------------------------- /Modules/Shared/Enums/Package Caveats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Enums/Package Caveats.swift -------------------------------------------------------------------------------- /Modules/Shared/Enums/Package Sorting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Enums/Package Sorting.swift -------------------------------------------------------------------------------- /Modules/Shared/Enums/Package Updating/Outdated Package Info Amount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Enums/Package Updating/Outdated Package Info Amount.swift -------------------------------------------------------------------------------- /Modules/Shared/Extensions/DateStyle - Conform to Defaults Serializable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Extensions/DateStyle - Conform to Defaults Serializable.swift -------------------------------------------------------------------------------- /Modules/Shared/Logic/Check if URL is Symlink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Logic/Check if URL is Symlink.swift -------------------------------------------------------------------------------- /Modules/Shared/Logic/Filter Out Symlinks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Logic/Filter Out Symlinks.swift -------------------------------------------------------------------------------- /Modules/Shared/Logic/Get Folder Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Logic/Get Folder Size.swift -------------------------------------------------------------------------------- /Modules/Shared/Logic/Networking/Download Data From URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Logic/Networking/Download Data From URL.swift -------------------------------------------------------------------------------- /Modules/Shared/Logic/REGEX Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Logic/REGEX Match.swift -------------------------------------------------------------------------------- /Modules/Shared/Modules/Persistence/Excluded Adoptable Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Modules/Persistence/Excluded Adoptable Package.swift -------------------------------------------------------------------------------- /Modules/Shared/Modules/Persistence/Tagged Packages Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/Shared/Modules/Persistence/Tagged Packages Storage.swift -------------------------------------------------------------------------------- /Modules/TerminalSupport/Logic/Shell Commands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/TerminalSupport/Logic/Shell Commands.swift -------------------------------------------------------------------------------- /Modules/TerminalSupport/Models/Terminal Output.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Modules/TerminalSupport/Models/Terminal Output.swift -------------------------------------------------------------------------------- /PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Project.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Cork Itself/Setup/Top Packages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Tests/Cork Itself/Setup/Top Packages.swift -------------------------------------------------------------------------------- /Tests/Homebrew Backend/Taps/Tap Decoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Tests/Homebrew Backend/Taps/Tap Decoding.swift -------------------------------------------------------------------------------- /Tests/Homebrew Backend/Taps/Tap Retrieval.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tuist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Tuist.swift -------------------------------------------------------------------------------- /Tuist/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Tuist/Package.resolved -------------------------------------------------------------------------------- /Tuist/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Tuist/Package.swift -------------------------------------------------------------------------------- /Tuist/Tuist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/Tuist/Tuist.swift -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/crowdin.yml -------------------------------------------------------------------------------- /xcconfigs/Cork.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/xcconfigs/Cork.xcconfig -------------------------------------------------------------------------------- /xcconfigs/CorkHelp.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/xcconfigs/CorkHelp.xcconfig -------------------------------------------------------------------------------- /xcconfigs/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/xcconfigs/Project.xcconfig -------------------------------------------------------------------------------- /xcconfigs/Self-Compiled.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresdv/Cork/HEAD/xcconfigs/Self-Compiled.xcconfig --------------------------------------------------------------------------------