├── README.md ├── Thermometer.ipa ├── Thermometer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── ryanmcleod.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── ryanmcleod.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Thermometer ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Thermometer-1024.png │ │ ├── Thermometer-20.png │ │ ├── Thermometer-20@2x.png │ │ ├── Thermometer-20@3x.png │ │ ├── Thermometer-29.png │ │ ├── Thermometer-29@2x.png │ │ ├── Thermometer-29@3x.png │ │ ├── Thermometer-40.png │ │ ├── Thermometer-40@2x.png │ │ ├── Thermometer-40@3x.png │ │ ├── Thermometer-60@2x.png │ │ ├── Thermometer-60@3x.png │ │ ├── Thermometer-76.png │ │ ├── Thermometer-76@2x.png │ │ └── Thermometer-83.5@2x.png │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── SceneDelegate.swift └── ViewController.swift ├── Today Widget ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist └── TodayViewController.swift └── iOS └── AppIcon.appiconset ├── Contents.json ├── Thermometer-1024.png ├── Thermometer-20.png ├── Thermometer-20@2x.png ├── Thermometer-20@3x.png ├── Thermometer-29.png ├── Thermometer-29@2x.png ├── Thermometer-29@3x.png ├── Thermometer-40.png ├── Thermometer-40@2x.png ├── Thermometer-40@3x.png ├── Thermometer-60@2x.png ├── Thermometer-60@3x.png ├── Thermometer-76.png ├── Thermometer-76@2x.png └── Thermometer-83.5@2x.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/README.md -------------------------------------------------------------------------------- /Thermometer.ipa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer.ipa -------------------------------------------------------------------------------- /Thermometer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Thermometer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Thermometer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Thermometer.xcodeproj/project.xcworkspace/xcuserdata/ryanmcleod.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer.xcodeproj/project.xcworkspace/xcuserdata/ryanmcleod.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Thermometer.xcodeproj/xcuserdata/ryanmcleod.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer.xcodeproj/xcuserdata/ryanmcleod.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Thermometer.xcodeproj/xcuserdata/ryanmcleod.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer.xcodeproj/xcuserdata/ryanmcleod.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Thermometer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/AppDelegate.swift -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-1024.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-20.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-20@2x.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-20@3x.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-29.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-29@2x.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-29@3x.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-40.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-40@2x.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-40@3x.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-60@2x.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-60@3x.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-76.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-76@2x.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/AppIcon.appiconset/Thermometer-83.5@2x.png -------------------------------------------------------------------------------- /Thermometer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Thermometer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Thermometer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Thermometer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/Info.plist -------------------------------------------------------------------------------- /Thermometer/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/SceneDelegate.swift -------------------------------------------------------------------------------- /Thermometer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Thermometer/ViewController.swift -------------------------------------------------------------------------------- /Today Widget/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Today Widget/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Today Widget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Today Widget/Info.plist -------------------------------------------------------------------------------- /Today Widget/TodayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/Today Widget/TodayViewController.swift -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-1024.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-20.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-20@2x.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-20@3x.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-29.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-29@2x.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-29@3x.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-40.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-40@2x.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-40@3x.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-60@2x.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-60@3x.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-76.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-76@2x.png -------------------------------------------------------------------------------- /iOS/AppIcon.appiconset/Thermometer-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warpling/Thermometer/HEAD/iOS/AppIcon.appiconset/Thermometer-83.5@2x.png --------------------------------------------------------------------------------