├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Example ├── Podfile ├── Podfile.lock ├── ScreenBrightness.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ScreenBrightness-Example.xcscheme ├── ScreenBrightness.xcworkspace │ └── contents.xcworkspacedata ├── ScreenBrightness │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── moon.imageset │ │ │ ├── Contents.json │ │ │ └── moon-fill.pdf │ │ └── sun.imageset │ │ │ ├── Contents.json │ │ │ └── sun.pdf │ ├── Info.plist │ └── ViewController.swift └── Tests │ ├── Info.plist │ └── ScreenBrightnessTests.swift ├── LICENSE ├── README.md ├── ScreenBrightness.podspec ├── ScreenBrightness ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── ScreenBrightness.swift ├── _Pods.xcodeproj └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/ScreenBrightness.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ScreenBrightness.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ScreenBrightness.xcodeproj/xcshareddata/xcschemes/ScreenBrightness-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness.xcodeproj/xcshareddata/xcschemes/ScreenBrightness-Example.xcscheme -------------------------------------------------------------------------------- /Example/ScreenBrightness.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ScreenBrightness/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ScreenBrightness/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ScreenBrightness/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ScreenBrightness/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ScreenBrightness/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ScreenBrightness/Images.xcassets/moon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness/Images.xcassets/moon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ScreenBrightness/Images.xcassets/moon.imageset/moon-fill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness/Images.xcassets/moon.imageset/moon-fill.pdf -------------------------------------------------------------------------------- /Example/ScreenBrightness/Images.xcassets/sun.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness/Images.xcassets/sun.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ScreenBrightness/Images.xcassets/sun.imageset/sun.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness/Images.xcassets/sun.imageset/sun.pdf -------------------------------------------------------------------------------- /Example/ScreenBrightness/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness/Info.plist -------------------------------------------------------------------------------- /Example/ScreenBrightness/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/ScreenBrightness/ViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/ScreenBrightnessTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/Example/Tests/ScreenBrightnessTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/README.md -------------------------------------------------------------------------------- /ScreenBrightness.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/ScreenBrightness.podspec -------------------------------------------------------------------------------- /ScreenBrightness/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScreenBrightness/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScreenBrightness/Classes/ScreenBrightness.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/ScreenBrightness/Classes/ScreenBrightness.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalkonturek/ScreenBrightness/HEAD/demo.gif --------------------------------------------------------------------------------