gitextract_l43svsy0/ ├── .bartycrouch.toml ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── .gitignore ├── .periphery.yml ├── .swiftlint.yml ├── Designs/ │ ├── App-Store/ │ │ ├── 01-Main.pxd │ │ ├── 02-Types.pxd │ │ ├── 03-Search.pxd │ │ ├── 04-Pin.pxd │ │ ├── 05-Shortcuts.pxd │ │ ├── 06-Languages.pxd │ │ └── Promo/ │ │ └── Maccy_1527619437_20240124_MacAppStore_SupportingImagery.psd │ ├── Copies.txt │ ├── Icons.sketch │ ├── Instructions.pxd/ │ │ ├── QuickLook/ │ │ │ ├── Icon.tiff │ │ │ └── Thumbnail.tiff │ │ ├── data/ │ │ │ ├── CAE20F62-9DFC-4BD2-AE79-BE620A2ADE55 │ │ │ ├── DF48A8C2-D105-49EF-BF24-87B87BAECAC7-OriginalContentSource │ │ │ └── selectionForContentTransform/ │ │ │ ├── meta │ │ │ └── shapeSelection/ │ │ │ ├── meta │ │ │ └── path │ │ └── metadata.info │ └── Storage-Types.pxd/ │ ├── QuickLook/ │ │ ├── Icon.tiff │ │ └── Thumbnail.tiff │ ├── data/ │ │ ├── 460814B1-E0F9-4E2C-B4CA-32C0CD866260-OriginalContentSource │ │ ├── A2CD8EA6-822D-4757-B972-8653B2AABD6B │ │ ├── selection/ │ │ │ ├── meta │ │ │ └── shapeSelection/ │ │ │ ├── meta │ │ │ └── path │ │ └── selectionForContentTransform/ │ │ ├── meta │ │ └── shapeSelection/ │ │ ├── meta │ │ └── path │ └── metadata.info ├── LICENSE ├── Maccy/ │ ├── About.swift │ ├── Accessibility.swift │ ├── AppDelegate.swift │ ├── AppStoreReview.swift │ ├── ApplicationImage.swift │ ├── ApplicationImageCache.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── StatusBarMenuImage.imageset/ │ │ │ └── Contents.json │ │ ├── clipboard.fill.imageset/ │ │ │ └── Contents.json │ │ ├── paperclip.imageset/ │ │ │ └── Contents.json │ │ └── scissors.imageset/ │ │ └── Contents.json │ ├── Clipboard.swift │ ├── ColorImage.swift │ ├── Extensions/ │ │ ├── Collection+Surrounding.swift │ │ ├── Color+Random.swift │ │ ├── Defaults.Keys+Names.swift │ │ ├── Dictionary+RemoveItem.swift │ │ ├── KeyEquivalent+Keys.swift │ │ ├── KeyboardShortcuts.Name+Shortcuts.swift │ │ ├── ModifierFlags+Description.swift │ │ ├── NSApplication+Windows.swift │ │ ├── NSImage+Names.swift │ │ ├── NSImage+Resized.swift │ │ ├── NSPasteboard.PasteboardType+Types.swift │ │ ├── NSPoint+DefaultsSerializable.swift │ │ ├── NSRect+Centered.swift │ │ ├── NSRunningApplication+WindowFrame.swift │ │ ├── NSScreen+ForPopup.swift │ │ ├── NSSize+DefaultsSerializable.swift │ │ ├── NSSound+Named.swift │ │ ├── NSWorkspace+ApplicationName.swift │ │ ├── Sauce+KeyboardShortcuts.swift │ │ ├── Settings.PaneIdentifier+Panes.swift │ │ ├── String+Identifiable.swift │ │ └── String+Shortened.swift │ ├── FloatingPanel.swift │ ├── GlobalHotKey.swift │ ├── HighlightMatch.swift │ ├── History.xcdatamodeld/ │ │ └── History.xcdatamodel/ │ │ └── contents │ ├── HistoryItemAction.swift │ ├── Info.plist │ ├── Intents/ │ │ ├── AppIntentError.swift │ │ ├── Clear.swift │ │ ├── Delete.swift │ │ ├── Get.swift │ │ ├── HistoryItemAppEntity.swift │ │ └── Select.swift │ ├── ItemsProtocol.swift │ ├── KeyChord.swift │ ├── KeyShortcut.swift │ ├── KeyboardLayout.swift │ ├── Maccy.entitlements │ ├── MaccyApp.swift │ ├── MenuIcon.swift │ ├── Models/ │ │ ├── HistoryItem.swift │ │ └── HistoryItemContent.swift │ ├── Notifier.swift │ ├── Observables/ │ │ ├── AppState.swift │ │ ├── Footer.swift │ │ ├── FooterItem.swift │ │ ├── History.swift │ │ ├── HistoryItemDecorator.swift │ │ ├── ModifierFlags.swift │ │ ├── NavigationManager.swift │ │ ├── Popup.swift │ │ └── SlideoutController.swift │ ├── PasteStack.swift │ ├── PinsPosition.swift │ ├── PopupPosition.swift │ ├── Search.swift │ ├── SearchVisibility.swift │ ├── Selection.swift │ ├── Settings/ │ │ ├── AdvancedSettingsPane.swift │ │ ├── AppearanceSettingsPane.swift │ │ ├── GeneralSettingsPane.swift │ │ ├── IgnoreSettingsPane/ │ │ │ ├── IgnoreApplicationsSettingsView.swift │ │ │ ├── IgnorePasteboardTypesSettingsView.swift │ │ │ └── IgnoreRegexpsSettingsView.swift │ │ ├── IgnoreSettingsPane.swift │ │ ├── PinsSettingsPane.swift │ │ ├── StorageSettingsPane.swift │ │ ├── ar.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── be.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── bn.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── bs.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── ca.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── ckb.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── cs.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── de.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── el.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── en.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── eo.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── es.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── fa.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── fr.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── he.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── hi.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── hr.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── hu.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── id.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── it.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── ja.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── ko.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── lt.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── lv.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── nb.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── nl.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── pl.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── pt-BR.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── pt.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── ro.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── ru.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── sl.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── sv.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── ta.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── th.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── tr.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── uk.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── uz.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── vi.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ ├── zh-Hans.lproj/ │ │ │ ├── AdvancedSettings.strings │ │ │ ├── AppearanceSettings.strings │ │ │ ├── GeneralSettings.strings │ │ │ ├── IgnoreSettings.strings │ │ │ ├── PinsSettings.strings │ │ │ └── StorageSettings.strings │ │ └── zh-Hant.lproj/ │ │ ├── AdvancedSettings.strings │ │ ├── AppearanceSettings.strings │ │ ├── GeneralSettings.strings │ │ ├── IgnoreSettings.strings │ │ ├── PinsSettings.strings │ │ └── StorageSettings.strings │ ├── SoftwareUpdater.swift │ ├── Sorter.swift │ ├── Sounds/ │ │ ├── Knock.caf │ │ └── Write.caf │ ├── Storage.swift │ ├── Storage.xcdatamodeld/ │ │ └── Storage.xcdatamodel/ │ │ └── contents │ ├── Throttler.swift │ ├── Views/ │ │ ├── AppImageView.swift │ │ ├── AsyncView.swift │ │ ├── ConfirmationView.swift │ │ ├── ContentView.swift │ │ ├── FooterItemView.swift │ │ ├── FooterView.swift │ │ ├── HeaderView.swift │ │ ├── HeightReaderModifier.swift │ │ ├── HistoryItemView.swift │ │ ├── HistoryListView.swift │ │ ├── HoverSelectionModifier.swift │ │ ├── KeyHandlingView.swift │ │ ├── KeyboardShortcutView.swift │ │ ├── ListHeaderView.swift │ │ ├── ListItemTitleView.swift │ │ ├── ListItemView.swift │ │ ├── MouseMovedViewModifer.swift │ │ ├── MultipleSelectionListView.swift │ │ ├── PasteStackItemView.swift │ │ ├── PasteStackPreviewView.swift │ │ ├── PasteStackView.swift │ │ ├── PinsView.swift │ │ ├── PreviewItemView.swift │ │ ├── SearchFieldView.swift │ │ ├── SlideoutContentView.swift │ │ ├── SlideoutView.swift │ │ ├── ToolbarView.swift │ │ ├── VisualEffectView.swift │ │ ├── WrappingTextView.swift │ │ ├── ar.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── be.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── bn.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── bs.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── ca.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── ckb.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── cs.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── de.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── el.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── en.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── eo.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── es.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── fa.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── fr.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── he.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── hi.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── hr.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── hu.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── id.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── it.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── ja.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── ko.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── lt.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── lv.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── nb.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── nl.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── pl.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── pt-BR.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── pt.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── ro.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── ru.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── sl.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── sv.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── ta.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── th.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── tr.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── uk.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── uz.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── vi.lproj/ │ │ │ └── PreviewItemView.strings │ │ ├── zh-Hans.lproj/ │ │ │ └── PreviewItemView.strings │ │ └── zh-Hant.lproj/ │ │ └── PreviewItemView.strings │ ├── ar.lproj/ │ │ └── Localizable.strings │ ├── be.lproj/ │ │ └── Localizable.strings │ ├── bn.lproj/ │ │ └── Localizable.strings │ ├── bs.lproj/ │ │ └── Localizable.strings │ ├── ca.lproj/ │ │ └── Localizable.strings │ ├── ckb.lproj/ │ │ └── Localizable.strings │ ├── cs.lproj/ │ │ ├── Localizable.strings │ │ └── Preview.strings │ ├── de.lproj/ │ │ └── Localizable.strings │ ├── el.lproj/ │ │ └── Localizable.strings │ ├── en.lproj/ │ │ └── Localizable.strings │ ├── eo.lproj/ │ │ └── Localizable.strings │ ├── es.lproj/ │ │ └── Localizable.strings │ ├── fa.lproj/ │ │ └── Localizable.strings │ ├── fr.lproj/ │ │ └── Localizable.strings │ ├── he.lproj/ │ │ └── Localizable.strings │ ├── hi.lproj/ │ │ └── Localizable.strings │ ├── hr.lproj/ │ │ └── Localizable.strings │ ├── hu.lproj/ │ │ └── Localizable.strings │ ├── id.lproj/ │ │ └── Localizable.strings │ ├── it.lproj/ │ │ └── Localizable.strings │ ├── ja.lproj/ │ │ └── Localizable.strings │ ├── ko.lproj/ │ │ └── Localizable.strings │ ├── lt.lproj/ │ │ └── Localizable.strings │ ├── lv.lproj/ │ │ └── Localizable.strings │ ├── nb.lproj/ │ │ └── Localizable.strings │ ├── nl.lproj/ │ │ └── Localizable.strings │ ├── pl.lproj/ │ │ └── Localizable.strings │ ├── pt-BR.lproj/ │ │ ├── Localizable.strings │ │ └── Preview.strings │ ├── pt.lproj/ │ │ └── Localizable.strings │ ├── ro.lproj/ │ │ └── Localizable.strings │ ├── ru.lproj/ │ │ └── Localizable.strings │ ├── sl.lproj/ │ │ └── Localizable.strings │ ├── sv.lproj/ │ │ └── Localizable.strings │ ├── ta.lproj/ │ │ └── Localizable.strings │ ├── th.lproj/ │ │ └── Localizable.strings │ ├── tr.lproj/ │ │ └── Localizable.strings │ ├── uk.lproj/ │ │ └── Localizable.strings │ ├── uz.lproj/ │ │ └── Localizable.strings │ ├── vi.lproj/ │ │ └── Localizable.strings │ ├── zh-Hans.lproj/ │ │ └── Localizable.strings │ └── zh-Hant.lproj/ │ └── Localizable.strings ├── Maccy.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── Maccy.xcscheme ├── Maccy.xctestplan ├── MaccyTests/ │ ├── ClipboardTests.swift │ ├── ColorImageTests.swift │ ├── HistoryDecoratorTests.swift │ ├── HistoryItemTests.swift │ ├── HistoryTests.swift │ ├── Info.plist │ ├── SearchTests.swift │ └── SorterTests.swift ├── MaccyUITests/ │ ├── Info.plist │ └── MaccyUITests.swift ├── README.md ├── appcast.xml └── docs/ └── keyboard-shortcut-password-fields.md