├── .gitignore ├── LICENSE ├── QuickRecorder.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── QuickRecorder.xcscheme ├── QuickRecorder ├── AVContext.swift ├── Assets.xcassets │ ├── .DS_Store │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── 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 │ │ │ ├── MissingArtwork_Music_onDark_55A54008AD1BA589AA210D2629C1DF41_0.png │ │ │ └── MissingArtwork_Music_onLight_55A54008AD1BA589AA210D2629C1DF41_0.png │ │ ├── camera.imageset │ │ │ ├── Contents.json │ │ │ ├── menubar@1x.png │ │ │ └── menubar@2x.png │ │ ├── qmaIcon.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── save.imageset │ │ │ ├── Contents.json │ │ │ ├── save.png │ │ │ └── save@2x.png │ │ ├── unknowScreen.imageset │ │ │ ├── Contents.json │ │ │ ├── unknow screen.png │ │ │ └── unknow screen@2x.png │ │ └── window.select.imageset │ │ │ ├── Contents.json │ │ │ └── macwindow.and.cursorarrow.svg │ ├── Settings │ │ ├── Contents.json │ │ ├── blacklist.imageset │ │ │ ├── Contents.json │ │ │ ├── blacklist.png │ │ │ └── blacklist@1x.png │ │ ├── film.imageset │ │ │ ├── Contents.json │ │ │ ├── film.png │ │ │ └── film@1x.png │ │ ├── gear.imageset │ │ │ ├── Contents.json │ │ │ ├── gear.png │ │ │ └── gear@1x.png │ │ ├── hotkey.imageset │ │ │ ├── Contents.json │ │ │ ├── hotkey.png │ │ │ └── hotkey@1x.png │ │ └── record.imageset │ │ │ ├── Contents.json │ │ │ ├── record.png │ │ │ └── record@1x.png │ └── Surprise │ │ ├── ChineseNewYear │ │ ├── Contents.json │ │ ├── fuzi1.imageset │ │ │ ├── Contents.json │ │ │ ├── fuzi.png │ │ │ └── fuzi@1x.png │ │ ├── fuzi2.imageset │ │ │ ├── Contents.json │ │ │ ├── fuziBlur.png │ │ │ └── fuziBlur@1x.png │ │ ├── fuzi3.imageset │ │ │ ├── Contents.json │ │ │ ├── fuziBlur2.png │ │ │ └── fuziBlur2@1x.png │ │ ├── hongbao1.imageset │ │ │ ├── Contents.json │ │ │ ├── hongbao.png │ │ │ └── hongbao@1x.png │ │ ├── hongbao2.imageset │ │ │ ├── Contents.json │ │ │ ├── hongbaoBlur.png │ │ │ └── hongbaoBlur@1x.png │ │ └── hongbao3.imageset │ │ │ ├── Contents.json │ │ │ ├── hongbaoBlur2.png │ │ │ └── hongbaoBlur2@1x.png │ │ ├── Christmas │ │ ├── Contents.json │ │ ├── christmasTree1.imageset │ │ │ ├── Contents.json │ │ │ ├── tree.png │ │ │ └── tree@1x.png │ │ ├── christmasTree2.imageset │ │ │ ├── Contents.json │ │ │ ├── treeBlur.png │ │ │ └── treeBlur@1x.png │ │ ├── snowflake1.imageset │ │ │ ├── Contents.json │ │ │ ├── snow.png │ │ │ └── snow@1x.png │ │ ├── snowflake2.imageset │ │ │ ├── Contents.json │ │ │ ├── snowBlur.png │ │ │ └── snowBlur@1x.png │ │ └── snowflake3.imageset │ │ │ ├── Contents.json │ │ │ ├── snowBlur2.png │ │ │ └── snowBlur2@1x.png │ │ └── 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 ├── README.md ├── README_zh.md ├── appcast.xml └── img ├── donate.png ├── preview.png ├── preview_dark.png ├── preview_en.png └── preview_en_dark.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/LICENSE -------------------------------------------------------------------------------- /QuickRecorder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /QuickRecorder.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /QuickRecorder.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /QuickRecorder.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /QuickRecorder.xcodeproj/xcshareddata/xcschemes/QuickRecorder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder.xcodeproj/xcshareddata/xcschemes/QuickRecorder.xcscheme -------------------------------------------------------------------------------- /QuickRecorder/AVContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/AVContext.swift -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Colors/black_white.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Colors/black_white.colorset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Colors/buttonRed.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Colors/buttonRed.colorset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Colors/buttonRedDark.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Colors/buttonRedDark.colorset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Colors/dark_my_red.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Colors/dark_my_red.colorset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Colors/myblue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Colors/myblue.colorset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Colors/mygreen.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Colors/mygreen.colorset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Colors/mypurple.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Colors/mypurple.colorset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/audioIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/audioIcon.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/audioIcon.imageset/MissingArtwork_Music_onDark_55A54008AD1BA589AA210D2629C1DF41_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/audioIcon.imageset/MissingArtwork_Music_onDark_55A54008AD1BA589AA210D2629C1DF41_0.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/audioIcon.imageset/MissingArtwork_Music_onLight_55A54008AD1BA589AA210D2629C1DF41_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/audioIcon.imageset/MissingArtwork_Music_onLight_55A54008AD1BA589AA210D2629C1DF41_0.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/camera.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/camera.imageset/menubar@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/camera.imageset/menubar@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/camera.imageset/menubar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/camera.imageset/menubar@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_128x128.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_16x16.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_256x256.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_32x32.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_512x512.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/qmaIcon.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/save.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/save.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/save.imageset/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/save.imageset/save.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/save.imageset/save@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/save.imageset/save@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/unknowScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/unknowScreen.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/unknowScreen.imageset/unknow screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/unknowScreen.imageset/unknow screen.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/unknowScreen.imageset/unknow screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/unknowScreen.imageset/unknow screen@2x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/window.select.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/window.select.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Others/window.select.imageset/macwindow.and.cursorarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Others/window.select.imageset/macwindow.and.cursorarrow.svg -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/blacklist.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/blacklist.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/blacklist.imageset/blacklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/blacklist.imageset/blacklist.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/blacklist.imageset/blacklist@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/blacklist.imageset/blacklist@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/film.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/film.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/film.imageset/film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/film.imageset/film.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/film.imageset/film@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/film.imageset/film@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/gear.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/gear.imageset/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/gear.imageset/gear.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/gear.imageset/gear@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/gear.imageset/gear@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/hotkey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/hotkey.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/hotkey.imageset/hotkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/hotkey.imageset/hotkey.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/hotkey.imageset/hotkey@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/hotkey.imageset/hotkey@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/record.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/record.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/record.imageset/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/record.imageset/record.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Settings/record.imageset/record@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Settings/record.imageset/record@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi1.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi1.imageset/fuzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi1.imageset/fuzi.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi1.imageset/fuzi@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi1.imageset/fuzi@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi2.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi2.imageset/fuziBlur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi2.imageset/fuziBlur.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi2.imageset/fuziBlur@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi2.imageset/fuziBlur@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi3.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi3.imageset/fuziBlur2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi3.imageset/fuziBlur2.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi3.imageset/fuziBlur2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/fuzi3.imageset/fuziBlur2@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao1.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao1.imageset/hongbao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao1.imageset/hongbao.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao1.imageset/hongbao@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao1.imageset/hongbao@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao2.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao2.imageset/hongbaoBlur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao2.imageset/hongbaoBlur.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao2.imageset/hongbaoBlur@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao2.imageset/hongbaoBlur@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao3.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao3.imageset/hongbaoBlur2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao3.imageset/hongbaoBlur2.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao3.imageset/hongbaoBlur2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/ChineseNewYear/hongbao3.imageset/hongbaoBlur2@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree1.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree1.imageset/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree1.imageset/tree.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree1.imageset/tree@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree1.imageset/tree@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree2.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree2.imageset/treeBlur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree2.imageset/treeBlur.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree2.imageset/treeBlur@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/christmasTree2.imageset/treeBlur@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake1.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake1.imageset/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake1.imageset/snow.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake1.imageset/snow@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake1.imageset/snow@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake2.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake2.imageset/snowBlur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake2.imageset/snowBlur.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake2.imageset/snowBlur@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake2.imageset/snowBlur@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake3.imageset/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake3.imageset/snowBlur2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake3.imageset/snowBlur2.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake3.imageset/snowBlur2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Christmas/snowflake3.imageset/snowBlur2@1x.png -------------------------------------------------------------------------------- /QuickRecorder/Assets.xcassets/Surprise/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Assets.xcassets/Surprise/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/Base.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Base.lproj/Credits.rtf -------------------------------------------------------------------------------- /QuickRecorder/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Info.plist -------------------------------------------------------------------------------- /QuickRecorder/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /QuickRecorder/QuickRecorder.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/QuickRecorder.entitlements -------------------------------------------------------------------------------- /QuickRecorder/QuickRecorderApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/QuickRecorderApp.swift -------------------------------------------------------------------------------- /QuickRecorder/RecordEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/RecordEngine.swift -------------------------------------------------------------------------------- /QuickRecorder/SCContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/SCContext.swift -------------------------------------------------------------------------------- /QuickRecorder/Supports/AppleScript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Supports/AppleScript.swift -------------------------------------------------------------------------------- /QuickRecorder/Supports/GroupForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Supports/GroupForm.swift -------------------------------------------------------------------------------- /QuickRecorder/Supports/Scriptable.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Supports/Scriptable.sdef -------------------------------------------------------------------------------- /QuickRecorder/Supports/SleepPreventer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Supports/SleepPreventer.swift -------------------------------------------------------------------------------- /QuickRecorder/Supports/Sparkle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Supports/Sparkle.swift -------------------------------------------------------------------------------- /QuickRecorder/Supports/WindowAccessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Supports/WindowAccessor.swift -------------------------------------------------------------------------------- /QuickRecorder/Supports/WindowHighlighter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/Supports/WindowHighlighter.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/AppBlockSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/AppBlockSelector.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/AppSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/AppSelector.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/AreaSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/AreaSelector.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/CameraOverlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/CameraOverlayer.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/ContentView.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/ContentViewNew.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/ContentViewNew.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/MousePointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/MousePointer.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/PreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/PreviewView.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/QmaPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/QmaPlayer.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/ScreenMagnifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/ScreenMagnifier.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/ScreenSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/ScreenSelector.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/SettingsView.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/StatusBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/StatusBar.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/SurpriseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/SurpriseView.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/VideoEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/VideoEditor.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/WinSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/WinSelector.swift -------------------------------------------------------------------------------- /QuickRecorder/ViewModel/iDeviceSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/ViewModel/iDeviceSelector.swift -------------------------------------------------------------------------------- /QuickRecorder/it.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/it.lproj/Credits.rtf -------------------------------------------------------------------------------- /QuickRecorder/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /QuickRecorder/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /QuickRecorder/zh-Hans.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/zh-Hans.lproj/Credits.rtf -------------------------------------------------------------------------------- /QuickRecorder/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /QuickRecorder/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /QuickRecorder/zh-Hant.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/zh-Hant.lproj/Credits.rtf -------------------------------------------------------------------------------- /QuickRecorder/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/zh-Hant.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /QuickRecorder/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/QuickRecorder/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/README_zh.md -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/appcast.xml -------------------------------------------------------------------------------- /img/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/img/donate.png -------------------------------------------------------------------------------- /img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/img/preview.png -------------------------------------------------------------------------------- /img/preview_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/img/preview_dark.png -------------------------------------------------------------------------------- /img/preview_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/img/preview_en.png -------------------------------------------------------------------------------- /img/preview_en_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/QuickRecorder/HEAD/img/preview_en_dark.png --------------------------------------------------------------------------------