├── .bundle └── config ├── .gitignore ├── .pr_changelog.json ├── Demo ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── hoff.imageset │ │ ├── Contents.json │ │ └── hoff.jpeg ├── Base.lproj │ └── LaunchScreen.storyboard ├── Extensions │ └── String+Extensions.swift ├── Info.plist ├── Package.swift ├── Resources │ ├── en.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ └── Localizable.strings │ └── nb.lproj │ │ └── Localizable.strings ├── ViewController.swift └── nb.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── Finjinon.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Demo.xcscheme │ └── Finjinon.xcscheme ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── README.md ├── Screenshots └── screenshot.png ├── Sources ├── BundleExtensions.swift ├── Data │ ├── AssetResolver.swift │ └── PhotoStorage.swift ├── Finjinon.swift ├── FinjinonConfiguration.swift ├── Info.plist ├── PhotoCaptureViewController │ ├── CaptureManager.swift │ ├── ImagePickerAdapter.swift │ ├── PhotoCaptureViewController.swift │ ├── PhotoCollectionViewCell.swift │ └── PhotoCollectionViewLayout.swift ├── Resources │ └── Assets.xcassets │ │ ├── Contents.json │ │ ├── LightningIcon.imageset │ │ ├── Contents.json │ │ ├── LightningIcon.png │ │ ├── LightningIcon@2x.png │ │ └── LightningIcon@3x.png │ │ ├── LowLightIcon.imageset │ │ ├── Contents.json │ │ └── LowLightIcon.pdf │ │ └── PhotosIcon.imageset │ │ ├── Contents.json │ │ ├── PhotosIcon.png │ │ ├── PhotosIcon@2x.png │ │ └── PhotosIcon@3x.png ├── Services │ └── LowLight │ │ ├── LightingCondition.swift │ │ ├── LowLightService.swift │ │ └── LowLightView.swift └── Shared │ ├── Headers │ └── Finjinon.h │ └── UIElements │ ├── CloseButton.swift │ └── TriggerButton.swift ├── Tests ├── FinjinonTests.swift └── Info.plist └── fastlane └── Fastfile /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "bundler" 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/.gitignore -------------------------------------------------------------------------------- /.pr_changelog.json: -------------------------------------------------------------------------------- 1 | { 2 | "strategy": "squash" 3 | } 4 | -------------------------------------------------------------------------------- /Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/hoff.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/Assets.xcassets/hoff.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/hoff.imageset/hoff.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/Assets.xcassets/hoff.imageset/hoff.jpeg -------------------------------------------------------------------------------- /Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/Extensions/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/Extensions/String+Extensions.swift -------------------------------------------------------------------------------- /Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/Package.swift -------------------------------------------------------------------------------- /Demo/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Demo/Resources/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/Resources/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Demo/Resources/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/Resources/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/ViewController.swift -------------------------------------------------------------------------------- /Demo/nb.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/nb.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /Demo/nb.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Demo/nb.lproj/Main.strings -------------------------------------------------------------------------------- /Finjinon.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Finjinon.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Finjinon.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Finjinon.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Finjinon.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Finjinon.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Finjinon.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Finjinon.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme -------------------------------------------------------------------------------- /Finjinon.xcodeproj/xcshareddata/xcschemes/Finjinon.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Finjinon.xcodeproj/xcshareddata/xcschemes/Finjinon.xcscheme -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'fastlane', '~> 2.214.0' 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Screenshots/screenshot.png -------------------------------------------------------------------------------- /Sources/BundleExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/BundleExtensions.swift -------------------------------------------------------------------------------- /Sources/Data/AssetResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Data/AssetResolver.swift -------------------------------------------------------------------------------- /Sources/Data/PhotoStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Data/PhotoStorage.swift -------------------------------------------------------------------------------- /Sources/Finjinon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Finjinon.swift -------------------------------------------------------------------------------- /Sources/FinjinonConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/FinjinonConfiguration.swift -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Info.plist -------------------------------------------------------------------------------- /Sources/PhotoCaptureViewController/CaptureManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/PhotoCaptureViewController/CaptureManager.swift -------------------------------------------------------------------------------- /Sources/PhotoCaptureViewController/ImagePickerAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/PhotoCaptureViewController/ImagePickerAdapter.swift -------------------------------------------------------------------------------- /Sources/PhotoCaptureViewController/PhotoCaptureViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/PhotoCaptureViewController/PhotoCaptureViewController.swift -------------------------------------------------------------------------------- /Sources/PhotoCaptureViewController/PhotoCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/PhotoCaptureViewController/PhotoCollectionViewCell.swift -------------------------------------------------------------------------------- /Sources/PhotoCaptureViewController/PhotoCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/PhotoCaptureViewController/PhotoCollectionViewLayout.swift -------------------------------------------------------------------------------- /Sources/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/Resources/Assets.xcassets/LightningIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Resources/Assets.xcassets/LightningIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Resources/Assets.xcassets/LightningIcon.imageset/LightningIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Resources/Assets.xcassets/LightningIcon.imageset/LightningIcon.png -------------------------------------------------------------------------------- /Sources/Resources/Assets.xcassets/LightningIcon.imageset/LightningIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Resources/Assets.xcassets/LightningIcon.imageset/LightningIcon@2x.png -------------------------------------------------------------------------------- /Sources/Resources/Assets.xcassets/LightningIcon.imageset/LightningIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Resources/Assets.xcassets/LightningIcon.imageset/LightningIcon@3x.png -------------------------------------------------------------------------------- /Sources/Resources/Assets.xcassets/LowLightIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Resources/Assets.xcassets/LowLightIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Resources/Assets.xcassets/LowLightIcon.imageset/LowLightIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Resources/Assets.xcassets/LowLightIcon.imageset/LowLightIcon.pdf -------------------------------------------------------------------------------- /Sources/Resources/Assets.xcassets/PhotosIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Resources/Assets.xcassets/PhotosIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Resources/Assets.xcassets/PhotosIcon.imageset/PhotosIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Resources/Assets.xcassets/PhotosIcon.imageset/PhotosIcon.png -------------------------------------------------------------------------------- /Sources/Resources/Assets.xcassets/PhotosIcon.imageset/PhotosIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Resources/Assets.xcassets/PhotosIcon.imageset/PhotosIcon@2x.png -------------------------------------------------------------------------------- /Sources/Resources/Assets.xcassets/PhotosIcon.imageset/PhotosIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Resources/Assets.xcassets/PhotosIcon.imageset/PhotosIcon@3x.png -------------------------------------------------------------------------------- /Sources/Services/LowLight/LightingCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Services/LowLight/LightingCondition.swift -------------------------------------------------------------------------------- /Sources/Services/LowLight/LowLightService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Services/LowLight/LowLightService.swift -------------------------------------------------------------------------------- /Sources/Services/LowLight/LowLightView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Services/LowLight/LowLightView.swift -------------------------------------------------------------------------------- /Sources/Shared/Headers/Finjinon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Shared/Headers/Finjinon.h -------------------------------------------------------------------------------- /Sources/Shared/UIElements/CloseButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Shared/UIElements/CloseButton.swift -------------------------------------------------------------------------------- /Sources/Shared/UIElements/TriggerButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Sources/Shared/UIElements/TriggerButton.swift -------------------------------------------------------------------------------- /Tests/FinjinonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Tests/FinjinonTests.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finn-no/Finjinon/HEAD/fastlane/Fastfile --------------------------------------------------------------------------------