├── .swift-version ├── GSTouchesShowingWindow-Swift.podspec ├── GSTouchesShowingWindow-Swift.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── lukaspetr.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── lukaspetr.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── GSTouchesShowingWindow-Swift.xcscheme │ ├── Today extension.xcscheme │ └── xcschememanagement.plist ├── GSTouchesShowingWindow-Swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── TouchImageBlue.imageset │ │ ├── Contents.json │ │ ├── GSTouchImageBlue.png │ │ ├── GSTouchImageBlue@2x.png │ │ └── GSTouchImageBlue@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Classes │ ├── GSTouchesShowingController.swift │ ├── GSTouchesShowingGestureRecognizer.swift │ └── GSTouchesShowingWindow.swift ├── Info.plist └── ViewController.swift ├── LICENSE.md ├── README.md ├── ReadmeFiles ├── Sample-touches-screenshot.png ├── Target-membership-instructions.png └── TouchesPreviewTimelines.gif └── Today extension ├── Base.lproj └── MainInterface.storyboard ├── Info.plist └── TodayViewController.swift /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift.podspec -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift.xcodeproj/project.xcworkspace/xcuserdata/lukaspetr.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift.xcodeproj/project.xcworkspace/xcuserdata/lukaspetr.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift.xcodeproj/xcuserdata/lukaspetr.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift.xcodeproj/xcuserdata/lukaspetr.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift.xcodeproj/xcuserdata/lukaspetr.xcuserdatad/xcschemes/GSTouchesShowingWindow-Swift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift.xcodeproj/xcuserdata/lukaspetr.xcuserdatad/xcschemes/GSTouchesShowingWindow-Swift.xcscheme -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift.xcodeproj/xcuserdata/lukaspetr.xcuserdatad/xcschemes/Today extension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift.xcodeproj/xcuserdata/lukaspetr.xcuserdatad/xcschemes/Today extension.xcscheme -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift.xcodeproj/xcuserdata/lukaspetr.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift.xcodeproj/xcuserdata/lukaspetr.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/AppDelegate.swift -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Assets.xcassets/TouchImageBlue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Assets.xcassets/TouchImageBlue.imageset/Contents.json -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Assets.xcassets/TouchImageBlue.imageset/GSTouchImageBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Assets.xcassets/TouchImageBlue.imageset/GSTouchImageBlue.png -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Assets.xcassets/TouchImageBlue.imageset/GSTouchImageBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Assets.xcassets/TouchImageBlue.imageset/GSTouchImageBlue@2x.png -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Assets.xcassets/TouchImageBlue.imageset/GSTouchImageBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Assets.xcassets/TouchImageBlue.imageset/GSTouchImageBlue@3x.png -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Classes/GSTouchesShowingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Classes/GSTouchesShowingController.swift -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Classes/GSTouchesShowingGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Classes/GSTouchesShowingGestureRecognizer.swift -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Classes/GSTouchesShowingWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Classes/GSTouchesShowingWindow.swift -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/Info.plist -------------------------------------------------------------------------------- /GSTouchesShowingWindow-Swift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/GSTouchesShowingWindow-Swift/ViewController.swift -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/README.md -------------------------------------------------------------------------------- /ReadmeFiles/Sample-touches-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/ReadmeFiles/Sample-touches-screenshot.png -------------------------------------------------------------------------------- /ReadmeFiles/Target-membership-instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/ReadmeFiles/Target-membership-instructions.png -------------------------------------------------------------------------------- /ReadmeFiles/TouchesPreviewTimelines.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/ReadmeFiles/TouchesPreviewTimelines.gif -------------------------------------------------------------------------------- /Today extension/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/Today extension/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Today extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/Today extension/Info.plist -------------------------------------------------------------------------------- /Today extension/TodayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasCZ/GSTouchesShowingWindow-Swift/HEAD/Today extension/TodayViewController.swift --------------------------------------------------------------------------------