├── .gitignore ├── LICENSE ├── README.md ├── macfeh ├── macfeh.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── macfeh Release.xcscheme │ │ └── macfeh.xcscheme ├── macfeh │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Controllers │ │ ├── Preferences │ │ │ └── GeneralPreferencesController.swift │ │ └── Viewer │ │ │ ├── ImageViewerController.swift │ │ │ └── Window.swift │ ├── Info.plist │ ├── Objects │ │ └── Preferences │ │ │ └── Preferences.swift │ ├── Utilities │ │ └── ImageExtensions.swift │ └── Views │ │ ├── ImageViewerImageView.swift │ │ └── ImageViewerScrollView.swift ├── macfehTests │ ├── Info.plist │ └── macfehTests.swift └── macfehUITests │ ├── Info.plist │ └── macfehUITests.swift └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/README.md -------------------------------------------------------------------------------- /macfeh/macfeh.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macfeh/macfeh.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macfeh/macfeh.xcodeproj/xcshareddata/xcschemes/macfeh Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh.xcodeproj/xcshareddata/xcschemes/macfeh Release.xcscheme -------------------------------------------------------------------------------- /macfeh/macfeh.xcodeproj/xcshareddata/xcschemes/macfeh.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh.xcodeproj/xcshareddata/xcschemes/macfeh.xcscheme -------------------------------------------------------------------------------- /macfeh/macfeh/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh/AppDelegate.swift -------------------------------------------------------------------------------- /macfeh/macfeh/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macfeh/macfeh/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /macfeh/macfeh/Controllers/Preferences/GeneralPreferencesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh/Controllers/Preferences/GeneralPreferencesController.swift -------------------------------------------------------------------------------- /macfeh/macfeh/Controllers/Viewer/ImageViewerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh/Controllers/Viewer/ImageViewerController.swift -------------------------------------------------------------------------------- /macfeh/macfeh/Controllers/Viewer/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh/Controllers/Viewer/Window.swift -------------------------------------------------------------------------------- /macfeh/macfeh/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh/Info.plist -------------------------------------------------------------------------------- /macfeh/macfeh/Objects/Preferences/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh/Objects/Preferences/Preferences.swift -------------------------------------------------------------------------------- /macfeh/macfeh/Utilities/ImageExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh/Utilities/ImageExtensions.swift -------------------------------------------------------------------------------- /macfeh/macfeh/Views/ImageViewerImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh/Views/ImageViewerImageView.swift -------------------------------------------------------------------------------- /macfeh/macfeh/Views/ImageViewerScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfeh/Views/ImageViewerScrollView.swift -------------------------------------------------------------------------------- /macfeh/macfehTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfehTests/Info.plist -------------------------------------------------------------------------------- /macfeh/macfehTests/macfehTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfehTests/macfehTests.swift -------------------------------------------------------------------------------- /macfeh/macfehUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfehUITests/Info.plist -------------------------------------------------------------------------------- /macfeh/macfehUITests/macfehUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/macfeh/macfehUITests/macfehUITests.swift -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrabWeb/macfeh/HEAD/screenshot.png --------------------------------------------------------------------------------