├── Assets ├── SuperCorners-1.png ├── SuperCorners-10.png ├── SuperCorners-11.png ├── SuperCorners-12.png ├── SuperCorners-2.png ├── SuperCorners-3.png ├── SuperCorners-4.png ├── SuperCorners-5.png ├── SuperCorners-6.png ├── SuperCorners-7.png ├── SuperCorners-8.png └── SuperCorners-9.png ├── GettingStarted.md ├── License ├── README.md ├── SuperCorners.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── daniyalmaster.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── SuperCorners.xcscheme └── xcuserdata │ └── daniyalmaster.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── SuperCorners ├── Actions │ ├── ActionsLibrary.swift │ ├── CornerActions.swift │ ├── CornerHotkey.swift │ ├── CornerMousePosition.swift │ ├── CornerPosition.swift │ └── SelectedCornerState.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_1024x1024.png │ │ ├── icon_128x128.png │ │ ├── icon_16x16.png │ │ ├── icon_256x256 1.png │ │ ├── icon_256x256.png │ │ ├── icon_32x32 1.png │ │ ├── icon_32x32.png │ │ ├── icon_512x512 1.png │ │ ├── icon_512x512.png │ │ └── icon_64x64.png │ ├── ClassicWallpaperDark.imageset │ │ ├── ClassicWallpaperDark.png │ │ └── Contents.json │ ├── ClassicWallpaperLight.imageset │ │ ├── ClassicWallpaperLight.jpg │ │ └── Contents.json │ ├── Contents.json │ └── TahoeIcon.imageset │ │ ├── Contents.json │ │ └── SuperCorners-Tahoe.png ├── ContentView.swift ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SuperCorners-Tahoe.icon │ ├── Assets │ │ └── sC.svg │ └── icon.json ├── SuperCorners.entitlements ├── SuperCornersApp.swift ├── Utils │ ├── ActionFavorites.swift │ ├── ShortcutNames.swift │ └── ToastHelper.swift └── Views │ ├── Action Windows │ ├── ColorPickerView.swift │ └── OCRView.swift │ ├── Floating Windows │ ├── FloatingCalculator.swift │ ├── FloatingCaseConverter.swift │ ├── FloatingColorConverter.swift │ ├── FloatingCounter.swift │ ├── FloatingNote.swift │ └── FloatingPanel.swift │ ├── Main │ ├── ActionBrowser.swift │ ├── CornerView.swift │ ├── ToastNotification.swift │ └── ZoneView.swift │ ├── Modals │ ├── ActionPicker.swift │ ├── AppLinksView.swift │ └── IgnoredApplicationsView.swift │ └── Settings │ ├── ActionSettings.swift │ ├── ActivationSettings.swift │ ├── BehaviorSettings.swift │ ├── GeneralSettings.swift │ └── SettingsView.swift ├── SuperCornersTests └── SuperCornersTests.swift ├── SuperCornersUITests ├── SuperCornersUITests.swift └── SuperCornersUITestsLaunchTests.swift └── appcast.xml /Assets/SuperCorners-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-1.png -------------------------------------------------------------------------------- /Assets/SuperCorners-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-10.png -------------------------------------------------------------------------------- /Assets/SuperCorners-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-11.png -------------------------------------------------------------------------------- /Assets/SuperCorners-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-12.png -------------------------------------------------------------------------------- /Assets/SuperCorners-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-2.png -------------------------------------------------------------------------------- /Assets/SuperCorners-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-3.png -------------------------------------------------------------------------------- /Assets/SuperCorners-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-4.png -------------------------------------------------------------------------------- /Assets/SuperCorners-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-5.png -------------------------------------------------------------------------------- /Assets/SuperCorners-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-6.png -------------------------------------------------------------------------------- /Assets/SuperCorners-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-7.png -------------------------------------------------------------------------------- /Assets/SuperCorners-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-8.png -------------------------------------------------------------------------------- /Assets/SuperCorners-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/Assets/SuperCorners-9.png -------------------------------------------------------------------------------- /GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/GettingStarted.md -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/README.md -------------------------------------------------------------------------------- /SuperCorners.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SuperCorners.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SuperCorners.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /SuperCorners.xcodeproj/project.xcworkspace/xcuserdata/daniyalmaster.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners.xcodeproj/project.xcworkspace/xcuserdata/daniyalmaster.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SuperCorners.xcodeproj/xcshareddata/xcschemes/SuperCorners.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners.xcodeproj/xcshareddata/xcschemes/SuperCorners.xcscheme -------------------------------------------------------------------------------- /SuperCorners.xcodeproj/xcuserdata/daniyalmaster.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners.xcodeproj/xcuserdata/daniyalmaster.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SuperCorners.xcodeproj/xcuserdata/daniyalmaster.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners.xcodeproj/xcuserdata/daniyalmaster.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SuperCorners/Actions/ActionsLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Actions/ActionsLibrary.swift -------------------------------------------------------------------------------- /SuperCorners/Actions/CornerActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Actions/CornerActions.swift -------------------------------------------------------------------------------- /SuperCorners/Actions/CornerHotkey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Actions/CornerHotkey.swift -------------------------------------------------------------------------------- /SuperCorners/Actions/CornerMousePosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Actions/CornerMousePosition.swift -------------------------------------------------------------------------------- /SuperCorners/Actions/CornerPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Actions/CornerPosition.swift -------------------------------------------------------------------------------- /SuperCorners/Actions/SelectedCornerState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Actions/SelectedCornerState.swift -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_1024x1024.png -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_256x256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_256x256 1.png -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_32x32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_32x32 1.png -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_512x512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_512x512 1.png -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/AppIcon.appiconset/icon_64x64.png -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/ClassicWallpaperDark.imageset/ClassicWallpaperDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/ClassicWallpaperDark.imageset/ClassicWallpaperDark.png -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/ClassicWallpaperDark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/ClassicWallpaperDark.imageset/Contents.json -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/ClassicWallpaperLight.imageset/ClassicWallpaperLight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/ClassicWallpaperLight.imageset/ClassicWallpaperLight.jpg -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/ClassicWallpaperLight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/ClassicWallpaperLight.imageset/Contents.json -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/TahoeIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/TahoeIcon.imageset/Contents.json -------------------------------------------------------------------------------- /SuperCorners/Assets.xcassets/TahoeIcon.imageset/SuperCorners-Tahoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Assets.xcassets/TahoeIcon.imageset/SuperCorners-Tahoe.png -------------------------------------------------------------------------------- /SuperCorners/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/ContentView.swift -------------------------------------------------------------------------------- /SuperCorners/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Info.plist -------------------------------------------------------------------------------- /SuperCorners/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SuperCorners/SuperCorners-Tahoe.icon/Assets/sC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/SuperCorners-Tahoe.icon/Assets/sC.svg -------------------------------------------------------------------------------- /SuperCorners/SuperCorners-Tahoe.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/SuperCorners-Tahoe.icon/icon.json -------------------------------------------------------------------------------- /SuperCorners/SuperCorners.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/SuperCorners.entitlements -------------------------------------------------------------------------------- /SuperCorners/SuperCornersApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/SuperCornersApp.swift -------------------------------------------------------------------------------- /SuperCorners/Utils/ActionFavorites.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Utils/ActionFavorites.swift -------------------------------------------------------------------------------- /SuperCorners/Utils/ShortcutNames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Utils/ShortcutNames.swift -------------------------------------------------------------------------------- /SuperCorners/Utils/ToastHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Utils/ToastHelper.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Action Windows/ColorPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Action Windows/ColorPickerView.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Action Windows/OCRView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Action Windows/OCRView.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Floating Windows/FloatingCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Floating Windows/FloatingCalculator.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Floating Windows/FloatingCaseConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Floating Windows/FloatingCaseConverter.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Floating Windows/FloatingColorConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Floating Windows/FloatingColorConverter.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Floating Windows/FloatingCounter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Floating Windows/FloatingCounter.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Floating Windows/FloatingNote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Floating Windows/FloatingNote.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Floating Windows/FloatingPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Floating Windows/FloatingPanel.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Main/ActionBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Main/ActionBrowser.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Main/CornerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Main/CornerView.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Main/ToastNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Main/ToastNotification.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Main/ZoneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Main/ZoneView.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Modals/ActionPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Modals/ActionPicker.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Modals/AppLinksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Modals/AppLinksView.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Modals/IgnoredApplicationsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Modals/IgnoredApplicationsView.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Settings/ActionSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Settings/ActionSettings.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Settings/ActivationSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Settings/ActivationSettings.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Settings/BehaviorSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Settings/BehaviorSettings.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Settings/GeneralSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Settings/GeneralSettings.swift -------------------------------------------------------------------------------- /SuperCorners/Views/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCorners/Views/Settings/SettingsView.swift -------------------------------------------------------------------------------- /SuperCornersTests/SuperCornersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCornersTests/SuperCornersTests.swift -------------------------------------------------------------------------------- /SuperCornersUITests/SuperCornersUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCornersUITests/SuperCornersUITests.swift -------------------------------------------------------------------------------- /SuperCornersUITests/SuperCornersUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/SuperCornersUITests/SuperCornersUITestsLaunchTests.swift -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniyalmaster693/SuperCorners/HEAD/appcast.xml --------------------------------------------------------------------------------