├── .swiftformat ├── .swiftlint.yml ├── Assets.xcassets ├── AppIcon-Extension.appiconset │ ├── Contents.json │ └── iTunesArtwork@2x.png ├── AppIcon-Messages.stickersiconset │ ├── 1024x768.png │ ├── 120x90.png │ ├── 134x100.png │ ├── 148x110.png │ ├── 180x135.png │ ├── 54x40.png │ ├── 64x48.png │ ├── 81x60.png │ ├── 96x72.png │ └── Contents.json ├── AppIcon-iOS.appiconset │ ├── Contents.json │ └── iTunesArtwork@2x.png ├── Colors │ ├── Contents.json │ ├── colorComponentLabel.colorset │ │ └── Contents.json │ ├── colorComponentLabelInverse.colorset │ │ └── Contents.json │ ├── colorDarkGray.colorset │ │ └── Contents.json │ ├── colorDim.colorset │ │ └── Contents.json │ ├── colorExpandedSection.colorset │ │ └── Contents.json │ ├── colorFill.colorset │ │ └── Contents.json │ ├── colorGray.colorset │ │ └── Contents.json │ ├── colorKeyboardBright.colorset │ │ └── Contents.json │ ├── colorKeyboardGray.colorset │ │ └── Contents.json │ ├── colorLightGray.colorset │ │ └── Contents.json │ ├── colorMacCard.colorset │ │ └── Contents.json │ ├── colorPaper.colorset │ │ └── Contents.json │ ├── colorShadow.colorset │ │ └── Contents.json │ ├── colorShadowContrast.colorset │ │ └── Contents.json │ ├── colorTint.colorset │ │ └── Contents.json │ ├── sectionTitleBottom.colorset │ │ └── Contents.json │ └── sectionTitleTop.colorset │ │ └── Contents.json ├── Contents.json ├── Types │ ├── Contents.json │ ├── audio.imageset │ │ ├── Contents.json │ │ └── mic.pdf │ ├── iconBlock.imageset │ │ ├── Contents.json │ │ └── doc.text.pdf │ ├── iconEmail.imageset │ │ ├── Contents.json │ │ └── envelope.pdf │ ├── iconLink.imageset │ │ ├── Contents.json │ │ └── safari.pdf │ ├── iconMap.imageset │ │ ├── Contents.json │ │ └── map.pdf │ ├── iconPaperclip.imageset │ │ ├── Contents.json │ │ └── paperclip.pdf │ ├── iconPerson.imageset │ │ ├── Contents.json │ │ └── person.pdf │ ├── iconStickyNote.imageset │ │ ├── Contents.json │ │ └── doc.pdf │ ├── iconText.imageset │ │ ├── Contents.json │ │ └── square.and.pencil.pdf │ ├── image.imageset │ │ ├── Contents.json │ │ └── photo.pdf │ ├── movie.imageset │ │ ├── Contents.json │ │ └── film.pdf │ └── zip.imageset │ │ ├── Contents.json │ │ └── archivebox.pdf ├── gladysImage.imageset │ ├── Contents.json │ ├── gladysImage 2.png │ ├── gladysImage.png │ └── gladysImageDark.png ├── siriCopy.imageset │ ├── Contents.json │ ├── siriCopy.png │ └── siriCopy@2x.png ├── siriPaste.imageset │ ├── Contents.json │ ├── siriPaste.png │ └── siriPaste@2x.png └── vision_icon.solidimagestack │ ├── Back.solidimagestacklayer │ ├── Content.imageset │ │ ├── Contents.json │ │ └── vp-00.png │ └── Contents.json │ ├── Contents.json │ ├── Front.solidimagestacklayer │ ├── Content.imageset │ │ ├── Contents.json │ │ └── vp-02.png │ └── Contents.json │ └── Middle.solidimagestacklayer │ ├── Content.imageset │ ├── Contents.json │ └── vp-01.png │ └── Contents.json ├── Base.lproj ├── Detail.storyboard ├── LaunchScreen.storyboard ├── Main.storyboard └── Preferences.storyboard ├── Gladys.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── ptsochantaris.xcuserdatad │ │ ├── IDEFindNavigatorScopes.plist │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ └── xcschemes │ │ ├── Gladys.xcscheme │ │ ├── GladysAction.xcscheme │ │ ├── GladysIndex.xcscheme │ │ ├── GladysKeys.xcscheme │ │ ├── GladysMessage.xcscheme │ │ ├── GladysWatch.xcscheme │ │ ├── GladysWidgetsExtension.xcscheme │ │ ├── MacGladys.xcscheme │ │ ├── MacGladysHelper.xcscheme │ │ ├── MacGladysIndex.xcscheme │ │ ├── MacGladysShare.xcscheme │ │ └── MacGladysWidgetsExtension.xcscheme └── xcuserdata │ └── ptsochantaris.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Gladys ├── App Intents │ ├── ArchivedItemEntity.swift │ ├── ArchivedItemLabel.swift │ ├── ArchivedItemLabelQuery.swift │ ├── ArchivedItemQuery.swift │ ├── CopyItem.swift │ ├── CreateItemFromFile.swift │ ├── CreateItemFromText.swift │ ├── CreateItemFromUrl.swift │ ├── DeleteItem.swift │ ├── GladysAppIntents.swift │ ├── GladysAppIntentsError.swift │ ├── OpenGladys.swift │ └── PasteIntoGladys.swift ├── Gladys.entitlements ├── Info.plist ├── Logic │ ├── ArchivedItem+Copy.swift │ ├── ArchivedItem+iOS.swift │ ├── BackgroundRefreshTasks.swift │ ├── CloudManager+iOS.swift │ ├── Component+Copy.swift │ ├── Component+Intents.swift │ ├── Component+iOS.swift │ ├── Model+AppIntents+iOS.swift │ ├── Model+iOS.swift │ └── WatchDelegate.swift ├── UI │ ├── Detail │ │ ├── DetailCell.swift │ │ ├── DetailController.swift │ │ ├── HeaderCell.swift │ │ ├── LabelCell.swift │ │ ├── NoteCell.swift │ │ ├── PlistEditor.swift │ │ └── TextEditController.swift │ ├── Hex Editor │ │ ├── AsciiCell.swift │ │ ├── ByteCell.swift │ │ ├── DataInspector.swift │ │ ├── GridLayout.swift │ │ ├── HexEdit.swift │ │ └── PanDirectionGestureRecognizer.swift │ ├── Labels │ │ ├── AddLabelController.swift │ │ ├── LabelEditorCell.swift │ │ ├── LabelEditorController.swift │ │ ├── LabelListCell.swift │ │ ├── LabelSelector.swift │ │ ├── LabelToggleCell.swift │ │ └── NotesEditorViewController.swift │ ├── Main │ │ ├── AppDelegate.swift │ │ ├── ArchivedItemCell.swift │ │ ├── CallbackSupport.swift │ │ ├── GladysPopoverBackgroundView.swift │ │ ├── GladysShortcuts.swift │ │ ├── GladysViewController.swift │ │ ├── LabelSectionTitle.swift │ │ ├── Reachability.swift │ │ ├── RoundedBackground.swift │ │ ├── SceneDelegate.swift │ │ ├── Singleton.swift │ │ ├── UIUtilities.swift │ │ └── ViewController.swift │ └── Prefs │ │ ├── AboutController.swift │ │ ├── CreditsViewController.swift │ │ ├── HelpController.swift │ │ ├── ICloudController.swift │ │ ├── IOSSettingsController.swift │ │ ├── OptionsController.swift │ │ ├── PreferencesController.swift │ │ ├── SwitchHolder.swift │ │ └── VisionSettingsController.swift ├── gladysIcon320.png └── gladysIcon64.png ├── GladysAction ├── ActionRequestViewController.swift ├── GladysAction.entitlements ├── Info.plist ├── LabelEditorCell.swift ├── LabelEditorController.swift └── MainInterface.storyboard ├── GladysAppKit ├── .gitignore ├── Package.resolved ├── Package.swift └── Sources │ └── GladysAppKit │ ├── Alerts.swift │ └── NSViewController+Extensions.swift ├── GladysCommon ├── .gitignore ├── Package.resolved ├── Package.swift └── Sources │ └── GladysCommon │ ├── ArchivedItem.swift │ ├── CKDatabaseScope+Extensions.swift │ ├── Cache.swift │ ├── Caches.swift │ ├── CloudManager.swift │ ├── CollectionHelpers.swift │ ├── Color+Extensions.swift │ ├── Component.swift │ ├── Data+Compression.swift │ ├── Data+Extensions.swift │ ├── DataImporter.swift │ ├── DropStore.swift │ ├── FileManager+Extensions.swift │ ├── Formatters.swift │ ├── GladysCommon.swift │ ├── GladysError.swift │ ├── Greetings.swift │ ├── HighlightRequest.swift │ ├── Image+Extensions.swift │ ├── Images.swift │ ├── Indexer.swift │ ├── ItemColor.swift │ ├── LiteModel.swift │ ├── Logging.swift │ ├── NSAttributedString+Extensions.swift │ ├── Notifications.swift │ ├── PersistedOptions.swift │ ├── PresentationInfo.swift │ ├── RepresentedClass.swift │ ├── SafeArchiving.swift │ ├── SortOption.swift │ ├── String+Extensions.swift │ ├── Types.swift │ ├── URL+Extensions.swift │ ├── URLResponse+Extensions.swift │ ├── UserDefault.swift │ └── WebArchiver.swift ├── GladysIndex ├── GladysIndex.entitlements ├── IndexRequestHandler.swift └── Info.plist ├── GladysKeys ├── Gladys Keys.entitlements ├── Info.plist ├── KeyboardViewController.swift └── MainInterface.storyboard ├── GladysMessage ├── ArchivedItem+Messages.swift ├── Base.lproj │ └── MainInterface.storyboard ├── Component+Messages.swift ├── GladysMessage.entitlements ├── Info.plist └── MessagesViewController.swift ├── GladysUI ├── .gitignore ├── Package.swift └── Sources │ └── GladysUI │ ├── ArchivedItem+Common.swift │ ├── ArchivedItem+Presentation.swift │ ├── ArchivedItemWrapper+Extensions.swift │ ├── ArchivedItemWrapper.swift │ ├── CallbackSupport+Common.swift │ ├── CloudManager+Mainapps.swift │ ├── Component+Common.swift │ ├── Coordination.swift │ ├── Filter.swift │ ├── ImportExport.swift │ ├── ItemView-Square.swift │ ├── ItemView-Wide.swift │ ├── ItemView.swift │ ├── LocalAuth.swift │ ├── Model.swift │ ├── PreviewItem.swift │ ├── PullState.swift │ ├── PushState.swift │ ├── Sha1.swift │ ├── TipJar.swift │ └── TokenField.swift ├── GladysUIKit ├── .gitignore ├── Package.resolved ├── Package.swift └── Sources │ └── GladysUIKit │ ├── Alerts.swift │ ├── CommonItemCell.swift │ ├── SortOption+Extensions.swift │ ├── UIScene+Extensions.swift │ ├── UIView+Extensions.swift │ └── UIViewController+Extensions.swift ├── GladysWatch ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── iTunesArtwork@2x.png │ │ ├── watch108x108@2x.png │ │ ├── watch24.png │ │ ├── watch275.png │ │ ├── watch38.png │ │ ├── watch40.png │ │ ├── watch42.png │ │ ├── watch50x50@2x.png │ │ └── watch88x88@2x.png │ ├── Complication.complicationset │ │ ├── Circular.imageset │ │ │ ├── Contents.json │ │ │ ├── gladysWatch32x32.png │ │ │ ├── gladysWatch36x36-1.png │ │ │ ├── gladysWatch36x36.png │ │ │ └── gladysWatch40x40.png │ │ ├── Contents.json │ │ ├── Extra Large.imageset │ │ │ └── Contents.json │ │ ├── Graphic Bezel.imageset │ │ │ └── Contents.json │ │ ├── Graphic Circular.imageset │ │ │ └── Contents.json │ │ ├── Graphic Corner.imageset │ │ │ ├── Contents.json │ │ │ ├── gladysWatch40.png │ │ │ └── gladysWatch44.png │ │ ├── Graphic Extra Large.imageset │ │ │ └── Contents.json │ │ ├── Graphic Large Rectangular.imageset │ │ │ └── Contents.json │ │ ├── Modular.imageset │ │ │ ├── Contents.json │ │ │ ├── gladysWatch52x52.png │ │ │ ├── gladysWatch58x58-1.png │ │ │ ├── gladysWatch58x58.png │ │ │ └── gladysWatch64x64.png │ │ └── Utilitarian.imageset │ │ │ ├── Contents.json │ │ │ ├── gladysWatch40x40.png │ │ │ ├── gladysWatch44x44-1.png │ │ │ ├── gladysWatch44x44.png │ │ │ └── gladysWatch50x50.png │ ├── Contents.json │ ├── colorTint.colorset │ │ └── Contents.json │ ├── gladysCorner.imageset │ │ ├── Contents.json │ │ ├── gladysWatch40.png │ │ └── gladysWatch44.png │ └── gladysWatch128.imageset │ │ ├── Contents.json │ │ └── gladysWatch128.png ├── ComplicationDataSource.swift ├── Drop.swift ├── GladysWatch.entitlements ├── GladysWatch.swift ├── GladysWatchModel.swift ├── Info.plist └── WatchMessage.swift ├── GladysWidgets ├── ConfigIntent.swift ├── CurrentState.swift ├── Extensions.swift ├── GladysWidgets.swift ├── GladysWidgetsBundle.swift ├── GladysWidgetsEntryView.swift ├── GladysWidgetsExtension.entitlements ├── Info.plist ├── ItemCell.swift ├── LabelOption.swift ├── LabelQuery.swift ├── MacGladysWidgetsExtension.entitlements └── Provider.swift ├── LICENSE.txt ├── MacGladys ├── Boot │ ├── Info.plist │ ├── MacGladys.entitlements │ └── main.swift ├── Logic │ ├── AppDelegate.swift │ ├── Application.swift │ ├── ArchivedItem+Mac.swift │ ├── CallbackSupport.swift │ ├── CloudManager+Mac.swift │ ├── Component+Mac.swift │ ├── FileMonitor.swift │ ├── GladysFilePromiseProvider.swift │ ├── Model+AppIntents+Mac.swift │ ├── Model+Mac.swift │ └── PersistedOptions+Mac.swift ├── Media.xcassets │ ├── AppIcon-Mac.appiconset │ │ ├── Contents.json │ │ ├── gladys-mac-1024.png │ │ ├── gladys-mac-128.png │ │ ├── gladys-mac-16.png │ │ ├── gladys-mac-256 1.png │ │ ├── gladys-mac-256.png │ │ ├── gladys-mac-32 1.png │ │ ├── gladys-mac-32.png │ │ ├── gladys-mac-512 1.png │ │ ├── gladys-mac-512.png │ │ └── gladys-mac-64.png │ ├── Contents.json │ ├── iconUserAdd.imageset │ │ ├── 1231-user-add.png │ │ ├── 1231-user-add@2x.png │ │ ├── 1231-user-add@3x.png │ │ └── Contents.json │ ├── iconUserChecked.imageset │ │ ├── 1233-user-checked-selected.png │ │ ├── 1233-user-checked-selected@2x.png │ │ ├── 1233-user-checked-selected@3x.png │ │ └── Contents.json │ ├── iconUserCheckedSmall.imageset │ │ ├── 1233-user-checked-selected.png │ │ └── Contents.json │ ├── locked.imageset │ │ ├── 744-locked-toolbar.png │ │ ├── 744-locked-toolbar@2x.png │ │ ├── 744-locked-toolbar@3x.png │ │ └── Contents.json │ ├── menubarIcon.imageset │ │ ├── Contents.json │ │ ├── menubar@1x.png │ │ ├── menubar@2x.png │ │ └── menubar@3x.png │ └── statuslabel.imageset │ │ ├── Contents.json │ │ ├── statuslabel.png │ │ └── statuslabel@2x.png ├── UI │ ├── AboutViewController.swift │ ├── Base.lproj │ │ └── Main.storyboard │ ├── ComponentCell.swift │ ├── ComponentCell.xib │ ├── DetailController.swift │ ├── DropCell.swift │ ├── LabelEditorViewController.swift │ ├── LabelSelectionViewController.swift │ ├── MainCollectionView.swift │ ├── NSPasteboard+Extensions.swift │ ├── NewLabelController.swift │ ├── NotesEditor.swift │ ├── Preferences.swift │ ├── ProgressViewController.swift │ ├── TouchBar.swift │ ├── ViewController.swift │ └── WindowController.swift └── gladysIconLarge.icns ├── MacGladysHelper ├── AppDelegate.swift ├── Info.plist ├── LauncherCommon.swift ├── MacGladysHelper.entitlements └── main.swift ├── MacGladysIndex ├── Info.plist └── MacGladysIndex.entitlements ├── MacGladysShare ├── Base.lproj │ └── ShareViewController.xib ├── Info.plist ├── MacGladysShare.entitlements ├── ShareCommon.swift ├── ShareViewController.swift └── icon.icns ├── README.md ├── StoreKit ├── Gladys.storekit └── MacGladys.storekit ├── ci_scripts ├── ci_pre_xcodebuild.sh └── parent ├── exportMac.plist ├── exportiOS.plist └── gallery.ckcomplication ├── 19294319-88B4-49D2-B952-C2CC411CFD28.json ├── 2463FCFB-27A3-46CC-83CA-C28B68AC5E02.json ├── 58F68BB5-46DD-4790-8CCB-CAAD03666A34.png ├── 5E364FDF-4B06-4F3B-BF45-6BA1E978E836.png ├── 63D304E5-53FD-457F-9A09-F2602DA45A8C.json ├── 8E1E7350-17C7-468D-B710-CAA72DB7A934.png ├── A196E952-F63B-48E6-ADBE-D694E29D7833.png ├── C7E6FA13-6D13-4465-ABC2-0BAD02D0B456.png ├── D98BB30B-825C-4FC4-9FCC-A2405C4EBC84.json ├── EA6689B7-A3D4-423E-9755-349722202516.png ├── ECD10347-94E1-47D6-AE25-07900E9A1577.json ├── F79AC331-27DF-4E06-BD48-6F14D6C9E16E.json └── complicationManifest.json /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Extension.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Extension.appiconset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Extension.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Extension.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Messages.stickersiconset/1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Messages.stickersiconset/1024x768.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Messages.stickersiconset/120x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Messages.stickersiconset/120x90.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Messages.stickersiconset/134x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Messages.stickersiconset/134x100.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Messages.stickersiconset/148x110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Messages.stickersiconset/148x110.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Messages.stickersiconset/180x135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Messages.stickersiconset/180x135.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Messages.stickersiconset/54x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Messages.stickersiconset/54x40.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Messages.stickersiconset/64x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Messages.stickersiconset/64x48.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Messages.stickersiconset/81x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Messages.stickersiconset/81x60.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Messages.stickersiconset/96x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Messages.stickersiconset/96x72.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-Messages.stickersiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-Messages.stickersiconset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-iOS.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-iOS.appiconset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon-iOS.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/AppIcon-iOS.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorComponentLabel.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorComponentLabel.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorComponentLabelInverse.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorComponentLabelInverse.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorDarkGray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorDarkGray.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorDim.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorDim.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorExpandedSection.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorExpandedSection.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorFill.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorFill.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorGray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorGray.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorKeyboardBright.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorKeyboardBright.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorKeyboardGray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorKeyboardGray.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorLightGray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorLightGray.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorMacCard.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorMacCard.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorPaper.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorPaper.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorShadow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorShadow.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorShadowContrast.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorShadowContrast.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/colorTint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/colorTint.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/sectionTitleBottom.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/sectionTitleBottom.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Colors/sectionTitleTop.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Colors/sectionTitleTop.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/audio.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/audio.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/audio.imageset/mic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/audio.imageset/mic.pdf -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconBlock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconBlock.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconBlock.imageset/doc.text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconBlock.imageset/doc.text.pdf -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconEmail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconEmail.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconEmail.imageset/envelope.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconEmail.imageset/envelope.pdf -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconLink.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconLink.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconLink.imageset/safari.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconLink.imageset/safari.pdf -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconMap.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconMap.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconMap.imageset/map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconMap.imageset/map.pdf -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconPaperclip.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconPaperclip.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconPaperclip.imageset/paperclip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconPaperclip.imageset/paperclip.pdf -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconPerson.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconPerson.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconPerson.imageset/person.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconPerson.imageset/person.pdf -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconStickyNote.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconStickyNote.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconStickyNote.imageset/doc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconStickyNote.imageset/doc.pdf -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconText.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconText.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/iconText.imageset/square.and.pencil.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/iconText.imageset/square.and.pencil.pdf -------------------------------------------------------------------------------- /Assets.xcassets/Types/image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/image.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/image.imageset/photo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/image.imageset/photo.pdf -------------------------------------------------------------------------------- /Assets.xcassets/Types/movie.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/movie.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/movie.imageset/film.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/movie.imageset/film.pdf -------------------------------------------------------------------------------- /Assets.xcassets/Types/zip.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/zip.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Types/zip.imageset/archivebox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/Types/zip.imageset/archivebox.pdf -------------------------------------------------------------------------------- /Assets.xcassets/gladysImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/gladysImage.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/gladysImage.imageset/gladysImage 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/gladysImage.imageset/gladysImage 2.png -------------------------------------------------------------------------------- /Assets.xcassets/gladysImage.imageset/gladysImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/gladysImage.imageset/gladysImage.png -------------------------------------------------------------------------------- /Assets.xcassets/gladysImage.imageset/gladysImageDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/gladysImage.imageset/gladysImageDark.png -------------------------------------------------------------------------------- /Assets.xcassets/siriCopy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/siriCopy.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/siriCopy.imageset/siriCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/siriCopy.imageset/siriCopy.png -------------------------------------------------------------------------------- /Assets.xcassets/siriCopy.imageset/siriCopy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/siriCopy.imageset/siriCopy@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/siriPaste.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/siriPaste.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/siriPaste.imageset/siriPaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/siriPaste.imageset/siriPaste.png -------------------------------------------------------------------------------- /Assets.xcassets/siriPaste.imageset/siriPaste@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/siriPaste.imageset/siriPaste@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/vision_icon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/vision_icon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/vision_icon.solidimagestack/Back.solidimagestacklayer/Content.imageset/vp-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/vision_icon.solidimagestack/Back.solidimagestacklayer/Content.imageset/vp-00.png -------------------------------------------------------------------------------- /Assets.xcassets/vision_icon.solidimagestack/Back.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/vision_icon.solidimagestack/Back.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/vision_icon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/vision_icon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/vision_icon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/vision_icon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/vision_icon.solidimagestack/Front.solidimagestacklayer/Content.imageset/vp-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/vision_icon.solidimagestack/Front.solidimagestacklayer/Content.imageset/vp-02.png -------------------------------------------------------------------------------- /Assets.xcassets/vision_icon.solidimagestack/Front.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/vision_icon.solidimagestack/Front.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/vision_icon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/vision_icon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/vision_icon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/vp-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/vision_icon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/vp-01.png -------------------------------------------------------------------------------- /Assets.xcassets/vision_icon.solidimagestack/Middle.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Assets.xcassets/vision_icon.solidimagestack/Middle.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /Base.lproj/Detail.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Base.lproj/Detail.storyboard -------------------------------------------------------------------------------- /Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Base.lproj/Preferences.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Base.lproj/Preferences.storyboard -------------------------------------------------------------------------------- /Gladys.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Gladys.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Gladys.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Gladys.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Gladys.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Gladys.xcodeproj/project.xcworkspace/xcuserdata/ptsochantaris.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/project.xcworkspace/xcuserdata/ptsochantaris.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /Gladys.xcodeproj/project.xcworkspace/xcuserdata/ptsochantaris.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/project.xcworkspace/xcuserdata/ptsochantaris.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/Gladys.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/Gladys.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/GladysAction.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/GladysAction.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/GladysIndex.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/GladysIndex.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/GladysKeys.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/GladysKeys.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/GladysMessage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/GladysMessage.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/GladysWatch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/GladysWatch.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/GladysWidgetsExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/GladysWidgetsExtension.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/MacGladys.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/MacGladys.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/MacGladysHelper.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/MacGladysHelper.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/MacGladysIndex.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/MacGladysIndex.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/MacGladysShare.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/MacGladysShare.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcshareddata/xcschemes/MacGladysWidgetsExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcshareddata/xcschemes/MacGladysWidgetsExtension.xcscheme -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcuserdata/ptsochantaris.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcuserdata/ptsochantaris.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Gladys.xcodeproj/xcuserdata/ptsochantaris.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys.xcodeproj/xcuserdata/ptsochantaris.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Gladys/App Intents/ArchivedItemEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/ArchivedItemEntity.swift -------------------------------------------------------------------------------- /Gladys/App Intents/ArchivedItemLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/ArchivedItemLabel.swift -------------------------------------------------------------------------------- /Gladys/App Intents/ArchivedItemLabelQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/ArchivedItemLabelQuery.swift -------------------------------------------------------------------------------- /Gladys/App Intents/ArchivedItemQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/ArchivedItemQuery.swift -------------------------------------------------------------------------------- /Gladys/App Intents/CopyItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/CopyItem.swift -------------------------------------------------------------------------------- /Gladys/App Intents/CreateItemFromFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/CreateItemFromFile.swift -------------------------------------------------------------------------------- /Gladys/App Intents/CreateItemFromText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/CreateItemFromText.swift -------------------------------------------------------------------------------- /Gladys/App Intents/CreateItemFromUrl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/CreateItemFromUrl.swift -------------------------------------------------------------------------------- /Gladys/App Intents/DeleteItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/DeleteItem.swift -------------------------------------------------------------------------------- /Gladys/App Intents/GladysAppIntents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/GladysAppIntents.swift -------------------------------------------------------------------------------- /Gladys/App Intents/GladysAppIntentsError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/GladysAppIntentsError.swift -------------------------------------------------------------------------------- /Gladys/App Intents/OpenGladys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/OpenGladys.swift -------------------------------------------------------------------------------- /Gladys/App Intents/PasteIntoGladys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/App Intents/PasteIntoGladys.swift -------------------------------------------------------------------------------- /Gladys/Gladys.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Gladys.entitlements -------------------------------------------------------------------------------- /Gladys/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Info.plist -------------------------------------------------------------------------------- /Gladys/Logic/ArchivedItem+Copy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Logic/ArchivedItem+Copy.swift -------------------------------------------------------------------------------- /Gladys/Logic/ArchivedItem+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Logic/ArchivedItem+iOS.swift -------------------------------------------------------------------------------- /Gladys/Logic/BackgroundRefreshTasks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Logic/BackgroundRefreshTasks.swift -------------------------------------------------------------------------------- /Gladys/Logic/CloudManager+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Logic/CloudManager+iOS.swift -------------------------------------------------------------------------------- /Gladys/Logic/Component+Copy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Logic/Component+Copy.swift -------------------------------------------------------------------------------- /Gladys/Logic/Component+Intents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Logic/Component+Intents.swift -------------------------------------------------------------------------------- /Gladys/Logic/Component+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Logic/Component+iOS.swift -------------------------------------------------------------------------------- /Gladys/Logic/Model+AppIntents+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Logic/Model+AppIntents+iOS.swift -------------------------------------------------------------------------------- /Gladys/Logic/Model+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Logic/Model+iOS.swift -------------------------------------------------------------------------------- /Gladys/Logic/WatchDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/Logic/WatchDelegate.swift -------------------------------------------------------------------------------- /Gladys/UI/Detail/DetailCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Detail/DetailCell.swift -------------------------------------------------------------------------------- /Gladys/UI/Detail/DetailController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Detail/DetailController.swift -------------------------------------------------------------------------------- /Gladys/UI/Detail/HeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Detail/HeaderCell.swift -------------------------------------------------------------------------------- /Gladys/UI/Detail/LabelCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Detail/LabelCell.swift -------------------------------------------------------------------------------- /Gladys/UI/Detail/NoteCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Detail/NoteCell.swift -------------------------------------------------------------------------------- /Gladys/UI/Detail/PlistEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Detail/PlistEditor.swift -------------------------------------------------------------------------------- /Gladys/UI/Detail/TextEditController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Detail/TextEditController.swift -------------------------------------------------------------------------------- /Gladys/UI/Hex Editor/AsciiCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Hex Editor/AsciiCell.swift -------------------------------------------------------------------------------- /Gladys/UI/Hex Editor/ByteCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Hex Editor/ByteCell.swift -------------------------------------------------------------------------------- /Gladys/UI/Hex Editor/DataInspector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Hex Editor/DataInspector.swift -------------------------------------------------------------------------------- /Gladys/UI/Hex Editor/GridLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Hex Editor/GridLayout.swift -------------------------------------------------------------------------------- /Gladys/UI/Hex Editor/HexEdit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Hex Editor/HexEdit.swift -------------------------------------------------------------------------------- /Gladys/UI/Hex Editor/PanDirectionGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Hex Editor/PanDirectionGestureRecognizer.swift -------------------------------------------------------------------------------- /Gladys/UI/Labels/AddLabelController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Labels/AddLabelController.swift -------------------------------------------------------------------------------- /Gladys/UI/Labels/LabelEditorCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Labels/LabelEditorCell.swift -------------------------------------------------------------------------------- /Gladys/UI/Labels/LabelEditorController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Labels/LabelEditorController.swift -------------------------------------------------------------------------------- /Gladys/UI/Labels/LabelListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Labels/LabelListCell.swift -------------------------------------------------------------------------------- /Gladys/UI/Labels/LabelSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Labels/LabelSelector.swift -------------------------------------------------------------------------------- /Gladys/UI/Labels/LabelToggleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Labels/LabelToggleCell.swift -------------------------------------------------------------------------------- /Gladys/UI/Labels/NotesEditorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Labels/NotesEditorViewController.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/AppDelegate.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/ArchivedItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/ArchivedItemCell.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/CallbackSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/CallbackSupport.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/GladysPopoverBackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/GladysPopoverBackgroundView.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/GladysShortcuts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/GladysShortcuts.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/GladysViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/GladysViewController.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/LabelSectionTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/LabelSectionTitle.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/Reachability.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/RoundedBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/RoundedBackground.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/SceneDelegate.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/Singleton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/Singleton.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/UIUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/UIUtilities.swift -------------------------------------------------------------------------------- /Gladys/UI/Main/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Main/ViewController.swift -------------------------------------------------------------------------------- /Gladys/UI/Prefs/AboutController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Prefs/AboutController.swift -------------------------------------------------------------------------------- /Gladys/UI/Prefs/CreditsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Prefs/CreditsViewController.swift -------------------------------------------------------------------------------- /Gladys/UI/Prefs/HelpController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Prefs/HelpController.swift -------------------------------------------------------------------------------- /Gladys/UI/Prefs/ICloudController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Prefs/ICloudController.swift -------------------------------------------------------------------------------- /Gladys/UI/Prefs/IOSSettingsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Prefs/IOSSettingsController.swift -------------------------------------------------------------------------------- /Gladys/UI/Prefs/OptionsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Prefs/OptionsController.swift -------------------------------------------------------------------------------- /Gladys/UI/Prefs/PreferencesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Prefs/PreferencesController.swift -------------------------------------------------------------------------------- /Gladys/UI/Prefs/SwitchHolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Prefs/SwitchHolder.swift -------------------------------------------------------------------------------- /Gladys/UI/Prefs/VisionSettingsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/UI/Prefs/VisionSettingsController.swift -------------------------------------------------------------------------------- /Gladys/gladysIcon320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/gladysIcon320.png -------------------------------------------------------------------------------- /Gladys/gladysIcon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/Gladys/gladysIcon64.png -------------------------------------------------------------------------------- /GladysAction/ActionRequestViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysAction/ActionRequestViewController.swift -------------------------------------------------------------------------------- /GladysAction/GladysAction.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysAction/GladysAction.entitlements -------------------------------------------------------------------------------- /GladysAction/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysAction/Info.plist -------------------------------------------------------------------------------- /GladysAction/LabelEditorCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysAction/LabelEditorCell.swift -------------------------------------------------------------------------------- /GladysAction/LabelEditorController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysAction/LabelEditorController.swift -------------------------------------------------------------------------------- /GladysAction/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysAction/MainInterface.storyboard -------------------------------------------------------------------------------- /GladysAppKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysAppKit/.gitignore -------------------------------------------------------------------------------- /GladysAppKit/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysAppKit/Package.resolved -------------------------------------------------------------------------------- /GladysAppKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysAppKit/Package.swift -------------------------------------------------------------------------------- /GladysAppKit/Sources/GladysAppKit/Alerts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysAppKit/Sources/GladysAppKit/Alerts.swift -------------------------------------------------------------------------------- /GladysAppKit/Sources/GladysAppKit/NSViewController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysAppKit/Sources/GladysAppKit/NSViewController+Extensions.swift -------------------------------------------------------------------------------- /GladysCommon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/.gitignore -------------------------------------------------------------------------------- /GladysCommon/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Package.resolved -------------------------------------------------------------------------------- /GladysCommon/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Package.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/ArchivedItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/ArchivedItem.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/CKDatabaseScope+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/CKDatabaseScope+Extensions.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Cache.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Caches.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Caches.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/CloudManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/CloudManager.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/CollectionHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/CollectionHelpers.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Color+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Color+Extensions.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Component.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Component.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Data+Compression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Data+Compression.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Data+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Data+Extensions.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/DataImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/DataImporter.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/DropStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/DropStore.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/FileManager+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/FileManager+Extensions.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Formatters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Formatters.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/GladysCommon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/GladysCommon.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/GladysError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/GladysError.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Greetings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Greetings.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/HighlightRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/HighlightRequest.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Image+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Image+Extensions.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Images.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Images.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Indexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Indexer.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/ItemColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/ItemColor.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/LiteModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/LiteModel.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Logging.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/NSAttributedString+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/NSAttributedString+Extensions.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Notifications.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/PersistedOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/PersistedOptions.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/PresentationInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/PresentationInfo.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/RepresentedClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/RepresentedClass.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/SafeArchiving.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/SafeArchiving.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/SortOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/SortOption.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/String+Extensions.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/Types.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/URL+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/URL+Extensions.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/URLResponse+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/URLResponse+Extensions.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/UserDefault.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/UserDefault.swift -------------------------------------------------------------------------------- /GladysCommon/Sources/GladysCommon/WebArchiver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysCommon/Sources/GladysCommon/WebArchiver.swift -------------------------------------------------------------------------------- /GladysIndex/GladysIndex.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysIndex/GladysIndex.entitlements -------------------------------------------------------------------------------- /GladysIndex/IndexRequestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysIndex/IndexRequestHandler.swift -------------------------------------------------------------------------------- /GladysIndex/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysIndex/Info.plist -------------------------------------------------------------------------------- /GladysKeys/Gladys Keys.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysKeys/Gladys Keys.entitlements -------------------------------------------------------------------------------- /GladysKeys/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysKeys/Info.plist -------------------------------------------------------------------------------- /GladysKeys/KeyboardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysKeys/KeyboardViewController.swift -------------------------------------------------------------------------------- /GladysKeys/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysKeys/MainInterface.storyboard -------------------------------------------------------------------------------- /GladysMessage/ArchivedItem+Messages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysMessage/ArchivedItem+Messages.swift -------------------------------------------------------------------------------- /GladysMessage/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysMessage/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /GladysMessage/Component+Messages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysMessage/Component+Messages.swift -------------------------------------------------------------------------------- /GladysMessage/GladysMessage.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysMessage/GladysMessage.entitlements -------------------------------------------------------------------------------- /GladysMessage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysMessage/Info.plist -------------------------------------------------------------------------------- /GladysMessage/MessagesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysMessage/MessagesViewController.swift -------------------------------------------------------------------------------- /GladysUI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/.gitignore -------------------------------------------------------------------------------- /GladysUI/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Package.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/ArchivedItem+Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/ArchivedItem+Common.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/ArchivedItem+Presentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/ArchivedItem+Presentation.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/ArchivedItemWrapper+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/ArchivedItemWrapper+Extensions.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/ArchivedItemWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/ArchivedItemWrapper.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/CallbackSupport+Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/CallbackSupport+Common.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/CloudManager+Mainapps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/CloudManager+Mainapps.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/Component+Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/Component+Common.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/Coordination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/Coordination.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/Filter.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/ImportExport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/ImportExport.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/ItemView-Square.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/ItemView-Square.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/ItemView-Wide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/ItemView-Wide.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/ItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/ItemView.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/LocalAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/LocalAuth.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/Model.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/PreviewItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/PreviewItem.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/PullState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/PullState.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/PushState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/PushState.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/Sha1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/Sha1.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/TipJar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/TipJar.swift -------------------------------------------------------------------------------- /GladysUI/Sources/GladysUI/TokenField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUI/Sources/GladysUI/TokenField.swift -------------------------------------------------------------------------------- /GladysUIKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUIKit/.gitignore -------------------------------------------------------------------------------- /GladysUIKit/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUIKit/Package.resolved -------------------------------------------------------------------------------- /GladysUIKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUIKit/Package.swift -------------------------------------------------------------------------------- /GladysUIKit/Sources/GladysUIKit/Alerts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUIKit/Sources/GladysUIKit/Alerts.swift -------------------------------------------------------------------------------- /GladysUIKit/Sources/GladysUIKit/CommonItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUIKit/Sources/GladysUIKit/CommonItemCell.swift -------------------------------------------------------------------------------- /GladysUIKit/Sources/GladysUIKit/SortOption+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUIKit/Sources/GladysUIKit/SortOption+Extensions.swift -------------------------------------------------------------------------------- /GladysUIKit/Sources/GladysUIKit/UIScene+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUIKit/Sources/GladysUIKit/UIScene+Extensions.swift -------------------------------------------------------------------------------- /GladysUIKit/Sources/GladysUIKit/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUIKit/Sources/GladysUIKit/UIView+Extensions.swift -------------------------------------------------------------------------------- /GladysUIKit/Sources/GladysUIKit/UIViewController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysUIKit/Sources/GladysUIKit/UIViewController+Extensions.swift -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/watch108x108@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/watch108x108@2x.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/watch24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/watch24.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/watch275.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/watch275.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/watch38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/watch38.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/watch40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/watch40.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/watch42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/watch42.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/watch50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/watch50x50@2x.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/AppIcon.appiconset/watch88x88@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/AppIcon.appiconset/watch88x88@2x.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Circular.imageset/gladysWatch32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Circular.imageset/gladysWatch32x32.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Circular.imageset/gladysWatch36x36-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Circular.imageset/gladysWatch36x36-1.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Circular.imageset/gladysWatch36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Circular.imageset/gladysWatch36x36.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Circular.imageset/gladysWatch40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Circular.imageset/gladysWatch40x40.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/gladysWatch40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/gladysWatch40.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/gladysWatch44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/gladysWatch44.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Extra Large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Extra Large.imageset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Modular.imageset/gladysWatch52x52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Modular.imageset/gladysWatch52x52.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Modular.imageset/gladysWatch58x58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Modular.imageset/gladysWatch58x58-1.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Modular.imageset/gladysWatch58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Modular.imageset/gladysWatch58x58.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Modular.imageset/gladysWatch64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Modular.imageset/gladysWatch64x64.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/gladysWatch40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/gladysWatch40x40.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/gladysWatch44x44-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/gladysWatch44x44-1.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/gladysWatch44x44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/gladysWatch44x44.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/gladysWatch50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/gladysWatch50x50.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/colorTint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/colorTint.colorset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/gladysCorner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/gladysCorner.imageset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/gladysCorner.imageset/gladysWatch40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/gladysCorner.imageset/gladysWatch40.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/gladysCorner.imageset/gladysWatch44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/gladysCorner.imageset/gladysWatch44.png -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/gladysWatch128.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/gladysWatch128.imageset/Contents.json -------------------------------------------------------------------------------- /GladysWatch/Assets.xcassets/gladysWatch128.imageset/gladysWatch128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Assets.xcassets/gladysWatch128.imageset/gladysWatch128.png -------------------------------------------------------------------------------- /GladysWatch/ComplicationDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/ComplicationDataSource.swift -------------------------------------------------------------------------------- /GladysWatch/Drop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Drop.swift -------------------------------------------------------------------------------- /GladysWatch/GladysWatch.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/GladysWatch.entitlements -------------------------------------------------------------------------------- /GladysWatch/GladysWatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/GladysWatch.swift -------------------------------------------------------------------------------- /GladysWatch/GladysWatchModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/GladysWatchModel.swift -------------------------------------------------------------------------------- /GladysWatch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/Info.plist -------------------------------------------------------------------------------- /GladysWatch/WatchMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWatch/WatchMessage.swift -------------------------------------------------------------------------------- /GladysWidgets/ConfigIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/ConfigIntent.swift -------------------------------------------------------------------------------- /GladysWidgets/CurrentState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/CurrentState.swift -------------------------------------------------------------------------------- /GladysWidgets/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/Extensions.swift -------------------------------------------------------------------------------- /GladysWidgets/GladysWidgets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/GladysWidgets.swift -------------------------------------------------------------------------------- /GladysWidgets/GladysWidgetsBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/GladysWidgetsBundle.swift -------------------------------------------------------------------------------- /GladysWidgets/GladysWidgetsEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/GladysWidgetsEntryView.swift -------------------------------------------------------------------------------- /GladysWidgets/GladysWidgetsExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/GladysWidgetsExtension.entitlements -------------------------------------------------------------------------------- /GladysWidgets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/Info.plist -------------------------------------------------------------------------------- /GladysWidgets/ItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/ItemCell.swift -------------------------------------------------------------------------------- /GladysWidgets/LabelOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/LabelOption.swift -------------------------------------------------------------------------------- /GladysWidgets/LabelQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/LabelQuery.swift -------------------------------------------------------------------------------- /GladysWidgets/MacGladysWidgetsExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/MacGladysWidgetsExtension.entitlements -------------------------------------------------------------------------------- /GladysWidgets/Provider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/GladysWidgets/Provider.swift -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MacGladys/Boot/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Boot/Info.plist -------------------------------------------------------------------------------- /MacGladys/Boot/MacGladys.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Boot/MacGladys.entitlements -------------------------------------------------------------------------------- /MacGladys/Boot/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Boot/main.swift -------------------------------------------------------------------------------- /MacGladys/Logic/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Logic/AppDelegate.swift -------------------------------------------------------------------------------- /MacGladys/Logic/Application.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Logic/Application.swift -------------------------------------------------------------------------------- /MacGladys/Logic/ArchivedItem+Mac.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Logic/ArchivedItem+Mac.swift -------------------------------------------------------------------------------- /MacGladys/Logic/CallbackSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Logic/CallbackSupport.swift -------------------------------------------------------------------------------- /MacGladys/Logic/CloudManager+Mac.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Logic/CloudManager+Mac.swift -------------------------------------------------------------------------------- /MacGladys/Logic/Component+Mac.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Logic/Component+Mac.swift -------------------------------------------------------------------------------- /MacGladys/Logic/FileMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Logic/FileMonitor.swift -------------------------------------------------------------------------------- /MacGladys/Logic/GladysFilePromiseProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Logic/GladysFilePromiseProvider.swift -------------------------------------------------------------------------------- /MacGladys/Logic/Model+AppIntents+Mac.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Logic/Model+AppIntents+Mac.swift -------------------------------------------------------------------------------- /MacGladys/Logic/Model+Mac.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Logic/Model+Mac.swift -------------------------------------------------------------------------------- /MacGladys/Logic/PersistedOptions+Mac.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Logic/PersistedOptions+Mac.swift -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/AppIcon-Mac.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/AppIcon-Mac.appiconset/Contents.json -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-1024.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-128.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-16.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-256 1.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-256.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-32 1.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-32.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-512 1.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-512.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/AppIcon-Mac.appiconset/gladys-mac-64.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/iconUserAdd.imageset/1231-user-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/iconUserAdd.imageset/1231-user-add.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/iconUserAdd.imageset/1231-user-add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/iconUserAdd.imageset/1231-user-add@2x.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/iconUserAdd.imageset/1231-user-add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/iconUserAdd.imageset/1231-user-add@3x.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/iconUserAdd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/iconUserAdd.imageset/Contents.json -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/iconUserChecked.imageset/1233-user-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/iconUserChecked.imageset/1233-user-checked-selected.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/iconUserChecked.imageset/1233-user-checked-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/iconUserChecked.imageset/1233-user-checked-selected@2x.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/iconUserChecked.imageset/1233-user-checked-selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/iconUserChecked.imageset/1233-user-checked-selected@3x.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/iconUserChecked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/iconUserChecked.imageset/Contents.json -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/iconUserCheckedSmall.imageset/1233-user-checked-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/iconUserCheckedSmall.imageset/1233-user-checked-selected.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/iconUserCheckedSmall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/iconUserCheckedSmall.imageset/Contents.json -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/locked.imageset/744-locked-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/locked.imageset/744-locked-toolbar.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/locked.imageset/744-locked-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/locked.imageset/744-locked-toolbar@2x.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/locked.imageset/744-locked-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/locked.imageset/744-locked-toolbar@3x.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/locked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/locked.imageset/Contents.json -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/menubarIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/menubarIcon.imageset/Contents.json -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/menubarIcon.imageset/menubar@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/menubarIcon.imageset/menubar@1x.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/menubarIcon.imageset/menubar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/menubarIcon.imageset/menubar@2x.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/menubarIcon.imageset/menubar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/menubarIcon.imageset/menubar@3x.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/statuslabel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/statuslabel.imageset/Contents.json -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/statuslabel.imageset/statuslabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/statuslabel.imageset/statuslabel.png -------------------------------------------------------------------------------- /MacGladys/Media.xcassets/statuslabel.imageset/statuslabel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/Media.xcassets/statuslabel.imageset/statuslabel@2x.png -------------------------------------------------------------------------------- /MacGladys/UI/AboutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/AboutViewController.swift -------------------------------------------------------------------------------- /MacGladys/UI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MacGladys/UI/ComponentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/ComponentCell.swift -------------------------------------------------------------------------------- /MacGladys/UI/ComponentCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/ComponentCell.xib -------------------------------------------------------------------------------- /MacGladys/UI/DetailController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/DetailController.swift -------------------------------------------------------------------------------- /MacGladys/UI/DropCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/DropCell.swift -------------------------------------------------------------------------------- /MacGladys/UI/LabelEditorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/LabelEditorViewController.swift -------------------------------------------------------------------------------- /MacGladys/UI/LabelSelectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/LabelSelectionViewController.swift -------------------------------------------------------------------------------- /MacGladys/UI/MainCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/MainCollectionView.swift -------------------------------------------------------------------------------- /MacGladys/UI/NSPasteboard+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/NSPasteboard+Extensions.swift -------------------------------------------------------------------------------- /MacGladys/UI/NewLabelController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/NewLabelController.swift -------------------------------------------------------------------------------- /MacGladys/UI/NotesEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/NotesEditor.swift -------------------------------------------------------------------------------- /MacGladys/UI/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/Preferences.swift -------------------------------------------------------------------------------- /MacGladys/UI/ProgressViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/ProgressViewController.swift -------------------------------------------------------------------------------- /MacGladys/UI/TouchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/TouchBar.swift -------------------------------------------------------------------------------- /MacGladys/UI/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/ViewController.swift -------------------------------------------------------------------------------- /MacGladys/UI/WindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/UI/WindowController.swift -------------------------------------------------------------------------------- /MacGladys/gladysIconLarge.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladys/gladysIconLarge.icns -------------------------------------------------------------------------------- /MacGladysHelper/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysHelper/AppDelegate.swift -------------------------------------------------------------------------------- /MacGladysHelper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysHelper/Info.plist -------------------------------------------------------------------------------- /MacGladysHelper/LauncherCommon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysHelper/LauncherCommon.swift -------------------------------------------------------------------------------- /MacGladysHelper/MacGladysHelper.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysHelper/MacGladysHelper.entitlements -------------------------------------------------------------------------------- /MacGladysHelper/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysHelper/main.swift -------------------------------------------------------------------------------- /MacGladysIndex/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysIndex/Info.plist -------------------------------------------------------------------------------- /MacGladysIndex/MacGladysIndex.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysIndex/MacGladysIndex.entitlements -------------------------------------------------------------------------------- /MacGladysShare/Base.lproj/ShareViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysShare/Base.lproj/ShareViewController.xib -------------------------------------------------------------------------------- /MacGladysShare/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysShare/Info.plist -------------------------------------------------------------------------------- /MacGladysShare/MacGladysShare.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysShare/MacGladysShare.entitlements -------------------------------------------------------------------------------- /MacGladysShare/ShareCommon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysShare/ShareCommon.swift -------------------------------------------------------------------------------- /MacGladysShare/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysShare/ShareViewController.swift -------------------------------------------------------------------------------- /MacGladysShare/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/MacGladysShare/icon.icns -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/README.md -------------------------------------------------------------------------------- /StoreKit/Gladys.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/StoreKit/Gladys.storekit -------------------------------------------------------------------------------- /StoreKit/MacGladys.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/StoreKit/MacGladys.storekit -------------------------------------------------------------------------------- /ci_scripts/ci_pre_xcodebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/ci_scripts/ci_pre_xcodebuild.sh -------------------------------------------------------------------------------- /ci_scripts/parent: -------------------------------------------------------------------------------- 1 | .. -------------------------------------------------------------------------------- /exportMac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/exportMac.plist -------------------------------------------------------------------------------- /exportiOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/exportiOS.plist -------------------------------------------------------------------------------- /gallery.ckcomplication/19294319-88B4-49D2-B952-C2CC411CFD28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/19294319-88B4-49D2-B952-C2CC411CFD28.json -------------------------------------------------------------------------------- /gallery.ckcomplication/2463FCFB-27A3-46CC-83CA-C28B68AC5E02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/2463FCFB-27A3-46CC-83CA-C28B68AC5E02.json -------------------------------------------------------------------------------- /gallery.ckcomplication/58F68BB5-46DD-4790-8CCB-CAAD03666A34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/58F68BB5-46DD-4790-8CCB-CAAD03666A34.png -------------------------------------------------------------------------------- /gallery.ckcomplication/5E364FDF-4B06-4F3B-BF45-6BA1E978E836.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/5E364FDF-4B06-4F3B-BF45-6BA1E978E836.png -------------------------------------------------------------------------------- /gallery.ckcomplication/63D304E5-53FD-457F-9A09-F2602DA45A8C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/63D304E5-53FD-457F-9A09-F2602DA45A8C.json -------------------------------------------------------------------------------- /gallery.ckcomplication/8E1E7350-17C7-468D-B710-CAA72DB7A934.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/8E1E7350-17C7-468D-B710-CAA72DB7A934.png -------------------------------------------------------------------------------- /gallery.ckcomplication/A196E952-F63B-48E6-ADBE-D694E29D7833.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/A196E952-F63B-48E6-ADBE-D694E29D7833.png -------------------------------------------------------------------------------- /gallery.ckcomplication/C7E6FA13-6D13-4465-ABC2-0BAD02D0B456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/C7E6FA13-6D13-4465-ABC2-0BAD02D0B456.png -------------------------------------------------------------------------------- /gallery.ckcomplication/D98BB30B-825C-4FC4-9FCC-A2405C4EBC84.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/D98BB30B-825C-4FC4-9FCC-A2405C4EBC84.json -------------------------------------------------------------------------------- /gallery.ckcomplication/EA6689B7-A3D4-423E-9755-349722202516.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/EA6689B7-A3D4-423E-9755-349722202516.png -------------------------------------------------------------------------------- /gallery.ckcomplication/ECD10347-94E1-47D6-AE25-07900E9A1577.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/ECD10347-94E1-47D6-AE25-07900E9A1577.json -------------------------------------------------------------------------------- /gallery.ckcomplication/F79AC331-27DF-4E06-BD48-6F14D6C9E16E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/F79AC331-27DF-4E06-BD48-6F14D6C9E16E.json -------------------------------------------------------------------------------- /gallery.ckcomplication/complicationManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptsochantaris/Gladys/HEAD/gallery.ckcomplication/complicationManifest.json --------------------------------------------------------------------------------