gitextract_xfnzrp5g/ ├── .gitignore ├── LICENSE ├── QuickRecorder/ │ ├── AVContext.swift │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Colors/ │ │ │ ├── Contents.json │ │ │ ├── black_white.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── buttonRed.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── buttonRedDark.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── dark_my_red.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── myblue.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── mygreen.colorset/ │ │ │ │ └── Contents.json │ │ │ └── mypurple.colorset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Others/ │ │ │ ├── Contents.json │ │ │ ├── audioIcon.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── camera.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── save.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── unknowScreen.imageset/ │ │ │ │ └── Contents.json │ │ │ └── window.select.imageset/ │ │ │ └── Contents.json │ │ ├── Settings/ │ │ │ ├── Contents.json │ │ │ ├── blacklist.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── film.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── gear.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── hotkey.imageset/ │ │ │ │ └── Contents.json │ │ │ └── record.imageset/ │ │ │ └── Contents.json │ │ └── Surprise/ │ │ ├── ChineseNewYear/ │ │ │ ├── Contents.json │ │ │ ├── fuzi1.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── fuzi2.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── fuzi3.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── hongbao1.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── hongbao2.imageset/ │ │ │ │ └── Contents.json │ │ │ └── hongbao3.imageset/ │ │ │ └── Contents.json │ │ ├── Christmas/ │ │ │ ├── Contents.json │ │ │ ├── christmasTree1.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── christmasTree2.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── snowflake1.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── snowflake2.imageset/ │ │ │ │ └── Contents.json │ │ │ └── snowflake3.imageset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── Credits.rtf │ ├── Info.plist │ ├── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ ├── QuickRecorder.entitlements │ ├── QuickRecorderApp.swift │ ├── RecordEngine.swift │ ├── SCContext.swift │ ├── Supports/ │ │ ├── AppleScript.swift │ │ ├── GroupForm.swift │ │ ├── Scriptable.sdef │ │ ├── SleepPreventer.swift │ │ ├── Sparkle.swift │ │ ├── WindowAccessor.swift │ │ └── WindowHighlighter.swift │ ├── ViewModel/ │ │ ├── AppBlockSelector.swift │ │ ├── AppSelector.swift │ │ ├── AreaSelector.swift │ │ ├── CameraOverlayer.swift │ │ ├── ContentView.swift │ │ ├── ContentViewNew.swift │ │ ├── MousePointer.swift │ │ ├── PreviewView.swift │ │ ├── QmaPlayer.swift │ │ ├── ScreenMagnifier.swift │ │ ├── ScreenSelector.swift │ │ ├── SettingsView.swift │ │ ├── StatusBar.swift │ │ ├── SurpriseView.swift │ │ ├── VideoEditor.swift │ │ ├── WinSelector.swift │ │ └── iDeviceSelector.swift │ ├── it.lproj/ │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── zh-Hans.lproj/ │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ └── zh-Hant.lproj/ │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── Localizable.strings ├── QuickRecorder.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm/ │ │ └── Package.resolved │ └── xcshareddata/ │ └── xcschemes/ │ └── QuickRecorder.xcscheme ├── README.md ├── README_zh.md └── appcast.xml