├── Countdown.gif ├── Countdown.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── Countdown.xcscheme │ └── Preview.xcscheme ├── Countdown ├── Resources │ └── Configuration.xib ├── Sources │ ├── ConfigurationWindowController.swift │ ├── CountdownView.swift │ ├── Label.swift │ ├── PlaceView.swift │ └── Preferences.swift └── Support │ └── Info.plist ├── LICENSE ├── Preview ├── Resources │ ├── Base.lproj │ │ └── MainMenu.xib │ └── Images.xcassets │ │ └── AppIcon.appiconset │ │ └── Contents.json ├── Sources │ └── AppDelegate.swift └── Support │ └── Info.plist └── Readme.markdown /Countdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Countdown.gif -------------------------------------------------------------------------------- /Countdown.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Countdown.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Countdown.xcodeproj/xcshareddata/xcschemes/Countdown.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Countdown.xcodeproj/xcshareddata/xcschemes/Countdown.xcscheme -------------------------------------------------------------------------------- /Countdown.xcodeproj/xcshareddata/xcschemes/Preview.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Countdown.xcodeproj/xcshareddata/xcschemes/Preview.xcscheme -------------------------------------------------------------------------------- /Countdown/Resources/Configuration.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Countdown/Resources/Configuration.xib -------------------------------------------------------------------------------- /Countdown/Sources/ConfigurationWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Countdown/Sources/ConfigurationWindowController.swift -------------------------------------------------------------------------------- /Countdown/Sources/CountdownView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Countdown/Sources/CountdownView.swift -------------------------------------------------------------------------------- /Countdown/Sources/Label.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Countdown/Sources/Label.swift -------------------------------------------------------------------------------- /Countdown/Sources/PlaceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Countdown/Sources/PlaceView.swift -------------------------------------------------------------------------------- /Countdown/Sources/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Countdown/Sources/Preferences.swift -------------------------------------------------------------------------------- /Countdown/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Countdown/Support/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/LICENSE -------------------------------------------------------------------------------- /Preview/Resources/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Preview/Resources/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Preview/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Preview/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Preview/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Preview/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Preview/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Preview/Support/Info.plist -------------------------------------------------------------------------------- /Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soffes/Countdown/HEAD/Readme.markdown --------------------------------------------------------------------------------