├── Achico.xcodeproj └── project.pbxproj ├── Achico ├── Achico.entitlements ├── App │ ├── AchicoApp.swift │ └── AppDelegate.swift ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ ├── AppIcon-1024.imageset │ │ ├── AppIcon-1024.png │ │ └── Contents.json │ │ ├── AppIcon-128.imageset │ │ ├── AppIcon-128.png │ │ └── Contents.json │ │ ├── AppIcon-16.imageset │ │ ├── AppIcon-16.png │ │ └── Contents.json │ │ ├── AppIcon-256.imageset │ │ ├── AppIcon-256.png │ │ └── Contents.json │ │ ├── AppIcon-32.imageset │ │ ├── AppIcon-32.png │ │ └── Contents.json │ │ ├── AppIcon-512.imageset │ │ ├── AppIcon-512.png │ │ └── Contents.json │ │ ├── AppIcon-64.imageset │ │ ├── AppIcon-64.png │ │ └── Contents.json │ │ └── Contents.json ├── Processor │ ├── CacheManager.swift │ ├── FileProcessor.swift │ └── VideoProcessor.swift ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-1024.png │ │ │ ├── AppIcon-128.png │ │ │ ├── AppIcon-16.png │ │ │ ├── AppIcon-256 1.png │ │ │ ├── AppIcon-256.png │ │ │ ├── AppIcon-32 1.png │ │ │ ├── AppIcon-32.png │ │ │ ├── AppIcon-512 1.png │ │ │ ├── AppIcon-512.png │ │ │ ├── AppIcon-64.png │ │ │ └── Contents.json │ │ └── Contents.json │ ├── CompressionSettings.swift │ ├── FileDropDelegate.swift │ ├── MenuBarController.swift │ └── UpdateChecker.swift ├── UI Components │ ├── ButtonGroup.swift │ ├── GlassButtonStyle.swift │ ├── TitleBarAccessory.swift │ ├── VisualEffectBlur.swift │ └── WindowAccessor.swift └── Views │ ├── ContentView.swift │ ├── DropZoneView.swift │ ├── MenuBarView.swift │ ├── MultiFileProcessingView.swift │ └── ResultView.swift ├── LICENSE └── README.md /Achico.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Achico/Achico.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Achico.entitlements -------------------------------------------------------------------------------- /Achico/App/AchicoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/App/AchicoApp.swift -------------------------------------------------------------------------------- /Achico/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/App/AppDelegate.swift -------------------------------------------------------------------------------- /Achico/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Info.plist -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-1024.imageset/AppIcon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-1024.imageset/AppIcon-1024.png -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-1024.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-1024.imageset/Contents.json -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-128.imageset/AppIcon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-128.imageset/AppIcon-128.png -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-128.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-128.imageset/Contents.json -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-16.imageset/AppIcon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-16.imageset/AppIcon-16.png -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-16.imageset/Contents.json -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-256.imageset/AppIcon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-256.imageset/AppIcon-256.png -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-256.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-256.imageset/Contents.json -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-32.imageset/AppIcon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-32.imageset/AppIcon-32.png -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-32.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-32.imageset/Contents.json -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-512.imageset/AppIcon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-512.imageset/AppIcon-512.png -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-512.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-512.imageset/Contents.json -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-64.imageset/AppIcon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-64.imageset/AppIcon-64.png -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/AppIcon-64.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/AppIcon-64.imageset/Contents.json -------------------------------------------------------------------------------- /Achico/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Achico/Processor/CacheManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Processor/CacheManager.swift -------------------------------------------------------------------------------- /Achico/Processor/FileProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Processor/FileProcessor.swift -------------------------------------------------------------------------------- /Achico/Processor/VideoProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Processor/VideoProcessor.swift -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-256 1.png -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-32 1.png -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-512 1.png -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon-64.png -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Achico/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Achico/Resources/CompressionSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/CompressionSettings.swift -------------------------------------------------------------------------------- /Achico/Resources/FileDropDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/FileDropDelegate.swift -------------------------------------------------------------------------------- /Achico/Resources/MenuBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/MenuBarController.swift -------------------------------------------------------------------------------- /Achico/Resources/UpdateChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Resources/UpdateChecker.swift -------------------------------------------------------------------------------- /Achico/UI Components/ButtonGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/UI Components/ButtonGroup.swift -------------------------------------------------------------------------------- /Achico/UI Components/GlassButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/UI Components/GlassButtonStyle.swift -------------------------------------------------------------------------------- /Achico/UI Components/TitleBarAccessory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/UI Components/TitleBarAccessory.swift -------------------------------------------------------------------------------- /Achico/UI Components/VisualEffectBlur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/UI Components/VisualEffectBlur.swift -------------------------------------------------------------------------------- /Achico/UI Components/WindowAccessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/UI Components/WindowAccessor.swift -------------------------------------------------------------------------------- /Achico/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Views/ContentView.swift -------------------------------------------------------------------------------- /Achico/Views/DropZoneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Views/DropZoneView.swift -------------------------------------------------------------------------------- /Achico/Views/MenuBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Views/MenuBarView.swift -------------------------------------------------------------------------------- /Achico/Views/MultiFileProcessingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Views/MultiFileProcessingView.swift -------------------------------------------------------------------------------- /Achico/Views/ResultView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/Achico/Views/ResultView.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance-dev/achico/HEAD/README.md --------------------------------------------------------------------------------