├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Demo └── WhisperDemo │ ├── Podfile │ ├── Podfile.lock │ ├── WhisperDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── WhisperDemo.xcscheme │ │ └── WhisperTests.xcscheme │ ├── WhisperDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── WhisperDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── avatar.imageset │ │ │ ├── Contents.json │ │ │ └── avatar.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── TableViewController.swift │ └── ViewController.swift │ └── WhisperTests │ ├── Info.plist │ └── WhisperTests.swift ├── Images ├── .DS_Store ├── eight@3x.png ├── eleven@3x.png ├── five@3x.png ├── four@3x.png ├── nine@3x.png ├── one@3x.png ├── seven@3x.png ├── six@3x.png ├── ten@3x.png ├── three@3x.png ├── twelve@3x.png └── two@3x.png ├── LICENSE.md ├── README.md ├── Resources ├── in-app-notification.png ├── permanent-whisper.png ├── whisper-cover.png └── whistle-information.png ├── Source ├── Config.swift ├── Configuration │ ├── ColorList.swift │ └── FontList.swift ├── Message.swift ├── ShoutFactory.swift ├── Showing.swift ├── UIView+Extensions.swift ├── WhisperFactory.swift ├── WhisperView.swift └── WhistleFactory.swift ├── SupportFiles └── Info.plist ├── Whisper.podspec ├── Whisper.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Whisper-iOS.xcscheme └── circle.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Demo/WhisperDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/Podfile -------------------------------------------------------------------------------- /Demo/WhisperDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/Podfile.lock -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo.xcodeproj/xcshareddata/xcschemes/WhisperDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo.xcodeproj/xcshareddata/xcschemes/WhisperDemo.xcscheme -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo.xcodeproj/xcshareddata/xcschemes/WhisperTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo.xcodeproj/xcshareddata/xcschemes/WhisperTests.xcscheme -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo/Assets.xcassets/avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo/Assets.xcassets/avatar.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo/Assets.xcassets/avatar.imageset/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo/Assets.xcassets/avatar.imageset/avatar.png -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo/Info.plist -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo/TableViewController.swift -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperDemo/ViewController.swift -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperTests/Info.plist -------------------------------------------------------------------------------- /Demo/WhisperDemo/WhisperTests/WhisperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Demo/WhisperDemo/WhisperTests/WhisperTests.swift -------------------------------------------------------------------------------- /Images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/.DS_Store -------------------------------------------------------------------------------- /Images/eight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/eight@3x.png -------------------------------------------------------------------------------- /Images/eleven@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/eleven@3x.png -------------------------------------------------------------------------------- /Images/five@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/five@3x.png -------------------------------------------------------------------------------- /Images/four@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/four@3x.png -------------------------------------------------------------------------------- /Images/nine@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/nine@3x.png -------------------------------------------------------------------------------- /Images/one@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/one@3x.png -------------------------------------------------------------------------------- /Images/seven@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/seven@3x.png -------------------------------------------------------------------------------- /Images/six@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/six@3x.png -------------------------------------------------------------------------------- /Images/ten@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/ten@3x.png -------------------------------------------------------------------------------- /Images/three@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/three@3x.png -------------------------------------------------------------------------------- /Images/twelve@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/twelve@3x.png -------------------------------------------------------------------------------- /Images/two@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Images/two@3x.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/README.md -------------------------------------------------------------------------------- /Resources/in-app-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Resources/in-app-notification.png -------------------------------------------------------------------------------- /Resources/permanent-whisper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Resources/permanent-whisper.png -------------------------------------------------------------------------------- /Resources/whisper-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Resources/whisper-cover.png -------------------------------------------------------------------------------- /Resources/whistle-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Resources/whistle-information.png -------------------------------------------------------------------------------- /Source/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Source/Config.swift -------------------------------------------------------------------------------- /Source/Configuration/ColorList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Source/Configuration/ColorList.swift -------------------------------------------------------------------------------- /Source/Configuration/FontList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Source/Configuration/FontList.swift -------------------------------------------------------------------------------- /Source/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Source/Message.swift -------------------------------------------------------------------------------- /Source/ShoutFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Source/ShoutFactory.swift -------------------------------------------------------------------------------- /Source/Showing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Source/Showing.swift -------------------------------------------------------------------------------- /Source/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Source/UIView+Extensions.swift -------------------------------------------------------------------------------- /Source/WhisperFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Source/WhisperFactory.swift -------------------------------------------------------------------------------- /Source/WhisperView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Source/WhisperView.swift -------------------------------------------------------------------------------- /Source/WhistleFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Source/WhistleFactory.swift -------------------------------------------------------------------------------- /SupportFiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/SupportFiles/Info.plist -------------------------------------------------------------------------------- /Whisper.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Whisper.podspec -------------------------------------------------------------------------------- /Whisper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Whisper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Whisper.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Whisper.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Whisper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Whisper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Whisper.xcodeproj/xcshareddata/xcschemes/Whisper-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/Whisper.xcodeproj/xcshareddata/xcschemes/Whisper-iOS.xcscheme -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Whisper/HEAD/circle.yml --------------------------------------------------------------------------------