├── .codecov.yml ├── .github └── FUNDING.yml ├── .gitignore ├── .swiftlint.yml ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── Documentation ├── README_EN.md ├── RELEASE_NOTE.md └── RELEASE_NOTE_CN.md ├── HXPhotoPicker.podspec ├── HXPhotoPickerExample.entitlements ├── HXPhotoPickerExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── HXPhotoPicker.xcscheme │ ├── HXPhotoPickerExample.xcscheme │ └── SwiftUIExample.xcscheme ├── HXPhotoPickerExample.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── LICENSE ├── Objective-C ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── icon_all.jpg │ ├── Contents.json │ ├── camera_overturn.imageset │ │ ├── Contents.json │ │ └── camera_overturn@2x.png │ ├── hotweibo_back_icon.imageset │ │ ├── Contents.json │ │ └── hotweibo_back_icon@2x.png │ ├── hx_photo_edit_trash_close.imageset │ │ ├── Contents.json │ │ └── hx_photo_edit_trash_close@2x.png │ ├── hx_photo_edit_trash_open.imageset │ │ ├── Contents.json │ │ └── hx_photo_edit_trash_open@2x.png │ ├── wx_bg_image.imageset │ │ ├── Contents.json │ │ └── wx_bg_image@2x.png │ └── wx_head_icon.imageset │ │ ├── Contents.json │ │ └── wx_head_icon@2x.png ├── Classes │ ├── OCPickerExampleViewController.h │ ├── OCPickerExampleViewController.m │ ├── ViewController.h │ ├── ViewController.m │ └── assets │ │ ├── IMG_0168.GIF │ │ └── c81.mp4 ├── HXPhotoPickerExample-Bridging-Header.h ├── Info.plist ├── SwiftPhotoPicker │ ├── SwiftAssetURLResult.swift │ ├── SwiftPhotoAsset.swift │ ├── SwiftPicker.swift │ ├── SwiftPickerConfiguration.swift │ └── SwiftPickerResult.swift └── main.m ├── Package.swift ├── Podfile ├── Podfile.lock ├── Pods ├── Local Podspecs │ └── HXPhotoPicker.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── HXPhotoPicker │ ├── HXPhotoPicker-Info.plist │ ├── HXPhotoPicker-dummy.m │ ├── HXPhotoPicker-prefix.pch │ ├── HXPhotoPicker-umbrella.h │ ├── HXPhotoPicker.debug.xcconfig │ ├── HXPhotoPicker.modulemap │ ├── HXPhotoPicker.release.xcconfig │ └── ResourceBundle-HXPhotoPicker_Privacy-HXPhotoPicker-Info.plist │ ├── Pods-HXPhotoPickerExample │ ├── Pods-HXPhotoPickerExample-Info.plist │ ├── Pods-HXPhotoPickerExample-acknowledgements.markdown │ ├── Pods-HXPhotoPickerExample-acknowledgements.plist │ ├── Pods-HXPhotoPickerExample-dummy.m │ ├── Pods-HXPhotoPickerExample-frameworks.sh │ ├── Pods-HXPhotoPickerExample-umbrella.h │ ├── Pods-HXPhotoPickerExample.debug.xcconfig │ ├── Pods-HXPhotoPickerExample.modulemap │ └── Pods-HXPhotoPickerExample.release.xcconfig │ └── Pods-SwiftUIExample │ ├── Pods-SwiftUIExample-Info.plist │ ├── Pods-SwiftUIExample-acknowledgements.markdown │ ├── Pods-SwiftUIExample-acknowledgements.plist │ ├── Pods-SwiftUIExample-dummy.m │ ├── Pods-SwiftUIExample-frameworks.sh │ ├── Pods-SwiftUIExample-umbrella.h │ ├── Pods-SwiftUIExample.debug.xcconfig │ ├── Pods-SwiftUIExample.modulemap │ └── Pods-SwiftUIExample.release.xcconfig ├── README.md ├── Sources ├── HXPhotoPicker │ ├── Camera+Location │ │ └── CameraViewController+Location.swift │ ├── Camera │ │ ├── Config │ │ │ └── CameraConfiguration.swift │ │ ├── Controller │ │ │ ├── CameraController.swift │ │ │ ├── CameraControllerProtocol.swift │ │ │ ├── CameraManager.swift │ │ │ ├── CameraResultViewController.swift │ │ │ ├── CameraViewController+BottomView.swift │ │ │ ├── CameraViewController+Editor.swift │ │ │ ├── CameraViewController+Preview.swift │ │ │ ├── CameraViewController+Result.swift │ │ │ └── CameraViewController.swift │ │ ├── Model │ │ │ └── DeviceOrientationHelper.swift │ │ ├── Util │ │ │ └── Camera+PhotoTools.swift │ │ └── View │ │ │ ├── CameraBottomView.swift │ │ │ ├── CameraFocusView.swift │ │ │ └── CameraNormalPreviewView.swift │ ├── Core │ │ ├── Config │ │ │ ├── HXImageViewProtocol.swift │ │ │ ├── ImageViewConfig.swift │ │ │ ├── PhotoDebugLogsConfig.swift │ │ │ ├── PhotoHUDConfig.swift │ │ │ ├── PhotoHUDProtocol.swift │ │ │ └── SelectBoxConfiguration.swift │ │ ├── Controller │ │ │ └── HXBaseViewController.swift │ │ ├── Extension │ │ │ ├── Core+AVAsset.swift │ │ │ ├── Core+Bundle.swift │ │ │ ├── Core+CALayer.swift │ │ │ ├── Core+CGFloat.swift │ │ │ ├── Core+Data.swift │ │ │ ├── Core+Dictionary.swift │ │ │ ├── Core+FileManager.swift │ │ │ ├── Core+LayerRTLFrame.swift │ │ │ ├── Core+NSObject.swift │ │ │ ├── Core+String.swift │ │ │ ├── Core+UIApplication.swift │ │ │ ├── Core+UIBarButtonItem.swift │ │ │ ├── Core+UICollectionView.swift │ │ │ ├── Core+UIColor.swift │ │ │ ├── Core+UIDevice.swift │ │ │ ├── Core+UIFont.swift │ │ │ ├── Core+UIImage.swift │ │ │ ├── Core+UIImageView.swift │ │ │ ├── Core+UILabel.swift │ │ │ ├── Core+UITableView.swift │ │ │ ├── Core+UIView.swift │ │ │ ├── Core+UIViewController.swift │ │ │ ├── Core+UIViewRTLFrame.swift │ │ │ └── Core+URL.swift │ │ ├── HXPhotoPicker.swift │ │ ├── Model │ │ │ ├── AppearanceStyle.swift │ │ │ ├── CustomLanguage.swift │ │ │ ├── ExportPreset.swift │ │ │ ├── HXLog.swift │ │ │ ├── ImageContentType.swift │ │ │ ├── IndicatorType.swift │ │ │ ├── LanguageType.swift │ │ │ └── PhotoPanGestureRecognizer.swift │ │ ├── Util │ │ │ ├── AssetPermissionsUtil.swift │ │ │ ├── AssetSaveUtil.swift │ │ │ ├── ImageResource.swift │ │ │ ├── PhotoManager+Download.swift │ │ │ ├── PhotoManager+Language.swift │ │ │ ├── PhotoManager.swift │ │ │ ├── PhotoTools+Alert.swift │ │ │ ├── PhotoTools+Camera.swift │ │ │ ├── PhotoTools+File.swift │ │ │ ├── PhotoTools.swift │ │ │ └── TextManager.swift │ │ └── View │ │ │ ├── ExpandButton.swift │ │ │ ├── HXCollectionView.swift │ │ │ ├── HXTableView.swift │ │ │ ├── ProgressHUD │ │ │ ├── ProgressCircleView.swift │ │ │ ├── ProgressCricleJoinView.swift │ │ │ ├── ProgressHUD.swift │ │ │ ├── ProgressImageView.swift │ │ │ └── ProgressIndefiniteView.swift │ │ │ ├── SelectBoxView.swift │ │ │ └── VideoPlayer │ │ │ ├── PlayButton.swift │ │ │ ├── SliderView.swift │ │ │ ├── VideoPlaySliderView.swift │ │ │ └── VideoPlayerView.swift │ ├── Editor+View │ │ ├── Extension │ │ │ ├── EditorView+AVAsset.swift │ │ │ ├── EditorView+CGFloat.swift │ │ │ ├── EditorView+CIImage.swift │ │ │ ├── EditorView+UIImage.swift │ │ │ └── EditorView+UIView.swift │ │ ├── ImageEditedResult.swift │ │ ├── Model │ │ │ ├── EditorModels.swift │ │ │ ├── EditorTypes.swift │ │ │ └── EditorVideoCompositor.swift │ │ ├── Util │ │ │ ├── EditorDrawTool.swift │ │ │ ├── EditorVideoTool.swift │ │ │ └── EditorView+PhotoTools.swift │ │ ├── VideoEditedResult.swift │ │ └── View │ │ │ ├── EditorAdjusterView+ContentView.swift │ │ │ ├── EditorAdjusterView+Croper.swift │ │ │ ├── EditorAdjusterView+Edit.swift │ │ │ ├── EditorAdjusterView+FrameView.swift │ │ │ ├── EditorAdjusterView+Mirror.swift │ │ │ ├── EditorAdjusterView+Rotate.swift │ │ │ ├── EditorAdjusterView+ScreenRotation.swift │ │ │ ├── EditorAdjusterView+ScrollView.swift │ │ │ ├── EditorAdjusterView+Video.swift │ │ │ ├── EditorAdjusterView.swift │ │ │ ├── EditorAdjusterViewProtocol.swift │ │ │ ├── EditorAudioAnimationView.swift │ │ │ ├── EditorCanvasView.swift │ │ │ ├── EditorContentView.swift │ │ │ ├── EditorControlView.swift │ │ │ ├── EditorDrawView.swift │ │ │ ├── EditorFrameView+Control.swift │ │ │ ├── EditorFrameView+VideoPlay.swift │ │ │ ├── EditorFrameView.swift │ │ │ ├── EditorMaskView.swift │ │ │ ├── EditorMosaicView.swift │ │ │ ├── EditorStickersContentView.swift │ │ │ ├── EditorStickersItemView.swift │ │ │ ├── EditorStickersTrashView.swift │ │ │ ├── EditorStickersView.swift │ │ │ ├── EditorVideoPlayerView.swift │ │ │ ├── EditorView+AdjusterView.swift │ │ │ ├── EditorView+GestureRecognizer.swift │ │ │ ├── EditorView+Public.swift │ │ │ ├── EditorView+ScrollView.swift │ │ │ ├── EditorView.swift │ │ │ └── EditorViewProtocol.swift │ ├── Editor │ │ ├── Config │ │ │ └── EditorConfiguration.swift │ │ ├── Controller │ │ │ ├── EditorChartletViewController.swift │ │ │ ├── EditorMaskListViewController.swift │ │ │ ├── EditorMusicListViewController.swift │ │ │ ├── EditorStickerTextViewController.swift │ │ │ ├── EditorViewController+Action.swift │ │ │ ├── EditorViewController+Await.swift │ │ │ ├── EditorViewController+Brush.swift │ │ │ ├── EditorViewController+Chartlet.swift │ │ │ ├── EditorViewController+EditorView.swift │ │ │ ├── EditorViewController+Filters.swift │ │ │ ├── EditorViewController+LoadAsset.swift │ │ │ ├── EditorViewController+Mosaic.swift │ │ │ ├── EditorViewController+Music.swift │ │ │ ├── EditorViewController+Processing.swift │ │ │ ├── EditorViewController+Ratio.swift │ │ │ ├── EditorViewController+Text.swift │ │ │ ├── EditorViewController+ToolsView.swift │ │ │ ├── EditorViewController+UINavigationController.swift │ │ │ ├── EditorViewController+VideoControl.swift │ │ │ ├── EditorViewController.swift │ │ │ └── EditorViewControllerDelegate.swift │ │ ├── EditedResult.swift │ │ ├── EditorAsset.swift │ │ ├── Extension │ │ │ └── Editor+CIImage.swift │ │ ├── Model │ │ │ ├── EditorChartlet.swift │ │ │ ├── EditorPlayAuido.swift │ │ │ ├── EditorType.swift │ │ │ ├── PhotoEditorFilter.swift │ │ │ └── VideoEditorMusic.swift │ │ ├── Protocol │ │ │ ├── EditorChartletListProtocol.swift │ │ │ └── EditorMaskListProtocol.swift │ │ ├── Transition │ │ │ └── EditorTransition.swift │ │ ├── Util │ │ │ └── Editor+PhotoTools.swift │ │ └── View │ │ │ ├── Brush │ │ │ ├── EditorBrushBlockView.swift │ │ │ ├── EditorBrushColorView.swift │ │ │ └── EditorBrushSizeView.swift │ │ │ ├── Chartlet │ │ │ ├── EditorChartletPreviewView.swift │ │ │ ├── EditorChartletViewCell.swift │ │ │ └── EditorChartletViewListCell.swift │ │ │ ├── CropSize │ │ │ ├── EditorMaskListViewCell.swift │ │ │ ├── EditorRatioToolView.swift │ │ │ ├── EditorRatioToolViewCell.swift │ │ │ └── EditorScaleView.swift │ │ │ ├── EditorCollectionView.swift │ │ │ ├── EditorToolsView.swift │ │ │ ├── Filter │ │ │ ├── EditorFilterEditView.swift │ │ │ ├── EditorFilterParameterView.swift │ │ │ └── EditorFiltersView.swift │ │ │ ├── Mosaic │ │ │ └── EditorMosaicToolView.swift │ │ │ ├── Text │ │ │ ├── EditorStickerTextView+CollectionView.swift │ │ │ ├── EditorStickerTextView+Delegate.swift │ │ │ ├── EditorStickerTextView+Draw.swift │ │ │ └── EditorStickerTextView.swift │ │ │ └── Video │ │ │ ├── EditorMusicLyricViewCell.swift │ │ │ ├── EditorMusicView.swift │ │ │ ├── EditorMusicViewCell.swift │ │ │ ├── EditorVideoControlMaskView.swift │ │ │ ├── EditorVideoControlView.swift │ │ │ ├── EditorVideoControlViewCell.swift │ │ │ └── EditorVolumeView.swift │ ├── Picker │ │ ├── AssetResult.swift │ │ ├── AssetURLResult.swift │ │ ├── Config │ │ │ ├── AlbumListConfiguration.swift │ │ │ ├── AlbumTitleViewConfiguration.swift │ │ │ ├── ArrowViewConfiguration.swift │ │ │ ├── EmptyViewConfiguration.swift │ │ │ ├── NotAuthorizedConfiguration.swift │ │ │ ├── PhotoAlbumControllerConfiguration.swift │ │ │ ├── PhotoListCellConfiguration.swift │ │ │ ├── PhotoListConfiguration.swift │ │ │ ├── PickerBottomViewConfiguration.swift │ │ │ ├── PickerConfiguration.swift │ │ │ ├── PreviewViewConfiguration.swift │ │ │ └── SystemCameraConfiguration.swift │ │ ├── Controller │ │ │ ├── Album │ │ │ │ ├── AlbumViewController.swift │ │ │ │ ├── PhotoAlbumViewController.swift │ │ │ │ └── PhotoMyAlbumViewController.swift │ │ │ ├── Browser │ │ │ │ └── PhotoBrowser.swift │ │ │ ├── Photo │ │ │ │ ├── PhotoBaseViewController.swift │ │ │ │ ├── PhotoPickerController+Internal.swift │ │ │ │ ├── PhotoPickerController+PHPhotoLibrary.swift │ │ │ │ ├── PhotoPickerController+PickerData.swift │ │ │ │ ├── PhotoPickerController+Transitioning.swift │ │ │ │ ├── PhotoPickerController.swift │ │ │ │ ├── PhotoPickerControllerProtocol.swift │ │ │ │ └── PhotoSplitViewController.swift │ │ │ ├── Picker │ │ │ │ ├── PhotoPickerFilterViewController.swift │ │ │ │ ├── PhotoPickerListViewController.swift │ │ │ │ ├── PhotoPickerPageViewController.swift │ │ │ │ ├── PhotoPickerViewController+AlbumView.swift │ │ │ │ ├── PhotoPickerViewController+Camera.swift │ │ │ │ ├── PhotoPickerViewController+Editor.swift │ │ │ │ ├── PhotoPickerViewController+FetchAsset.swift │ │ │ │ ├── PhotoPickerViewController+PhotoList.swift │ │ │ │ ├── PhotoPickerViewController+Preview.swift │ │ │ │ ├── PhotoPickerViewController+Toolbar.swift │ │ │ │ ├── PhotoPickerViewController.swift │ │ │ │ └── SystemCameraViewController.swift │ │ │ └── Preview │ │ │ │ ├── PhotoPeekViewController.swift │ │ │ │ ├── PhotoPreviewViewController+CollectionView.swift │ │ │ │ ├── PhotoPreviewViewController+Editor.swift │ │ │ │ ├── PhotoPreviewViewController+NavigationController.swift │ │ │ │ ├── PhotoPreviewViewController+SelectBox.swift │ │ │ │ ├── PhotoPreviewViewController+Toolbar.swift │ │ │ │ ├── PhotoPreviewViewController.swift │ │ │ │ └── PhotoPreviewViewControllerProtocol.swift │ │ ├── Data │ │ │ ├── PhotoFetchData.swift │ │ │ └── PhotoPickerData.swift │ │ ├── Extension │ │ │ ├── Picker+Array.swift │ │ │ ├── Picker+ConfigExtension.swift │ │ │ ├── Picker+Int.swift │ │ │ ├── Picker+PHAsset.swift │ │ │ ├── Picker+PHAssetCollection.swift │ │ │ ├── Picker+PhotoAsset.swift │ │ │ ├── Picker+UIImageView.swift │ │ │ └── Picker+UIViewController.swift │ │ ├── Model │ │ │ ├── AssetError.swift │ │ │ ├── LivePhotoError.swift │ │ │ ├── LocalAsset │ │ │ │ ├── LocalAsset.swift │ │ │ │ └── NetworkAsset.swift │ │ │ ├── PhotoAsset │ │ │ │ ├── PhotoAsset+Codable.swift │ │ │ │ ├── PhotoAsset+Editor.swift │ │ │ │ ├── PhotoAsset+Equatable.swift │ │ │ │ ├── PhotoAsset+FileSize.swift │ │ │ │ ├── PhotoAsset+Image.swift │ │ │ │ ├── PhotoAsset+Local.swift │ │ │ │ ├── PhotoAsset+Network.swift │ │ │ │ ├── PhotoAsset+Request.swift │ │ │ │ ├── PhotoAsset+URL.swift │ │ │ │ ├── PhotoAsset+Video.swift │ │ │ │ └── PhotoAsset.swift │ │ │ ├── PhotoAssetCollection.swift │ │ │ ├── PhotoError.swift │ │ │ ├── PickerManager.swift │ │ │ └── PickerTypes.swift │ │ ├── PickerResult.swift │ │ ├── PickerView │ │ │ ├── PhotoPickerSwitchLayout.swift │ │ │ ├── PhotoPickerView+Asset.swift │ │ │ ├── PhotoPickerView+Camera.swift │ │ │ ├── PhotoPickerView+Cell.swift │ │ │ ├── PhotoPickerView+CollectionView.swift │ │ │ ├── PhotoPickerView+Editor.swift │ │ │ ├── PhotoPickerView+Function.swift │ │ │ ├── PhotoPickerView+Preview.swift │ │ │ ├── PhotoPickerView.swift │ │ │ └── PhotoPickerViewProtocol.swift │ │ ├── Protocol │ │ │ ├── Fetch │ │ │ │ ├── PhotoFetchAsset.swift │ │ │ │ └── PhotoFetchAssetCollection.swift │ │ │ ├── Transition │ │ │ │ ├── PhotoBrowserAnimationTransitioning.swift │ │ │ │ ├── PhotoBrowserInteractiveTransition.swift │ │ │ │ ├── PhotoPickerControllerAnimationTransitioning.swift │ │ │ │ └── PhotoPickerControllerInteractiveTransition.swift │ │ │ └── UI │ │ │ │ ├── AlbumList │ │ │ │ ├── PhotoAlbumController.swift │ │ │ │ └── PhotoAlbumList.swift │ │ │ │ ├── PhotoControllerEvent.swift │ │ │ │ ├── PhotoDeniedAuthorization.swift │ │ │ │ ├── PhotoList │ │ │ │ ├── PhotoPickerList.swift │ │ │ │ ├── PhotoPickerListAssets.swift │ │ │ │ ├── PhotoPickerListCollectionView.swift │ │ │ │ ├── PhotoPickerListCondition.swift │ │ │ │ ├── PhotoPickerListConfig.swift │ │ │ │ ├── PhotoPickerListFectchCell.swift │ │ │ │ ├── PhotoPickerListSwipeSelect.swift │ │ │ │ └── PhotoPickerNavigationTitle.swift │ │ │ │ ├── PhotoNavigationItem.swift │ │ │ │ ├── PhotoPickerControllerFectch.swift │ │ │ │ ├── PhotoPickerDataStatus.swift │ │ │ │ └── ToolBar │ │ │ │ └── PhotoToolBar.swift │ │ ├── Transition │ │ │ ├── PhotoBrowserAnimator.swift │ │ │ ├── PhotoBrowserInteractiveAnimator.swift │ │ │ ├── PhotoPickerControllerAnimator.swift │ │ │ ├── PhotoPickerControllerInteractiveAnimator.swift │ │ │ ├── PickerInteractiveTransition.swift │ │ │ └── PickerTransition.swift │ │ ├── Util │ │ │ ├── AssetManager+AVAsset.swift │ │ │ ├── AssetManager+AVAssetExportSession.swift │ │ │ ├── AssetManager+Asset.swift │ │ │ ├── AssetManager+Image.swift │ │ │ ├── AssetManager+ImageData.swift │ │ │ ├── AssetManager+ImageURL.swift │ │ │ ├── AssetManager+LivePhoto.swift │ │ │ ├── AssetManager+LivePhotoURL.swift │ │ │ ├── AssetManager+PlayerItem.swift │ │ │ ├── AssetManager+VideoURL.swift │ │ │ ├── AssetManager.swift │ │ │ ├── Picker+LivePhotoTools.swift │ │ │ ├── Picker+PhotoManager.swift │ │ │ └── Picker+PhotoTools.swift │ │ └── View │ │ │ ├── Album │ │ │ ├── AlbumGlassTitleView.swift │ │ │ ├── AlbumListView.swift │ │ │ ├── AlbumSectionHeaderView.swift │ │ │ ├── AlbumTitleView.swift │ │ │ └── PhotoAlbumHeaderView.swift │ │ │ ├── CaptureVideoPreviewView.swift │ │ │ ├── Cell │ │ │ ├── Album │ │ │ │ ├── AlbumViewBaseCell.swift │ │ │ │ ├── AlbumViewCell.swift │ │ │ │ ├── PhotoAlbumCollectionCell.swift │ │ │ │ ├── PhotoAlbumCollectionViewCell.swift │ │ │ │ └── PhotoAlbumViewCell.swift │ │ │ ├── PhotoLoadingView.swift │ │ │ ├── PhotoPickerBaseViewCell.swift │ │ │ ├── PhotoPickerLimitCell.swift │ │ │ ├── PhotoPickerSelectableViewCell.swift │ │ │ ├── PhotoPickerViewCell.swift │ │ │ ├── PhotoPickerWeChatViewCell.swift │ │ │ ├── PhotoPreviewViewCell.swift │ │ │ ├── PickerCameraViewCell.swift │ │ │ ├── PreviewLivePhotoGlassMarkView.swift │ │ │ ├── PreviewLivePhotoViewCell.swift │ │ │ ├── PreviewPhotoViewCell.swift │ │ │ ├── PreviewVideoControlViewCell.swift │ │ │ └── PreviewVideoViewCell.swift │ │ │ ├── DeniedAuthorizationView.swift │ │ │ ├── Kit │ │ │ ├── ArrowView.swift │ │ │ ├── EmptyView.swift │ │ │ └── TickView.swift │ │ │ ├── PhotoImageCancelItemView.swift │ │ │ ├── PhotoPickerBottomNumberView.swift │ │ │ ├── PhotoPickerFilterItemView.swift │ │ │ ├── PhotoPickerFinishItemView.swift │ │ │ ├── PhotoPreviewContentLivePhotoView.swift │ │ │ ├── PhotoPreviewContentPhotoView.swift │ │ │ ├── PhotoPreviewContentVideoView.swift │ │ │ ├── PhotoPreviewContentViewProtocol.swift │ │ │ ├── PhotoPreviewVideoView.swift │ │ │ ├── PhotoTextCancelItemView.swift │ │ │ ├── PhotoThumbnailView.swift │ │ │ └── ToolBar │ │ │ ├── PhotoPermissionPromptView.swift │ │ │ ├── PhotoPreviewListView.swift │ │ │ ├── PhotoPreviewListViewCell.swift │ │ │ ├── PhotoPreviewListViewLayout.swift │ │ │ ├── PhotoPreviewSelectedView.swift │ │ │ ├── PhotoPreviewSelectedViewCell.swift │ │ │ ├── PhotoToolBarEmptyView.swift │ │ │ ├── PhotoToolBarGlassView.swift │ │ │ └── PhotoToolBarView.swift │ └── Resources │ │ ├── HXPhotoPicker.bundle │ │ ├── am-ET.lproj │ │ │ └── Localizable.strings │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── bn-BD.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── dv.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fa.lproj │ │ │ └── Localizable.strings │ │ ├── fil.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── ha-NG.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── id.lproj │ │ │ └── Localizable.strings │ │ ├── images │ │ │ ├── hx_camera_down_back@2x.png │ │ │ ├── hx_camera_down_back@3x.png │ │ │ ├── hx_camera_overturn@2x.png │ │ │ ├── hx_camera_overturn@3x.png │ │ │ ├── hx_editor_box_normal@2x.png │ │ │ ├── hx_editor_box_normal@3x.png │ │ │ ├── hx_editor_box_selected@2x.png │ │ │ ├── hx_editor_box_selected@3x.png │ │ │ ├── hx_editor_brush_color_custom@2x.png │ │ │ ├── hx_editor_brush_color_custom@3x.png │ │ │ ├── hx_editor_brush_repeal@2x.png │ │ │ ├── hx_editor_brush_repeal@3x.png │ │ │ ├── hx_editor_canvas_draw_redo@2x.png │ │ │ ├── hx_editor_canvas_draw_redo@3x.png │ │ │ ├── hx_editor_canvas_draw_undo@2x.png │ │ │ ├── hx_editor_canvas_draw_undo@3x.png │ │ │ ├── hx_editor_canvas_draw_undo_all@2x.png │ │ │ ├── hx_editor_canvas_draw_undo_all@3x.png │ │ │ ├── hx_editor_crop_mask_list@2x.png │ │ │ ├── hx_editor_crop_mask_list@3x.png │ │ │ ├── hx_editor_crop_scale_switch_left@2x.png │ │ │ ├── hx_editor_crop_scale_switch_left@3x.png │ │ │ ├── hx_editor_crop_scale_switch_left_selected@2x.png │ │ │ ├── hx_editor_crop_scale_switch_left_selected@3x.png │ │ │ ├── hx_editor_crop_scale_switch_right@2x.png │ │ │ ├── hx_editor_crop_scale_switch_right@3x.png │ │ │ ├── hx_editor_crop_scale_switch_right_selected@2x.png │ │ │ ├── hx_editor_crop_scale_switch_right_selected@3x.png │ │ │ ├── hx_editor_filter_edit_brightness@2x.png │ │ │ ├── hx_editor_filter_edit_brightness@3x.png │ │ │ ├── hx_editor_filter_edit_contrast@2x.png │ │ │ ├── hx_editor_filter_edit_contrast@3x.png │ │ │ ├── hx_editor_filter_edit_exposure@2x.png │ │ │ ├── hx_editor_filter_edit_exposure@3x.png │ │ │ ├── hx_editor_filter_edit_highlights@2x.png │ │ │ ├── hx_editor_filter_edit_highlights@3x.png │ │ │ ├── hx_editor_filter_edit_saturation@2x.png │ │ │ ├── hx_editor_filter_edit_saturation@3x.png │ │ │ ├── hx_editor_filter_edit_shadows@2x.png │ │ │ ├── hx_editor_filter_edit_shadows@3x.png │ │ │ ├── hx_editor_filter_edit_sharpen@2x.png │ │ │ ├── hx_editor_filter_edit_sharpen@3x.png │ │ │ ├── hx_editor_filter_edit_vignette@2x.png │ │ │ ├── hx_editor_filter_edit_vignette@3x.png │ │ │ ├── hx_editor_filter_edit_warmth@2x.png │ │ │ ├── hx_editor_filter_edit_warmth@3x.png │ │ │ ├── hx_editor_mosaic_brush_image@2x.png │ │ │ ├── hx_editor_mosaic_brush_image@3x.png │ │ │ ├── hx_editor_photo_crop@2x.png │ │ │ ├── hx_editor_photo_crop@3x.png │ │ │ ├── hx_editor_photo_mirror_horizontally@2x.png │ │ │ ├── hx_editor_photo_mirror_horizontally@3x.png │ │ │ ├── hx_editor_photo_mirror_vertically@2x.png │ │ │ ├── hx_editor_photo_mirror_vertically@3x.png │ │ │ ├── hx_editor_photo_rotate_left@2x.png │ │ │ ├── hx_editor_photo_rotate_left@3x.png │ │ │ ├── hx_editor_photo_rotate_right@2x.png │ │ │ ├── hx_editor_photo_rotate_right@3x.png │ │ │ ├── hx_editor_photo_text_normal@2x.png │ │ │ ├── hx_editor_photo_text_normal@3x.png │ │ │ ├── hx_editor_photo_text_selected@2x.png │ │ │ ├── hx_editor_photo_text_selected@3x.png │ │ │ ├── hx_editor_photo_tools_emoji@2x.png │ │ │ ├── hx_editor_photo_tools_emoji@3x.png │ │ │ ├── hx_editor_photo_tools_text@2x.png │ │ │ ├── hx_editor_photo_tools_text@3x.png │ │ │ ├── hx_editor_photo_trash_close@2x.png │ │ │ ├── hx_editor_photo_trash_close@3x.png │ │ │ ├── hx_editor_photo_trash_open@2x.png │ │ │ ├── hx_editor_photo_trash_open@3x.png │ │ │ ├── hx_editor_tool_mosaic_color@2x.png │ │ │ ├── hx_editor_tool_mosaic_color@3x.png │ │ │ ├── hx_editor_tool_mosaic_normal@2x.png │ │ │ ├── hx_editor_tool_mosaic_normal@3x.png │ │ │ ├── hx_editor_tools_chartle_album@2x.png │ │ │ ├── hx_editor_tools_chartle_album@3x.png │ │ │ ├── hx_editor_tools_filter@2x.png │ │ │ ├── hx_editor_tools_filter@3x.png │ │ │ ├── hx_editor_tools_filter_change@2x.png │ │ │ ├── hx_editor_tools_filter_change@3x.png │ │ │ ├── hx_editor_tools_filter_edit@2x.png │ │ │ ├── hx_editor_tools_filter_edit@3x.png │ │ │ ├── hx_editor_tools_filter_reset@2x.png │ │ │ ├── hx_editor_tools_filter_reset@3x.png │ │ │ ├── hx_editor_tools_graffiti@2x.png │ │ │ ├── hx_editor_tools_graffiti@3x.png │ │ │ ├── hx_editor_tools_mosaic@2x.png │ │ │ ├── hx_editor_tools_mosaic@3x.png │ │ │ ├── hx_editor_tools_music@2x.png │ │ │ ├── hx_editor_tools_music@3x.png │ │ │ ├── hx_editor_tools_play@2x.png │ │ │ ├── hx_editor_tools_play@3x.png │ │ │ ├── hx_editor_video_control_arrow_left@2x.png │ │ │ ├── hx_editor_video_control_arrow_left@3x.png │ │ │ ├── hx_editor_video_control_arrow_right@2x.png │ │ │ ├── hx_editor_video_control_arrow_right@3x.png │ │ │ ├── hx_editor_video_control_pause@2x.png │ │ │ ├── hx_editor_video_control_pause@3x.png │ │ │ ├── hx_editor_video_control_play@2x.png │ │ │ ├── hx_editor_video_control_play@3x.png │ │ │ ├── hx_editor_video_music_search@2x.png │ │ │ ├── hx_editor_video_music_search@3x.png │ │ │ ├── hx_editor_video_music_volume@2x.png │ │ │ ├── hx_editor_video_music_volume@3x.png │ │ │ ├── hx_editor_view_sticker_item_delete@2x.png │ │ │ ├── hx_editor_view_sticker_item_delete@3x.png │ │ │ ├── hx_editor_view_sticker_item_rotate@2x.png │ │ │ ├── hx_editor_view_sticker_item_rotate@3x.png │ │ │ ├── hx_editor_view_sticker_item_scale@2x.png │ │ │ ├── hx_editor_view_sticker_item_scale@3x.png │ │ │ ├── hx_photo_edit_pull_down@2x.png │ │ │ ├── hx_photo_edit_pull_down@3x.png │ │ │ ├── hx_photo_list_filter_any@2x.png │ │ │ ├── hx_photo_list_filter_any@3x.png │ │ │ ├── hx_photo_list_filter_edited@2x.png │ │ │ ├── hx_photo_list_filter_edited@3x.png │ │ │ ├── hx_photo_list_filter_gif@2x.png │ │ │ ├── hx_photo_list_filter_gif@3x.png │ │ │ ├── hx_photo_list_filter_livePhoto@2x.png │ │ │ ├── hx_photo_list_filter_livePhoto@3x.png │ │ │ ├── hx_photo_list_filter_photo@2x.png │ │ │ ├── hx_photo_list_filter_photo@3x.png │ │ │ ├── hx_photo_list_filter_video@2x.png │ │ │ ├── hx_photo_list_filter_video@3x.png │ │ │ ├── hx_picker_HDR@2x.png │ │ │ ├── hx_picker_HDR@3x.png │ │ │ ├── hx_picker_HDR_disable@2x.png │ │ │ ├── hx_picker_HDR_disable@3x.png │ │ │ ├── hx_picker_album_empty@2x.png │ │ │ ├── hx_picker_album_empty@3x.png │ │ │ ├── hx_picker_cell_livephoto_icon@2x.png │ │ │ ├── hx_picker_cell_livephoto_icon@3x.png │ │ │ ├── hx_picker_cell_photo_edit_icon@2x.png │ │ │ ├── hx_picker_cell_photo_edit_icon@3x.png │ │ │ ├── hx_picker_cell_video_edit_icon@2x.png │ │ │ ├── hx_picker_cell_video_edit_icon@3x.png │ │ │ ├── hx_picker_cell_video_icon@2x.png │ │ │ ├── hx_picker_cell_video_icon@3x.png │ │ │ ├── hx_picker_cell_video_play@2x.png │ │ │ ├── hx_picker_cell_video_play@3x.png │ │ │ ├── hx_picker_livePhoto@2x.png │ │ │ ├── hx_picker_livePhoto@3x.png │ │ │ ├── hx_picker_livePhoto_disable@2x.png │ │ │ ├── hx_picker_livePhoto_disable@3x.png │ │ │ ├── hx_picker_livePhoto_muted@2x.png │ │ │ ├── hx_picker_livePhoto_muted@3x.png │ │ │ ├── hx_picker_livePhoto_muted_disable@2x.png │ │ │ ├── hx_picker_livePhoto_muted_disable@3x.png │ │ │ ├── hx_picker_notAuthorized_close@2x.png │ │ │ ├── hx_picker_notAuthorized_close@3x.png │ │ │ ├── hx_picker_notAuthorized_close_dark@2x.png │ │ │ ├── hx_picker_notAuthorized_close_dark@3x.png │ │ │ ├── hx_picker_photoList_photograph@2x.png │ │ │ ├── hx_picker_photoList_photograph@3x.png │ │ │ ├── hx_picker_photoList_photograph_white@2x.png │ │ │ ├── hx_picker_photoList_photograph_white@3x.png │ │ │ ├── hx_picker_photo_icloud_mark@2x.png │ │ │ ├── hx_picker_photo_icloud_mark@3x.png │ │ │ ├── hx_picker_photolist_back@2x.png │ │ │ ├── hx_picker_photolist_back@3x.png │ │ │ ├── hx_picker_photolist_bottom_prompt@2x.png │ │ │ ├── hx_picker_photolist_bottom_prompt@3x.png │ │ │ ├── hx_picker_photolist_bottom_prompt_arrow@2x.png │ │ │ ├── hx_picker_photolist_bottom_prompt_arrow@3x.png │ │ │ ├── hx_picker_photolist_cancel@2x.png │ │ │ ├── hx_picker_photolist_cancel@3x.png │ │ │ ├── hx_picker_photolist_nav_filter_normal@2x.png │ │ │ ├── hx_picker_photolist_nav_filter_normal@3x.png │ │ │ ├── hx_picker_photolist_nav_filter_selected@2x.png │ │ │ ├── hx_picker_photolist_nav_filter_selected@3x.png │ │ │ ├── hx_picker_toolbar_select_cell_delete@2x.png │ │ │ └── hx_picker_toolbar_select_cell_delete@3x.png │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ │ └── Localizable.strings │ │ ├── ms.lproj │ │ │ └── Localizable.strings │ │ ├── musics │ │ │ └── 天外来物 │ │ ├── ne.lproj │ │ │ └── Localizable.strings │ │ ├── pa.lproj │ │ │ └── Localizable.strings │ │ ├── pt.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── si.lproj │ │ │ └── Localizable.strings │ │ ├── sw.lproj │ │ │ └── Localizable.strings │ │ ├── syc.lproj │ │ │ └── Localizable.strings │ │ ├── th.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── ur.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ │ └── Localizable.strings │ │ └── PrivacyInfo.xcprivacy ├── ImageView │ ├── GIFImageView.swift │ ├── KFImageView.swift │ └── SDImageView.swift └── Info.plist ├── Swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── hx_compose_delete.imageset │ │ ├── Contents.json │ │ └── hx_compose_delete@2x.png │ ├── hx_picker_add_img.imageset │ │ ├── Contents.json │ │ └── hx_picker_add_img@2x.png │ ├── hx_picker_cell_video_play.imageset │ │ ├── Contents.json │ │ └── hx_picker_cell_video_play@2x.png │ ├── hx_sticker_cover.imageset │ │ ├── Contents.json │ │ └── hx_sticker_cover@2x.png │ └── select_photo.imageset │ │ ├── Contents.json │ │ └── select_photo@2x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Classes │ ├── Controller │ │ ├── AvatarPickerConfigurationViewController.swift │ │ ├── CustomPickerCellViewController.swift │ │ ├── EditorConfigurationViewController.swift │ │ ├── HomeViewController.swift │ │ ├── PhotoBrowserViewController.swift │ │ ├── PickerColorConfigurationViewController.swift │ │ ├── PickerConfigurationViewController.swift │ │ ├── PickerResultViewController.swift │ │ ├── PickerResultViewController.xib │ │ ├── TestEditorViewController.swift │ │ ├── WeChatMometViewController.swift │ │ ├── WeChatViewController.swift │ │ └── WindowPickerViewController.swift │ ├── Extension │ │ ├── Core+UIColor.swift │ │ ├── Extension.swift │ │ ├── RowTypeRule.swift │ │ ├── String+Extension.swift │ │ ├── UIDevice+Extension.swift │ │ ├── UIFont+Extension.swift │ │ └── UIImage+Extension.swift │ ├── Model │ │ └── Tools.swift │ └── View │ │ ├── ConfigurationViewCell.swift │ │ └── CustomPickerCellView.swift ├── HXPHPickerExample-Bridging-Header.h ├── Images │ ├── hx_sticker_chongya.png │ ├── hx_sticker_haoxinqing.png │ ├── hx_sticker_housailei.png │ ├── hx_sticker_jintianfenkeai.png │ ├── hx_sticker_keaibiaoq.png │ ├── hx_sticker_kehaixing.png │ ├── hx_sticker_saihong.png │ ├── hx_sticker_wow.png │ ├── hx_sticker_woxiangfazipai.png │ ├── hx_sticker_xiaochuzhujiao.png │ ├── hx_sticker_yuanqimanman.png │ ├── hx_sticker_yuanqishaonv.png │ ├── hx_sticker_zaizaijia.png │ ├── livephoto_image.jpeg │ ├── love.png │ ├── love_text.png │ ├── portrait.png │ ├── qiy.png │ ├── stars.png │ └── text.png ├── Info.plist ├── Music │ ├── 世间美好与你环环相扣 │ └── 世间美好与你环环相扣.mp3 ├── Reachability.swift ├── Resources │ └── custom.lproj │ │ └── Localizable.strings └── ar.lproj │ └── LaunchScreen.strings ├── SwiftUI ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── ConfigView.swift ├── ContentView.swift ├── PhotoBrowser.swift ├── PhotoPickerView.swift ├── PhotoView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── SwiftUIExampleApp.swift └── tmp.xcconfig /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/.travis.yml -------------------------------------------------------------------------------- /Documentation/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Documentation/README_EN.md -------------------------------------------------------------------------------- /Documentation/RELEASE_NOTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Documentation/RELEASE_NOTE.md -------------------------------------------------------------------------------- /Documentation/RELEASE_NOTE_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Documentation/RELEASE_NOTE_CN.md -------------------------------------------------------------------------------- /HXPhotoPicker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPicker.podspec -------------------------------------------------------------------------------- /HXPhotoPickerExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPickerExample.entitlements -------------------------------------------------------------------------------- /HXPhotoPickerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPickerExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HXPhotoPickerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPickerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HXPhotoPickerExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPickerExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HXPhotoPickerExample.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPickerExample.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /HXPhotoPickerExample.xcodeproj/xcshareddata/xcschemes/HXPhotoPicker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPickerExample.xcodeproj/xcshareddata/xcschemes/HXPhotoPicker.xcscheme -------------------------------------------------------------------------------- /HXPhotoPickerExample.xcodeproj/xcshareddata/xcschemes/HXPhotoPickerExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPickerExample.xcodeproj/xcshareddata/xcschemes/HXPhotoPickerExample.xcscheme -------------------------------------------------------------------------------- /HXPhotoPickerExample.xcodeproj/xcshareddata/xcschemes/SwiftUIExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPickerExample.xcodeproj/xcshareddata/xcschemes/SwiftUIExample.xcscheme -------------------------------------------------------------------------------- /HXPhotoPickerExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPickerExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HXPhotoPickerExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPickerExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HXPhotoPickerExample.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/HXPhotoPickerExample.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/LICENSE -------------------------------------------------------------------------------- /Objective-C/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/AppDelegate.h -------------------------------------------------------------------------------- /Objective-C/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/AppDelegate.m -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/AppIcon.appiconset/icon_all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/AppIcon.appiconset/icon_all.jpg -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/camera_overturn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/camera_overturn.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/camera_overturn.imageset/camera_overturn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/camera_overturn.imageset/camera_overturn@2x.png -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/hotweibo_back_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/hotweibo_back_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/hotweibo_back_icon.imageset/hotweibo_back_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/hotweibo_back_icon.imageset/hotweibo_back_icon@2x.png -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/hx_photo_edit_trash_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/hx_photo_edit_trash_close.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/hx_photo_edit_trash_close.imageset/hx_photo_edit_trash_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/hx_photo_edit_trash_close.imageset/hx_photo_edit_trash_close@2x.png -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/hx_photo_edit_trash_open.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/hx_photo_edit_trash_open.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/hx_photo_edit_trash_open.imageset/hx_photo_edit_trash_open@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/hx_photo_edit_trash_open.imageset/hx_photo_edit_trash_open@2x.png -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/wx_bg_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/wx_bg_image.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/wx_bg_image.imageset/wx_bg_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/wx_bg_image.imageset/wx_bg_image@2x.png -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/wx_head_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/wx_head_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/Assets.xcassets/wx_head_icon.imageset/wx_head_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Assets.xcassets/wx_head_icon.imageset/wx_head_icon@2x.png -------------------------------------------------------------------------------- /Objective-C/Classes/OCPickerExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Classes/OCPickerExampleViewController.h -------------------------------------------------------------------------------- /Objective-C/Classes/OCPickerExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Classes/OCPickerExampleViewController.m -------------------------------------------------------------------------------- /Objective-C/Classes/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Classes/ViewController.h -------------------------------------------------------------------------------- /Objective-C/Classes/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Classes/ViewController.m -------------------------------------------------------------------------------- /Objective-C/Classes/assets/IMG_0168.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Classes/assets/IMG_0168.GIF -------------------------------------------------------------------------------- /Objective-C/Classes/assets/c81.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Classes/assets/c81.mp4 -------------------------------------------------------------------------------- /Objective-C/HXPhotoPickerExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/HXPhotoPickerExample-Bridging-Header.h -------------------------------------------------------------------------------- /Objective-C/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/Info.plist -------------------------------------------------------------------------------- /Objective-C/SwiftPhotoPicker/SwiftAssetURLResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/SwiftPhotoPicker/SwiftAssetURLResult.swift -------------------------------------------------------------------------------- /Objective-C/SwiftPhotoPicker/SwiftPhotoAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/SwiftPhotoPicker/SwiftPhotoAsset.swift -------------------------------------------------------------------------------- /Objective-C/SwiftPhotoPicker/SwiftPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/SwiftPhotoPicker/SwiftPicker.swift -------------------------------------------------------------------------------- /Objective-C/SwiftPhotoPicker/SwiftPickerConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/SwiftPhotoPicker/SwiftPickerConfiguration.swift -------------------------------------------------------------------------------- /Objective-C/SwiftPhotoPicker/SwiftPickerResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/SwiftPhotoPicker/SwiftPickerResult.swift -------------------------------------------------------------------------------- /Objective-C/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Objective-C/main.m -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Package.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Local Podspecs/HXPhotoPicker.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Local Podspecs/HXPhotoPicker.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/HXPhotoPicker/HXPhotoPicker.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-HXPhotoPickerExample/Pods-HXPhotoPickerExample.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Pods/Target Support Files/Pods-SwiftUIExample/Pods-SwiftUIExample.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/README.md -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera+Location/CameraViewController+Location.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera+Location/CameraViewController+Location.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Config/CameraConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Config/CameraConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Controller/CameraController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Controller/CameraController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Controller/CameraControllerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Controller/CameraControllerProtocol.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Controller/CameraManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Controller/CameraManager.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Controller/CameraResultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Controller/CameraResultViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Controller/CameraViewController+BottomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Controller/CameraViewController+BottomView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Controller/CameraViewController+Editor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Controller/CameraViewController+Editor.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Controller/CameraViewController+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Controller/CameraViewController+Preview.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Controller/CameraViewController+Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Controller/CameraViewController+Result.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Controller/CameraViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Controller/CameraViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Model/DeviceOrientationHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Model/DeviceOrientationHelper.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/Util/Camera+PhotoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/Util/Camera+PhotoTools.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/View/CameraBottomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/View/CameraBottomView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/View/CameraFocusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/View/CameraFocusView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Camera/View/CameraNormalPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Camera/View/CameraNormalPreviewView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Config/HXImageViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Config/HXImageViewProtocol.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Config/ImageViewConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Config/ImageViewConfig.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Config/PhotoDebugLogsConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Config/PhotoDebugLogsConfig.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Config/PhotoHUDConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Config/PhotoHUDConfig.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Config/PhotoHUDProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Config/PhotoHUDProtocol.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Config/SelectBoxConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Config/SelectBoxConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Controller/HXBaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Controller/HXBaseViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+AVAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+AVAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+Bundle.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+CALayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+CALayer.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+CGFloat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+CGFloat.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+Data.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+Dictionary.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+FileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+FileManager.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+LayerRTLFrame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+LayerRTLFrame.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+NSObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+NSObject.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+String.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UIApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UIApplication.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UIBarButtonItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UIBarButtonItem.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UICollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UICollectionView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UIColor.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UIDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UIDevice.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UIFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UIFont.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UIImage.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UIImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UIImageView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UILabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UILabel.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UITableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UITableView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UIView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UIViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+UIViewRTLFrame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+UIViewRTLFrame.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Extension/Core+URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Extension/Core+URL.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/HXPhotoPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/HXPhotoPicker.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Model/AppearanceStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Model/AppearanceStyle.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Model/CustomLanguage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Model/CustomLanguage.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Model/ExportPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Model/ExportPreset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Model/HXLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Model/HXLog.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Model/ImageContentType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Model/ImageContentType.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Model/IndicatorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Model/IndicatorType.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Model/LanguageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Model/LanguageType.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Model/PhotoPanGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Model/PhotoPanGestureRecognizer.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Util/AssetPermissionsUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Util/AssetPermissionsUtil.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Util/AssetSaveUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Util/AssetSaveUtil.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Util/ImageResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Util/ImageResource.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Util/PhotoManager+Download.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Util/PhotoManager+Download.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Util/PhotoManager+Language.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Util/PhotoManager+Language.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Util/PhotoManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Util/PhotoManager.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Util/PhotoTools+Alert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Util/PhotoTools+Alert.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Util/PhotoTools+Camera.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Util/PhotoTools+Camera.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Util/PhotoTools+File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Util/PhotoTools+File.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Util/PhotoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Util/PhotoTools.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/Util/TextManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/Util/TextManager.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/ExpandButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/ExpandButton.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/HXCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/HXCollectionView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/HXTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/HXTableView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/ProgressHUD/ProgressCircleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/ProgressHUD/ProgressCircleView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/ProgressHUD/ProgressCricleJoinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/ProgressHUD/ProgressCricleJoinView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/ProgressHUD/ProgressHUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/ProgressHUD/ProgressHUD.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/ProgressHUD/ProgressImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/ProgressHUD/ProgressImageView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/ProgressHUD/ProgressIndefiniteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/ProgressHUD/ProgressIndefiniteView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/SelectBoxView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/SelectBoxView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/VideoPlayer/PlayButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/VideoPlayer/PlayButton.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/VideoPlayer/SliderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/VideoPlayer/SliderView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/VideoPlayer/VideoPlaySliderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/VideoPlayer/VideoPlaySliderView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Core/View/VideoPlayer/VideoPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Core/View/VideoPlayer/VideoPlayerView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/Extension/EditorView+AVAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/Extension/EditorView+AVAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/Extension/EditorView+CGFloat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/Extension/EditorView+CGFloat.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/Extension/EditorView+CIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/Extension/EditorView+CIImage.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/Extension/EditorView+UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/Extension/EditorView+UIImage.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/Extension/EditorView+UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/Extension/EditorView+UIView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/ImageEditedResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/ImageEditedResult.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/Model/EditorModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/Model/EditorModels.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/Model/EditorTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/Model/EditorTypes.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/Model/EditorVideoCompositor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/Model/EditorVideoCompositor.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/Util/EditorDrawTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/Util/EditorDrawTool.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/Util/EditorVideoTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/Util/EditorVideoTool.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/Util/EditorView+PhotoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/Util/EditorView+PhotoTools.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/VideoEditedResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/VideoEditedResult.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+ContentView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+Croper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+Croper.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+Edit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+Edit.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+FrameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+FrameView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+Mirror.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+Mirror.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+Rotate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+Rotate.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+ScreenRotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+ScreenRotation.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+ScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+ScrollView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+Video.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView+Video.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAdjusterViewProtocol.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorAudioAnimationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorAudioAnimationView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorCanvasView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorCanvasView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorContentView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorControlView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorDrawView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorDrawView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorFrameView+Control.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorFrameView+Control.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorFrameView+VideoPlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorFrameView+VideoPlay.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorFrameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorFrameView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorMaskView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorMaskView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorMosaicView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorMosaicView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorStickersContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorStickersContentView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorStickersItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorStickersItemView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorStickersTrashView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorStickersTrashView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorStickersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorStickersView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorVideoPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorVideoPlayerView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorView+AdjusterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorView+AdjusterView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorView+GestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorView+GestureRecognizer.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorView+Public.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorView+Public.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorView+ScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorView+ScrollView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor+View/View/EditorViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor+View/View/EditorViewProtocol.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Config/EditorConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Config/EditorConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorChartletViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorChartletViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorMaskListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorMaskListViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorMusicListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorMusicListViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorStickerTextViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorStickerTextViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Action.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Await.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Await.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Brush.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Brush.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Chartlet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Chartlet.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+EditorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+EditorView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Filters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Filters.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+LoadAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+LoadAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Mosaic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Mosaic.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Music.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Music.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Processing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Processing.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Ratio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Ratio.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+Text.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+ToolsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+ToolsView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+UINavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+UINavigationController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController+VideoControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController+VideoControl.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Controller/EditorViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Controller/EditorViewControllerDelegate.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/EditedResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/EditedResult.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/EditorAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/EditorAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Extension/Editor+CIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Extension/Editor+CIImage.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Model/EditorChartlet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Model/EditorChartlet.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Model/EditorPlayAuido.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Model/EditorPlayAuido.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Model/EditorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Model/EditorType.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Model/PhotoEditorFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Model/PhotoEditorFilter.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Model/VideoEditorMusic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Model/VideoEditorMusic.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Protocol/EditorChartletListProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Protocol/EditorChartletListProtocol.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Protocol/EditorMaskListProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Protocol/EditorMaskListProtocol.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Transition/EditorTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Transition/EditorTransition.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/Util/Editor+PhotoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/Util/Editor+PhotoTools.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Brush/EditorBrushBlockView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Brush/EditorBrushBlockView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Brush/EditorBrushColorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Brush/EditorBrushColorView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Brush/EditorBrushSizeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Brush/EditorBrushSizeView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Chartlet/EditorChartletPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Chartlet/EditorChartletPreviewView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Chartlet/EditorChartletViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Chartlet/EditorChartletViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Chartlet/EditorChartletViewListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Chartlet/EditorChartletViewListCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/CropSize/EditorMaskListViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/CropSize/EditorMaskListViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/CropSize/EditorRatioToolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/CropSize/EditorRatioToolView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/CropSize/EditorRatioToolViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/CropSize/EditorRatioToolViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/CropSize/EditorScaleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/CropSize/EditorScaleView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/EditorCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/EditorCollectionView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/EditorToolsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/EditorToolsView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Filter/EditorFilterEditView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Filter/EditorFilterEditView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Filter/EditorFilterParameterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Filter/EditorFilterParameterView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Filter/EditorFiltersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Filter/EditorFiltersView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Mosaic/EditorMosaicToolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Mosaic/EditorMosaicToolView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Text/EditorStickerTextView+CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Text/EditorStickerTextView+CollectionView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Text/EditorStickerTextView+Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Text/EditorStickerTextView+Delegate.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Text/EditorStickerTextView+Draw.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Text/EditorStickerTextView+Draw.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Text/EditorStickerTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Text/EditorStickerTextView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Video/EditorMusicLyricViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Video/EditorMusicLyricViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Video/EditorMusicView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Video/EditorMusicView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Video/EditorMusicViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Video/EditorMusicViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Video/EditorVideoControlMaskView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Video/EditorVideoControlMaskView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Video/EditorVideoControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Video/EditorVideoControlView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Video/EditorVideoControlViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Video/EditorVideoControlViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Editor/View/Video/EditorVolumeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Editor/View/Video/EditorVolumeView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/AssetResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/AssetResult.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/AssetURLResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/AssetURLResult.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/AlbumListConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/AlbumListConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/AlbumTitleViewConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/AlbumTitleViewConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/ArrowViewConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/ArrowViewConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/EmptyViewConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/EmptyViewConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/NotAuthorizedConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/NotAuthorizedConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/PhotoAlbumControllerConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/PhotoAlbumControllerConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/PhotoListCellConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/PhotoListCellConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/PhotoListConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/PhotoListConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/PickerBottomViewConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/PickerBottomViewConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/PickerConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/PickerConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/PreviewViewConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/PreviewViewConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Config/SystemCameraConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Config/SystemCameraConfiguration.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Album/AlbumViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Album/AlbumViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Album/PhotoAlbumViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Album/PhotoAlbumViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Album/PhotoMyAlbumViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Album/PhotoMyAlbumViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Browser/PhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Browser/PhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoBaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoBaseViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerController+Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerController+Internal.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerController+PHPhotoLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerController+PHPhotoLibrary.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerController+PickerData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerController+PickerData.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerController+Transitioning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerController+Transitioning.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerControllerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoPickerControllerProtocol.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoSplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Photo/PhotoSplitViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerFilterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerFilterViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerListViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerPageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerPageViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+AlbumView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+AlbumView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+Camera.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+Camera.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+Editor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+Editor.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+FetchAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+FetchAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+PhotoList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+PhotoList.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+Preview.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+Toolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController+Toolbar.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/PhotoPickerViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Picker/SystemCameraViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Picker/SystemCameraViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPeekViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPeekViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewController+CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewController+CollectionView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewController+Editor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewController+Editor.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewController+SelectBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewController+SelectBox.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewController+Toolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewController+Toolbar.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewControllerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Controller/Preview/PhotoPreviewViewControllerProtocol.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Data/PhotoFetchData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Data/PhotoFetchData.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Data/PhotoPickerData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Data/PhotoPickerData.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Extension/Picker+Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Extension/Picker+Array.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Extension/Picker+ConfigExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Extension/Picker+ConfigExtension.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Extension/Picker+Int.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Extension/Picker+Int.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Extension/Picker+PHAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Extension/Picker+PHAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Extension/Picker+PHAssetCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Extension/Picker+PHAssetCollection.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Extension/Picker+PhotoAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Extension/Picker+PhotoAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Extension/Picker+UIImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Extension/Picker+UIImageView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Extension/Picker+UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Extension/Picker+UIViewController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/AssetError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/AssetError.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/LivePhotoError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/LivePhotoError.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/LocalAsset/LocalAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/LocalAsset/LocalAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/LocalAsset/NetworkAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/LocalAsset/NetworkAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Codable.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Editor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Editor.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Equatable.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+FileSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+FileSize.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Image.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Local.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Local.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Network.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Network.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Request.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+URL.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Video.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset+Video.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAsset/PhotoAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoAssetCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoAssetCollection.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PhotoError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PhotoError.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PickerManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PickerManager.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Model/PickerTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Model/PickerTypes.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/PickerResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/PickerResult.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerSwitchLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerSwitchLayout.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Asset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Asset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Camera.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Camera.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Cell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+CollectionView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Editor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Editor.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Function.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Function.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView+Preview.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/PickerView/PhotoPickerViewProtocol.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/Fetch/PhotoFetchAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/Fetch/PhotoFetchAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/Fetch/PhotoFetchAssetCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/Fetch/PhotoFetchAssetCollection.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/Transition/PhotoBrowserAnimationTransitioning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/Transition/PhotoBrowserAnimationTransitioning.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/Transition/PhotoBrowserInteractiveTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/Transition/PhotoBrowserInteractiveTransition.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/Transition/PhotoPickerControllerAnimationTransitioning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/Transition/PhotoPickerControllerAnimationTransitioning.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/Transition/PhotoPickerControllerInteractiveTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/Transition/PhotoPickerControllerInteractiveTransition.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/AlbumList/PhotoAlbumController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/AlbumList/PhotoAlbumController.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/AlbumList/PhotoAlbumList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/AlbumList/PhotoAlbumList.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoControllerEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoControllerEvent.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoDeniedAuthorization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoDeniedAuthorization.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerList.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListAssets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListAssets.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListCollectionView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListCondition.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListConfig.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListFectchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListFectchCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListSwipeSelect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerListSwipeSelect.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerNavigationTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoList/PhotoPickerNavigationTitle.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoNavigationItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoNavigationItem.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoPickerControllerFectch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoPickerControllerFectch.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoPickerDataStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/PhotoPickerDataStatus.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Protocol/UI/ToolBar/PhotoToolBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Protocol/UI/ToolBar/PhotoToolBar.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Transition/PhotoBrowserAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Transition/PhotoBrowserAnimator.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Transition/PhotoBrowserInteractiveAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Transition/PhotoBrowserInteractiveAnimator.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Transition/PhotoPickerControllerAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Transition/PhotoPickerControllerAnimator.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Transition/PhotoPickerControllerInteractiveAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Transition/PhotoPickerControllerInteractiveAnimator.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Transition/PickerInteractiveTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Transition/PickerInteractiveTransition.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Transition/PickerTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Transition/PickerTransition.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/AssetManager+AVAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/AssetManager+AVAsset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/AssetManager+AVAssetExportSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/AssetManager+AVAssetExportSession.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/AssetManager+Asset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/AssetManager+Asset.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/AssetManager+Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/AssetManager+Image.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/AssetManager+ImageData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/AssetManager+ImageData.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/AssetManager+ImageURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/AssetManager+ImageURL.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/AssetManager+LivePhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/AssetManager+LivePhoto.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/AssetManager+LivePhotoURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/AssetManager+LivePhotoURL.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/AssetManager+PlayerItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/AssetManager+PlayerItem.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/AssetManager+VideoURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/AssetManager+VideoURL.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/AssetManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/AssetManager.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/Picker+LivePhotoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/Picker+LivePhotoTools.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/Picker+PhotoManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/Picker+PhotoManager.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/Util/Picker+PhotoTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/Util/Picker+PhotoTools.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Album/AlbumGlassTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Album/AlbumGlassTitleView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Album/AlbumListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Album/AlbumListView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Album/AlbumSectionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Album/AlbumSectionHeaderView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Album/AlbumTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Album/AlbumTitleView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Album/PhotoAlbumHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Album/PhotoAlbumHeaderView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/CaptureVideoPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/CaptureVideoPreviewView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/Album/AlbumViewBaseCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/Album/AlbumViewBaseCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/Album/AlbumViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/Album/AlbumViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/Album/PhotoAlbumCollectionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/Album/PhotoAlbumCollectionCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/Album/PhotoAlbumCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/Album/PhotoAlbumCollectionViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/Album/PhotoAlbumViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/Album/PhotoAlbumViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PhotoLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PhotoLoadingView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PhotoPickerBaseViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PhotoPickerBaseViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PhotoPickerLimitCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PhotoPickerLimitCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PhotoPickerSelectableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PhotoPickerSelectableViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PhotoPickerViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PhotoPickerViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PhotoPickerWeChatViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PhotoPickerWeChatViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PhotoPreviewViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PhotoPreviewViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PickerCameraViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PickerCameraViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PreviewLivePhotoGlassMarkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PreviewLivePhotoGlassMarkView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PreviewLivePhotoViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PreviewLivePhotoViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PreviewPhotoViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PreviewPhotoViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PreviewVideoControlViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PreviewVideoControlViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Cell/PreviewVideoViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Cell/PreviewVideoViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/DeniedAuthorizationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/DeniedAuthorizationView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Kit/ArrowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Kit/ArrowView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Kit/EmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Kit/EmptyView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/Kit/TickView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/Kit/TickView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/PhotoImageCancelItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/PhotoImageCancelItemView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/PhotoPickerBottomNumberView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/PhotoPickerBottomNumberView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/PhotoPickerFilterItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/PhotoPickerFilterItemView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/PhotoPickerFinishItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/PhotoPickerFinishItemView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/PhotoPreviewContentLivePhotoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/PhotoPreviewContentLivePhotoView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/PhotoPreviewContentPhotoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/PhotoPreviewContentPhotoView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/PhotoPreviewContentVideoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/PhotoPreviewContentVideoView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/PhotoPreviewContentViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/PhotoPreviewContentViewProtocol.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/PhotoPreviewVideoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/PhotoPreviewVideoView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/PhotoTextCancelItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/PhotoTextCancelItemView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/PhotoThumbnailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/PhotoThumbnailView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPermissionPromptView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPermissionPromptView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPreviewListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPreviewListView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPreviewListViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPreviewListViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPreviewListViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPreviewListViewLayout.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPreviewSelectedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPreviewSelectedView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPreviewSelectedViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoPreviewSelectedViewCell.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoToolBarEmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoToolBarEmptyView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoToolBarGlassView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoToolBarGlassView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoToolBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Picker/View/ToolBar/PhotoToolBarView.swift -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/am-ET.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/am-ET.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/bn-BD.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/bn-BD.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/dv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/dv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/fa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/fa.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/fil.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/fil.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ha-NG.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ha-NG.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_camera_down_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_camera_down_back@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_camera_down_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_camera_down_back@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_camera_overturn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_camera_overturn@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_camera_overturn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_camera_overturn@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_box_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_box_normal@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_box_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_box_normal@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_box_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_box_selected@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_box_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_box_selected@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_brush_color_custom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_brush_color_custom@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_brush_color_custom@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_brush_color_custom@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_brush_repeal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_brush_repeal@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_brush_repeal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_brush_repeal@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_redo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_redo@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_redo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_redo@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_undo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_undo@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_undo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_undo@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_undo_all@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_undo_all@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_undo_all@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_canvas_draw_undo_all@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_crop_mask_list@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_crop_mask_list@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_crop_mask_list@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_crop_mask_list@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_contrast@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_contrast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_contrast@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_exposure@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_exposure@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_shadows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_shadows@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_shadows@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_shadows@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_sharpen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_sharpen@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_sharpen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_sharpen@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_warmth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_warmth@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_warmth@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_filter_edit_warmth@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_mosaic_brush_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_mosaic_brush_image@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_mosaic_brush_image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_mosaic_brush_image@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_crop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_crop@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_crop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_crop@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_rotate_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_rotate_left@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_rotate_left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_rotate_left@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_rotate_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_rotate_right@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_rotate_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_rotate_right@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_text_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_text_normal@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_text_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_text_normal@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_text_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_text_selected@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_text_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_text_selected@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_tools_emoji@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_tools_emoji@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_tools_emoji@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_tools_emoji@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_tools_text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_tools_text@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_tools_text@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_tools_text@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_trash_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_trash_close@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_trash_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_trash_close@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_trash_open@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_trash_open@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_trash_open@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_photo_trash_open@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tool_mosaic_color@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tool_mosaic_color@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tool_mosaic_color@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tool_mosaic_color@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tool_mosaic_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tool_mosaic_normal@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tool_mosaic_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tool_mosaic_normal@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_chartle_album@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_chartle_album@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_chartle_album@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_chartle_album@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_change@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_change@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_change@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_change@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_edit@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_edit@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_reset@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_reset@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_reset@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_filter_reset@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_graffiti@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_graffiti@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_graffiti@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_graffiti@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_mosaic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_mosaic@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_mosaic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_mosaic@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_music@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_music@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_music@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_music@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_play@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_tools_play@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_control_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_control_pause@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_control_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_control_pause@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_control_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_control_play@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_control_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_control_play@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_music_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_music_search@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_music_search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_music_search@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_music_volume@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_music_volume@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_music_volume@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_editor_video_music_volume@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_edit_pull_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_edit_pull_down@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_edit_pull_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_edit_pull_down@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_any@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_any@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_any@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_any@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_edited@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_edited@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_edited@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_edited@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_gif@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_gif@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_gif@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_gif@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_photo@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_photo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_photo@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_video@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_photo_list_filter_video@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_HDR@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_HDR@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_HDR@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_HDR@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_HDR_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_HDR_disable@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_HDR_disable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_HDR_disable@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_album_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_album_empty@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_album_empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_album_empty@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_livephoto_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_livephoto_icon@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_livephoto_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_livephoto_icon@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_video_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_video_icon@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_video_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_video_icon@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_video_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_video_play@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_video_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_cell_video_play@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto_disable@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto_disable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto_disable@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto_muted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto_muted@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto_muted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_livePhoto_muted@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_notAuthorized_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_notAuthorized_close@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_notAuthorized_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_notAuthorized_close@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photo_icloud_mark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photo_icloud_mark@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photo_icloud_mark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photo_icloud_mark@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photolist_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photolist_back@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photolist_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photolist_back@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photolist_cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photolist_cancel@2x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photolist_cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/images/hx_picker_photolist_cancel@3x.png -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/musics/天外来物: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/musics/天外来物 -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ne.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ne.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/pa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/pa.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/si.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/si.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/sw.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/sw.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/syc.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/syc.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ur.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/ur.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/HXPhotoPicker.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/HXPhotoPicker/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/HXPhotoPicker/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Sources/ImageView/GIFImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/ImageView/GIFImageView.swift -------------------------------------------------------------------------------- /Sources/ImageView/KFImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/ImageView/KFImageView.swift -------------------------------------------------------------------------------- /Sources/ImageView/SDImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/ImageView/SDImageView.swift -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Sources/Info.plist -------------------------------------------------------------------------------- /Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/AppDelegate.swift -------------------------------------------------------------------------------- /Swift/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Swift/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Swift/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Swift/Assets.xcassets/hx_compose_delete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/hx_compose_delete.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/Assets.xcassets/hx_compose_delete.imageset/hx_compose_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/hx_compose_delete.imageset/hx_compose_delete@2x.png -------------------------------------------------------------------------------- /Swift/Assets.xcassets/hx_picker_add_img.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/hx_picker_add_img.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/Assets.xcassets/hx_picker_add_img.imageset/hx_picker_add_img@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/hx_picker_add_img.imageset/hx_picker_add_img@2x.png -------------------------------------------------------------------------------- /Swift/Assets.xcassets/hx_picker_cell_video_play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/hx_picker_cell_video_play.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/Assets.xcassets/hx_picker_cell_video_play.imageset/hx_picker_cell_video_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/hx_picker_cell_video_play.imageset/hx_picker_cell_video_play@2x.png -------------------------------------------------------------------------------- /Swift/Assets.xcassets/hx_sticker_cover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/hx_sticker_cover.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/Assets.xcassets/hx_sticker_cover.imageset/hx_sticker_cover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/hx_sticker_cover.imageset/hx_sticker_cover@2x.png -------------------------------------------------------------------------------- /Swift/Assets.xcassets/select_photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/select_photo.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/Assets.xcassets/select_photo.imageset/select_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Assets.xcassets/select_photo.imageset/select_photo@2x.png -------------------------------------------------------------------------------- /Swift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Swift/Classes/Controller/AvatarPickerConfigurationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/AvatarPickerConfigurationViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Controller/CustomPickerCellViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/CustomPickerCellViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Controller/EditorConfigurationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/EditorConfigurationViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Controller/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/HomeViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Controller/PhotoBrowserViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/PhotoBrowserViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Controller/PickerColorConfigurationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/PickerColorConfigurationViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Controller/PickerConfigurationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/PickerConfigurationViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Controller/PickerResultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/PickerResultViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Controller/PickerResultViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/PickerResultViewController.xib -------------------------------------------------------------------------------- /Swift/Classes/Controller/TestEditorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/TestEditorViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Controller/WeChatMometViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/WeChatMometViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Controller/WeChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/WeChatViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Controller/WindowPickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Controller/WindowPickerViewController.swift -------------------------------------------------------------------------------- /Swift/Classes/Extension/Core+UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Extension/Core+UIColor.swift -------------------------------------------------------------------------------- /Swift/Classes/Extension/Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Extension/Extension.swift -------------------------------------------------------------------------------- /Swift/Classes/Extension/RowTypeRule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Extension/RowTypeRule.swift -------------------------------------------------------------------------------- /Swift/Classes/Extension/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Extension/String+Extension.swift -------------------------------------------------------------------------------- /Swift/Classes/Extension/UIDevice+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Extension/UIDevice+Extension.swift -------------------------------------------------------------------------------- /Swift/Classes/Extension/UIFont+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Extension/UIFont+Extension.swift -------------------------------------------------------------------------------- /Swift/Classes/Extension/UIImage+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Extension/UIImage+Extension.swift -------------------------------------------------------------------------------- /Swift/Classes/Model/Tools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/Model/Tools.swift -------------------------------------------------------------------------------- /Swift/Classes/View/ConfigurationViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/View/ConfigurationViewCell.swift -------------------------------------------------------------------------------- /Swift/Classes/View/CustomPickerCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Classes/View/CustomPickerCellView.swift -------------------------------------------------------------------------------- /Swift/HXPHPickerExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/HXPHPickerExample-Bridging-Header.h -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_chongya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_chongya.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_haoxinqing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_haoxinqing.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_housailei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_housailei.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_jintianfenkeai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_jintianfenkeai.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_keaibiaoq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_keaibiaoq.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_kehaixing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_kehaixing.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_saihong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_saihong.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_wow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_wow.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_woxiangfazipai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_woxiangfazipai.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_xiaochuzhujiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_xiaochuzhujiao.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_yuanqimanman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_yuanqimanman.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_yuanqishaonv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_yuanqishaonv.png -------------------------------------------------------------------------------- /Swift/Images/hx_sticker_zaizaijia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/hx_sticker_zaizaijia.png -------------------------------------------------------------------------------- /Swift/Images/livephoto_image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/livephoto_image.jpeg -------------------------------------------------------------------------------- /Swift/Images/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/love.png -------------------------------------------------------------------------------- /Swift/Images/love_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/love_text.png -------------------------------------------------------------------------------- /Swift/Images/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/portrait.png -------------------------------------------------------------------------------- /Swift/Images/qiy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/qiy.png -------------------------------------------------------------------------------- /Swift/Images/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/stars.png -------------------------------------------------------------------------------- /Swift/Images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Images/text.png -------------------------------------------------------------------------------- /Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Info.plist -------------------------------------------------------------------------------- /Swift/Music/世间美好与你环环相扣: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Music/世间美好与你环环相扣 -------------------------------------------------------------------------------- /Swift/Music/世间美好与你环环相扣.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Music/世间美好与你环环相扣.mp3 -------------------------------------------------------------------------------- /Swift/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Reachability.swift -------------------------------------------------------------------------------- /Swift/Resources/custom.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/Swift/Resources/custom.lproj/Localizable.strings -------------------------------------------------------------------------------- /Swift/ar.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SwiftUI/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/SwiftUI/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/SwiftUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUI/ConfigView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/SwiftUI/ConfigView.swift -------------------------------------------------------------------------------- /SwiftUI/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/SwiftUI/ContentView.swift -------------------------------------------------------------------------------- /SwiftUI/PhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/SwiftUI/PhotoBrowser.swift -------------------------------------------------------------------------------- /SwiftUI/PhotoPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/SwiftUI/PhotoPickerView.swift -------------------------------------------------------------------------------- /SwiftUI/PhotoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/SwiftUI/PhotoView.swift -------------------------------------------------------------------------------- /SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUI/SwiftUIExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/SwiftUI/SwiftUIExampleApp.swift -------------------------------------------------------------------------------- /tmp.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilenceLove/HXPhotoPicker/HEAD/tmp.xcconfig --------------------------------------------------------------------------------