├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml └── workflows │ ├── nightly.yml │ └── stable.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── libs │ └── android-smartview-sdk-2.5.2.jar ├── lint-baseline.xml ├── proguard-rules.pro ├── schemas │ ├── debug │ │ └── it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase │ │ │ └── 1.json │ ├── it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase │ │ ├── 1.json │ │ ├── 10.json │ │ ├── 11.json │ │ ├── 12.json │ │ ├── 13.json │ │ ├── 14.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ ├── 5.json │ │ ├── 6.json │ │ ├── 7.json │ │ ├── 8.json │ │ └── 9.json │ ├── release │ │ └── it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase │ │ │ └── 1.json │ └── staging │ │ └── it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase │ │ └── 1.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── dot │ │ └── gallery │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── mobile_ica_8bit_with_metadata.tflite │ ├── ic_launcher-playstore.png │ ├── kotlin │ │ └── it │ │ │ └── fast4x │ │ │ └── rigallery │ │ │ ├── GalleryApp.kt │ │ │ ├── core │ │ │ ├── Constants.kt │ │ │ ├── DatabaseUpdaterWorker.kt │ │ │ ├── Resource.kt │ │ │ ├── Settings.kt │ │ │ ├── decoder │ │ │ │ ├── DecoderExt.kt │ │ │ │ ├── EncryptedBitmapFactoryDecoder.kt │ │ │ │ ├── EncryptedDecoderExt.kt │ │ │ │ ├── EncryptedRegionDecoder.kt │ │ │ │ ├── EncryptedRegionDecoderExt.kt │ │ │ │ ├── EncryptedVideoFrameDecoder.kt │ │ │ │ ├── SketchHeifDecoder.kt │ │ │ │ └── SketchJxlDecoder.kt │ │ │ ├── enums │ │ │ │ ├── AlbumsSortOrder.kt │ │ │ │ ├── BaseColors.kt │ │ │ │ ├── Locales.kt │ │ │ │ ├── MediaType.kt │ │ │ │ ├── Option.kt │ │ │ │ ├── Tags.kt │ │ │ │ └── TransitionEffect.kt │ │ │ ├── extensions │ │ │ │ ├── cast │ │ │ │ │ ├── Cast.kt │ │ │ │ │ ├── CastOptionsProvider.kt │ │ │ │ │ ├── CastViewModel.kt │ │ │ │ │ └── LocalMediaProvider.kt │ │ │ │ ├── checkupdate │ │ │ │ │ └── CheckUpdate.kt │ │ │ │ ├── components │ │ │ │ │ ├── DefaultDialog.kt │ │ │ │ │ └── Title.kt │ │ │ │ └── fastscrollbar │ │ │ │ │ ├── AppScrollbars.kt │ │ │ │ │ ├── Scrollbar.kt │ │ │ │ │ ├── ScrollbarState.kt │ │ │ │ │ ├── Scrollbar_StateValue.kt │ │ │ │ │ ├── Scrollbar_Track.kt │ │ │ │ │ ├── lazystate │ │ │ │ │ ├── ScrollbarGridState.kt │ │ │ │ │ ├── ScrollbarListState.kt │ │ │ │ │ ├── ScrollbarStaggeredGridState.kt │ │ │ │ │ ├── ThumbExt_Grid.kt │ │ │ │ │ ├── ThumbExt_List.kt │ │ │ │ │ └── ThumbExt_StaggeredGrid.kt │ │ │ │ │ └── lazyutils │ │ │ │ │ └── LazyScrollbarUtilities.kt │ │ │ ├── presentation │ │ │ │ └── components │ │ │ │ │ ├── AppBar.kt │ │ │ │ │ ├── CheckBox.kt │ │ │ │ │ ├── DragHandle.kt │ │ │ │ │ ├── EmptyAlbum.kt │ │ │ │ │ ├── EmptyMedia.kt │ │ │ │ │ ├── ErrorComponent.kt │ │ │ │ │ ├── FilterComponent.kt │ │ │ │ │ ├── LoadingAlbum.kt │ │ │ │ │ ├── LoadingMedia.kt │ │ │ │ │ ├── MediaItemHeader.kt │ │ │ │ │ ├── ModalSheet.kt │ │ │ │ │ ├── NavigationActions.kt │ │ │ │ │ ├── NavigationBarSpacer.kt │ │ │ │ │ ├── NavigationButton.kt │ │ │ │ │ ├── NavigationComp.kt │ │ │ │ │ ├── OptionSheetMenu.kt │ │ │ │ │ ├── SelectionSheet.kt │ │ │ │ │ ├── SetupWizard.kt │ │ │ │ │ └── util │ │ │ │ │ ├── AutoResizeText.kt │ │ │ │ │ ├── BatteryExt.kt │ │ │ │ │ ├── OnLifecycleEvent.kt │ │ │ │ │ ├── PermissionsExt.kt │ │ │ │ │ ├── ShadowModifier.kt │ │ │ │ │ ├── StickyHeaderGrid.kt │ │ │ │ │ └── swipe.kt │ │ │ └── util │ │ │ │ ├── CaptureCrash.kt │ │ │ │ ├── Column.kt │ │ │ │ ├── MediaStoreBuckets.kt │ │ │ │ ├── PickerUtils.kt │ │ │ │ ├── SettingsExt.kt │ │ │ │ ├── Utils.kt │ │ │ │ └── ext │ │ │ │ ├── ContentResolverExt.kt │ │ │ │ ├── CursorExt.kt │ │ │ │ ├── DominantColor.kt │ │ │ │ ├── ExifInterfaceExt.kt │ │ │ │ ├── FlowExt.kt │ │ │ │ ├── IconResource.kt │ │ │ │ └── OkHttpRequest.kt │ │ │ ├── feature_node │ │ │ ├── data │ │ │ │ ├── data_source │ │ │ │ │ ├── BlacklistDao.kt │ │ │ │ │ ├── ClassifierDao.kt │ │ │ │ │ ├── EventDao.kt │ │ │ │ │ ├── InternalDatabase.kt │ │ │ │ │ ├── KeychainHolder.kt │ │ │ │ │ ├── MediaDao.kt │ │ │ │ │ ├── PinnedDao.kt │ │ │ │ │ ├── VaultDao.kt │ │ │ │ │ └── mediastore │ │ │ │ │ │ ├── MediaQuery.kt │ │ │ │ │ │ └── queries │ │ │ │ │ │ ├── AlbumsFlow.kt │ │ │ │ │ │ ├── MediaFlow.kt │ │ │ │ │ │ ├── MediaUriFlow.kt │ │ │ │ │ │ └── QueryFlow.kt │ │ │ │ └── repository │ │ │ │ │ └── MediaRepositoryImpl.kt │ │ │ ├── domain │ │ │ │ ├── model │ │ │ │ │ ├── Album.kt │ │ │ │ │ ├── AlbumState.kt │ │ │ │ │ ├── Event.kt │ │ │ │ │ ├── ExifAttributes.kt │ │ │ │ │ ├── IgnoredAlbum.kt │ │ │ │ │ ├── InfoRow.kt │ │ │ │ │ ├── LibraryIndicatorState.kt │ │ │ │ │ ├── LocationData.kt │ │ │ │ │ ├── Media.kt │ │ │ │ │ ├── MediaDateCaption.kt │ │ │ │ │ ├── MediaItem.kt │ │ │ │ │ ├── MediaState.kt │ │ │ │ │ ├── MediaType.kt │ │ │ │ │ ├── MediaVersion.kt │ │ │ │ │ ├── PinnedAlbum.kt │ │ │ │ │ ├── PlaybackSpeed.kt │ │ │ │ │ ├── TimelineSettings.kt │ │ │ │ │ ├── Vault.kt │ │ │ │ │ ├── VaultState.kt │ │ │ │ │ └── editor │ │ │ │ │ │ ├── Adjustment.kt │ │ │ │ │ │ ├── CropState.kt │ │ │ │ │ │ ├── CropperAction.kt │ │ │ │ │ │ ├── DrawMode.kt │ │ │ │ │ │ ├── DrawType.kt │ │ │ │ │ │ ├── EditorDestination.kt │ │ │ │ │ │ ├── EditorItems.kt │ │ │ │ │ │ ├── ImageFilter.kt │ │ │ │ │ │ ├── MarkupItems.kt │ │ │ │ │ │ ├── PainterMotionEvent.kt │ │ │ │ │ │ ├── PathProperties.kt │ │ │ │ │ │ ├── SaveFormat.kt │ │ │ │ │ │ └── VariableFilter.kt │ │ │ │ ├── repository │ │ │ │ │ └── MediaRepository.kt │ │ │ │ ├── use_case │ │ │ │ │ └── MediaHandleUseCase.kt │ │ │ │ └── util │ │ │ │ │ ├── Converters.kt │ │ │ │ │ ├── MediaExt.kt │ │ │ │ │ ├── MediaOrder.kt │ │ │ │ │ ├── OrderType.kt │ │ │ │ │ └── UriSerializer.kt │ │ │ └── presentation │ │ │ │ ├── albums │ │ │ │ ├── AlbumsScreen.kt │ │ │ │ ├── AlbumsViewModel.kt │ │ │ │ └── components │ │ │ │ │ ├── AlbumComponent.kt │ │ │ │ │ ├── PinnedAlbumsCarousel.kt │ │ │ │ │ └── PinnedAlbumsPager.kt │ │ │ │ ├── analysis │ │ │ │ ├── AnalysisScreen.kt │ │ │ │ ├── AnalysisViewModel.kt │ │ │ │ ├── DominantColorWorker.kt │ │ │ │ └── LocationWorker.kt │ │ │ │ ├── classifier │ │ │ │ ├── CategoriesViewModel.kt │ │ │ │ ├── CategoryViewModel.kt │ │ │ │ ├── CategoryViewScreen.kt │ │ │ │ ├── ClassifierWorker.kt │ │ │ │ ├── ImageClassifierHelper.kt │ │ │ │ └── SmartCategoriesScreen.kt │ │ │ │ ├── common │ │ │ │ ├── ChanneledViewModel.kt │ │ │ │ ├── Globals.kt │ │ │ │ ├── MediaScreen.kt │ │ │ │ ├── MediaViewModel.kt │ │ │ │ └── components │ │ │ │ │ ├── MediaCountInfo.kt │ │ │ │ │ ├── MediaGrid.kt │ │ │ │ │ ├── MediaGridView.kt │ │ │ │ │ ├── MediaImage.kt │ │ │ │ │ ├── MediaStaggeredGrid.kt │ │ │ │ │ ├── MultiLinedTitle.kt │ │ │ │ │ ├── OptionSheet.kt │ │ │ │ │ ├── ScannerButton.kt │ │ │ │ │ ├── TimelineScroller.kt │ │ │ │ │ ├── TwoLinedDateToolbarTitle.kt │ │ │ │ │ ├── rememberHeaderOffset.kt │ │ │ │ │ ├── rememberStickyHeaderItem.kt │ │ │ │ │ └── rememberStickyHeaderItemStaggered.kt │ │ │ │ ├── dateformat │ │ │ │ └── DateFormatScreen.kt │ │ │ │ ├── edit │ │ │ │ ├── EditActivity.kt │ │ │ │ ├── EditScreen.kt │ │ │ │ ├── EditViewModel.kt │ │ │ │ ├── adjustments │ │ │ │ │ ├── Crop.kt │ │ │ │ │ ├── Flip.kt │ │ │ │ │ ├── Markup.kt │ │ │ │ │ ├── Rotate90CW.kt │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── Cool.kt │ │ │ │ │ │ ├── ImageFilterTypes.kt │ │ │ │ │ │ ├── Monochrome.kt │ │ │ │ │ │ ├── Negative.kt │ │ │ │ │ │ ├── None.kt │ │ │ │ │ │ ├── Posterize.kt │ │ │ │ │ │ ├── Sepia.kt │ │ │ │ │ │ ├── Vintage.kt │ │ │ │ │ │ └── Warm.kt │ │ │ │ │ └── varfilter │ │ │ │ │ │ ├── Brightness.kt │ │ │ │ │ │ ├── Contrast.kt │ │ │ │ │ │ ├── Rotate.kt │ │ │ │ │ │ ├── Saturation.kt │ │ │ │ │ │ ├── Sharpness.kt │ │ │ │ │ │ └── VariableFilterTypes.kt │ │ │ │ ├── components │ │ │ │ │ ├── adjustment │ │ │ │ │ │ ├── AdjustScrubber.kt │ │ │ │ │ │ ├── AdjustSection.kt │ │ │ │ │ │ └── SelectableItem.kt │ │ │ │ │ ├── core │ │ │ │ │ │ ├── HorizontalScrubber.kt │ │ │ │ │ │ ├── SupportiveLayout.kt │ │ │ │ │ │ ├── SupportiveLazyGridLayout.kt │ │ │ │ │ │ ├── SupportiveLazyLayout.kt │ │ │ │ │ │ └── VerticalScrubber.kt │ │ │ │ │ ├── cropper │ │ │ │ │ │ └── CropperSection.kt │ │ │ │ │ ├── editor │ │ │ │ │ │ ├── EditorItem.kt │ │ │ │ │ │ ├── EditorNavigator.kt │ │ │ │ │ │ ├── EditorSelector.kt │ │ │ │ │ │ ├── ExternalEditor.kt │ │ │ │ │ │ └── ImageViewer.kt │ │ │ │ │ ├── filters │ │ │ │ │ │ └── FiltersSelector.kt │ │ │ │ │ └── markup │ │ │ │ │ │ ├── ColorBars.kt │ │ │ │ │ │ ├── MarkupColorSelector.kt │ │ │ │ │ │ ├── MarkupPainter.kt │ │ │ │ │ │ ├── MarkupPathPreview.kt │ │ │ │ │ │ ├── MarkupSelector.kt │ │ │ │ │ │ └── MarkupSizeSelector.kt │ │ │ │ └── utils │ │ │ │ │ ├── awaitDragMotionEvent.kt │ │ │ │ │ └── isApplied.kt │ │ │ │ ├── exif │ │ │ │ ├── AddAlbumSheet.kt │ │ │ │ ├── CopyMediaSheet.kt │ │ │ │ ├── MetadataEditSheet.kt │ │ │ │ └── MoveMediaSheet.kt │ │ │ │ ├── favorites │ │ │ │ ├── FavoriteScreen.kt │ │ │ │ └── components │ │ │ │ │ ├── EmptyFavorites.kt │ │ │ │ │ └── FavoriteNavActions.kt │ │ │ │ ├── ignored │ │ │ │ ├── IgnoredScreen.kt │ │ │ │ ├── IgnoredState.kt │ │ │ │ ├── IgnoredViewModel.kt │ │ │ │ └── setup │ │ │ │ │ ├── IgnoredSetup.kt │ │ │ │ │ ├── IgnoredSetupDestination.kt │ │ │ │ │ ├── IgnoredSetupStage.kt │ │ │ │ │ ├── IgnoredSetupState.kt │ │ │ │ │ ├── IgnoredSetupViewModel.kt │ │ │ │ │ ├── IgnoredType.kt │ │ │ │ │ ├── SelectAlbumSheet.kt │ │ │ │ │ └── screens │ │ │ │ │ ├── SetupConfirmationScreen.kt │ │ │ │ │ ├── SetupLabelScreen.kt │ │ │ │ │ ├── SetupLocationScreen.kt │ │ │ │ │ ├── SetupTypeRegexScreen.kt │ │ │ │ │ └── SetupTypeSelectionScreen.kt │ │ │ │ ├── ignoredmedia │ │ │ │ ├── IgnoredMediaScreen.kt │ │ │ │ └── components │ │ │ │ │ ├── EmptyIgnoredMedia.kt │ │ │ │ │ └── IgnoredMediaNavActions.kt │ │ │ │ ├── library │ │ │ │ ├── LibraryScreen.kt │ │ │ │ ├── LibraryViewModel.kt │ │ │ │ └── components │ │ │ │ │ ├── LibrarySmallItem.kt │ │ │ │ │ └── dashedBorder.kt │ │ │ │ ├── main │ │ │ │ └── MainActivity.kt │ │ │ │ ├── mediaview │ │ │ │ ├── MediaViewScreen.kt │ │ │ │ └── components │ │ │ │ │ ├── AppBar.kt │ │ │ │ │ ├── BottomBar.kt │ │ │ │ │ ├── MediaInfo.kt │ │ │ │ │ ├── media │ │ │ │ │ ├── MediaPreviewComponent.kt │ │ │ │ │ └── ZoomablePagerImage.kt │ │ │ │ │ └── video │ │ │ │ │ ├── VideoDurationHeader.kt │ │ │ │ │ ├── VideoPlayer.kt │ │ │ │ │ ├── VideoPlayerController.kt │ │ │ │ │ └── createDecryptedVideoFile.kt │ │ │ │ ├── picker │ │ │ │ ├── PickerActivity.kt │ │ │ │ ├── PickerViewModel.kt │ │ │ │ └── components │ │ │ │ │ ├── PickerMediaScreen.kt │ │ │ │ │ └── PickerScreen.kt │ │ │ │ ├── search │ │ │ │ ├── MainSearchBar.kt │ │ │ │ └── components │ │ │ │ │ ├── HistoryItem.kt │ │ │ │ │ ├── SearchBarElevation.kt │ │ │ │ │ ├── SearchHistory.kt │ │ │ │ │ ├── SearchHistoryGrid.kt │ │ │ │ │ ├── TagAction.kt │ │ │ │ │ └── TagsGrid.kt │ │ │ │ ├── settings │ │ │ │ ├── SettingsScreen.kt │ │ │ │ └── components │ │ │ │ │ ├── AppHeader.kt │ │ │ │ │ └── SettingsItems.kt │ │ │ │ ├── setup │ │ │ │ └── SetupScreen.kt │ │ │ │ ├── standalone │ │ │ │ ├── StandaloneActivity.kt │ │ │ │ └── StandaloneViewModel.kt │ │ │ │ ├── statistics │ │ │ │ ├── StatisticsScreen.kt │ │ │ │ ├── StatisticsViewModel.kt │ │ │ │ └── data │ │ │ │ │ └── MediaInYear.kt │ │ │ │ ├── support │ │ │ │ └── SupportSheet.kt │ │ │ │ ├── timeline │ │ │ │ ├── TimelineScreen.kt │ │ │ │ └── components │ │ │ │ │ └── TimelineNavActions.kt │ │ │ │ ├── trashed │ │ │ │ ├── TrashedScreen.kt │ │ │ │ └── components │ │ │ │ │ ├── AutoDeleteFooter.kt │ │ │ │ │ ├── EmptyTrash.kt │ │ │ │ │ ├── TrashDialog.kt │ │ │ │ │ ├── TrashedNavActions.kt │ │ │ │ │ └── TrashedViewBottomBar.kt │ │ │ │ ├── util │ │ │ │ ├── AppBottomSheetState.kt │ │ │ │ ├── ContextExt.kt │ │ │ │ ├── DateExt.kt │ │ │ │ ├── ExifMetadata.kt │ │ │ │ ├── FileUtils.kt │ │ │ │ ├── Geolocation.kt │ │ │ │ ├── ImageUtils.kt │ │ │ │ ├── IntExt.kt │ │ │ │ ├── LogExt.kt │ │ │ │ ├── MapBoxURL.kt │ │ │ │ ├── MetadataExtractor.kt │ │ │ │ ├── ModifierExt.kt │ │ │ │ ├── NavigationItem.kt │ │ │ │ ├── NetworkExt.kt │ │ │ │ ├── OpenStreetMapUrl.kt │ │ │ │ ├── PinchToZoom.kt │ │ │ │ ├── Screen.kt │ │ │ │ ├── SharedElementsExt.kt │ │ │ │ ├── StateExt.kt │ │ │ │ ├── ViewScreenConstants.kt │ │ │ │ ├── WindowInsetsControllerExt.kt │ │ │ │ └── launchMap.kt │ │ │ │ ├── vault │ │ │ │ ├── VaultDisplay.kt │ │ │ │ ├── VaultScreen.kt │ │ │ │ ├── VaultScreens.kt │ │ │ │ ├── VaultSetup.kt │ │ │ │ ├── VaultViewModel.kt │ │ │ │ ├── VaultWorker.kt │ │ │ │ ├── components │ │ │ │ │ ├── DeleteVaultSheet.kt │ │ │ │ │ ├── NewVaultSheet.kt │ │ │ │ │ ├── RestoreVaultSheet.kt │ │ │ │ │ └── SelectVaultSheet.kt │ │ │ │ └── utils │ │ │ │ │ └── BiometricManagerExt.kt │ │ │ │ └── wallpaper │ │ │ │ └── SetWallpaperActivity.kt │ │ │ ├── injection │ │ │ └── AppModule.kt │ │ │ └── ui │ │ │ ├── ComposeInitializer.kt │ │ │ ├── core │ │ │ ├── Icons.kt │ │ │ └── icons │ │ │ │ ├── Encrypted.kt │ │ │ │ ├── Face.kt │ │ │ │ ├── InkHighlighter.kt │ │ │ │ ├── InkMarker.kt │ │ │ │ ├── Ink_eraser.kt │ │ │ │ ├── NoImage.kt │ │ │ │ ├── RegularExpression.kt │ │ │ │ ├── Star.kt │ │ │ │ └── Stylus.kt │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Dimens.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── res │ │ ├── drawable │ │ ├── donation.webp │ │ ├── downloaded.xml │ │ ├── globe.xml │ │ ├── ic_donate.xml │ │ ├── ic_gallery_thumbnail.xml │ │ ├── ic_github.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_foreground_monochrome.xml │ │ ├── ic_media_manage.xml │ │ ├── ic_remove.xml │ │ ├── ic_scroll_arrow.xml │ │ ├── image_sample_1.webp │ │ ├── image_sample_2.webp │ │ ├── image_sample_3.webp │ │ ├── image_sample_4.webp │ │ ├── logo_paypal.webp │ │ ├── logo_revolut.webp │ │ ├── rounded_border_tv.xml │ │ └── scroll.png │ │ ├── font │ │ ├── montserrat_bold.ttf │ │ ├── montserrat_boldit.ttf │ │ ├── montserrat_italic.ttf │ │ ├── montserrat_medium.ttf │ │ ├── montserrat_mediumit.ttf │ │ ├── montserrat_regular.ttf │ │ ├── montserrat_semboldit.ttf │ │ ├── montserrat_semibold.ttf │ │ ├── poppins_bold.ttf │ │ ├── poppins_boldit.ttf │ │ ├── poppins_italic.ttf │ │ ├── poppins_medium.ttf │ │ ├── poppins_mediumit.ttf │ │ ├── poppins_regular.ttf │ │ ├── poppins_semibold.ttf │ │ └── poppins_semiboldit.ttf │ │ ├── layout │ │ ├── album_pin_frame.xml │ │ ├── view_photo_editor_image.xml │ │ └── view_photo_editor_text.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── values-af-rZA │ │ └── strings.xml │ │ ├── values-ar-rSA │ │ └── strings.xml │ │ ├── values-be-rBY │ │ └── strings.xml │ │ ├── values-bg-rBG │ │ └── strings.xml │ │ ├── values-bn-rBD │ │ └── strings.xml │ │ ├── values-ca-rES │ │ └── strings.xml │ │ ├── values-cs-rCZ │ │ └── strings.xml │ │ ├── values-da-rDK │ │ └── strings.xml │ │ ├── values-de-rDE │ │ └── strings.xml │ │ ├── values-el-rGR │ │ └── strings.xml │ │ ├── values-en-rUS │ │ └── strings.xml │ │ ├── values-es-rES │ │ └── strings.xml │ │ ├── values-fi-rFI │ │ └── strings.xml │ │ ├── values-fr-rFR │ │ └── strings.xml │ │ ├── values-ga-rIE │ │ └── strings.xml │ │ ├── values-gl-rES │ │ └── strings.xml │ │ ├── values-hi-rIN │ │ └── strings.xml │ │ ├── values-hr-rHR │ │ └── strings.xml │ │ ├── values-hu-rHU │ │ └── strings.xml │ │ ├── values-ia-rFR │ │ └── strings.xml │ │ ├── values-in-rID │ │ └── strings.xml │ │ ├── values-it-rIT │ │ └── strings.xml │ │ ├── values-iw-rIL │ │ └── strings.xml │ │ ├── values-ja-rJP │ │ └── strings.xml │ │ ├── values-ko-rKR │ │ └── strings.xml │ │ ├── values-lt-rLT │ │ └── strings.xml │ │ ├── values-ne-rNP │ │ └── strings.xml │ │ ├── values-night │ │ └── colors.xml │ │ ├── values-nl-rNL │ │ └── strings.xml │ │ ├── values-nn-rNO │ │ └── strings.xml │ │ ├── values-no-rNO │ │ └── strings.xml │ │ ├── values-or-rIN │ │ └── strings.xml │ │ ├── values-pa-rIN │ │ └── strings.xml │ │ ├── values-pl-rPL │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-ro-rRO │ │ └── strings.xml │ │ ├── values-ru-rBY │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ └── strings.xml │ │ ├── values-sr-rSP │ │ └── strings.xml │ │ ├── values-sv-rSE │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ └── strings.xml │ │ ├── values-uk-rUA │ │ └── strings.xml │ │ ├── values-vi-rVN │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ ├── data_extraction_rules.xml │ │ └── filepaths.xml │ └── test │ └── java │ └── com │ └── dot │ └── gallery │ └── ExampleUnitTest.kt ├── compose_compiler_config.conf ├── crowdin.yml ├── docs ├── CNAME ├── assets │ ├── decor │ │ ├── dark │ │ │ ├── grad_01.png │ │ │ ├── grad_04.png │ │ │ └── grad_14.png │ │ └── light │ │ │ ├── Grad_01.png │ │ │ ├── Grad_04.png │ │ │ └── Grad_14.png │ ├── images │ │ ├── dark │ │ │ ├── 1_dark-portrait.png │ │ │ ├── 2_dark-portrait.png │ │ │ └── 3_dark-portrait.png │ │ ├── getItGithub.png │ │ └── light │ │ │ ├── 1_light-portrait.png │ │ │ ├── 2_light-portrait.png │ │ │ └── 3_light-portrait.png │ ├── logo │ │ ├── logo_old.webp │ │ ├── rigallery_logo.webp │ │ ├── rigallery_logo_transparent.webp │ │ ├── rigallery_logo_without_background.png │ │ └── rigallery_logo_without_background.webp │ └── svg │ │ ├── Images.svg │ │ ├── Open source.svg │ │ └── Private data.svg ├── faq.html ├── index.html ├── privacy.html ├── script.js └── styles.css ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ ├── 10216.txt │ ├── 20111.txt │ ├── 21000.txt │ ├── 21009.txt │ └── 30033.txt │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ └── short_description.txt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs ├── cropper │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── smarttoolfactory │ │ │ └── cropper │ │ │ ├── CropModifier.kt │ │ │ ├── ImageCropper.kt │ │ │ ├── TouchRegion.kt │ │ │ ├── crop │ │ │ └── CropAgent.kt │ │ │ ├── draw │ │ │ ├── ImageDrawCanvas.kt │ │ │ └── Overlay.kt │ │ │ ├── image │ │ │ ├── ImageScope.kt │ │ │ └── ImageWithConstraints.kt │ │ │ ├── model │ │ │ ├── AspectRatios.kt │ │ │ ├── CropAspectRatio.kt │ │ │ ├── CropData.kt │ │ │ ├── CropFrame.kt │ │ │ ├── CropOutline.kt │ │ │ ├── CropOutlineContainer.kt │ │ │ └── CropOutlineProperties.kt │ │ │ ├── settings │ │ │ ├── CropDefaults.kt │ │ │ ├── CropFrameFactory.kt │ │ │ ├── CropType.kt │ │ │ └── Paths.kt │ │ │ ├── state │ │ │ ├── CropState.kt │ │ │ ├── CropStateImpl.kt │ │ │ ├── DynamicCropState.kt │ │ │ ├── StaticCropState.kt │ │ │ └── TransformState.kt │ │ │ ├── ui │ │ │ └── theme │ │ │ │ └── Color.kt │ │ │ ├── util │ │ │ ├── DimensionUtil.kt │ │ │ ├── DrawScopeUtils.kt │ │ │ ├── ImageContentScaleUtil.kt │ │ │ ├── OffsetUtil.kt │ │ │ ├── ShapeUtils.kt │ │ │ ├── ZoomLevel.kt │ │ │ └── ZoomUtil.kt │ │ │ └── widget │ │ │ ├── AspectRatioSlectionCard.kt │ │ │ ├── CropFrameDisplayCard.kt │ │ │ └── GridImageLayout.kt │ │ └── res │ │ └── drawable │ │ └── landscape2.jpg └── gesture │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── smarttoolfactory │ └── gesture │ ├── AwaitPointerMotionEvent.kt │ ├── MotionEvent.kt │ ├── PointerMotionModifier.kt │ ├── TouchDelegateModifier.kt │ └── TransformGesture.kt ├── play_release.patch ├── renovate.json ├── settings.gradle.kts ├── strip_allfiles_permission.sh ├── strip_permission.sh └── updatedVersion └── updatedVersionCode.ver /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/stable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/.github/workflows/stable.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /release 3 | *.jks -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/libs/android-smartview-sdk-2.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/libs/android-smartview-sdk-2.5.2.jar -------------------------------------------------------------------------------- /app/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/lint-baseline.xml -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/schemas/debug/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/debug/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/1.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/1.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/10.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/11.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/12.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/13.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/14.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/2.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/3.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/4.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/5.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/6.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/7.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/8.json -------------------------------------------------------------------------------- /app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/9.json -------------------------------------------------------------------------------- /app/schemas/release/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/release/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/1.json -------------------------------------------------------------------------------- /app/schemas/staging/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/schemas/staging/it.fast4x.rigallery.feature_node.data.data_source.InternalDatabase/1.json -------------------------------------------------------------------------------- /app/src/androidTest/java/com/dot/gallery/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/androidTest/java/com/dot/gallery/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/mobile_ica_8bit_with_metadata.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/assets/mobile_ica_8bit_with_metadata.tflite -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/GalleryApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/GalleryApp.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/Constants.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/DatabaseUpdaterWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/DatabaseUpdaterWorker.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/Resource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/Resource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/Settings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/Settings.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/decoder/DecoderExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/decoder/DecoderExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/decoder/EncryptedBitmapFactoryDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/decoder/EncryptedBitmapFactoryDecoder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/decoder/EncryptedDecoderExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/decoder/EncryptedDecoderExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/decoder/EncryptedRegionDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/decoder/EncryptedRegionDecoder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/decoder/EncryptedRegionDecoderExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/decoder/EncryptedRegionDecoderExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/decoder/EncryptedVideoFrameDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/decoder/EncryptedVideoFrameDecoder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/decoder/SketchHeifDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/decoder/SketchHeifDecoder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/decoder/SketchJxlDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/decoder/SketchJxlDecoder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/enums/AlbumsSortOrder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/enums/AlbumsSortOrder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/enums/BaseColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/enums/BaseColors.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/enums/Locales.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/enums/Locales.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/enums/MediaType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/enums/MediaType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/enums/Option.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/enums/Option.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/enums/Tags.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/enums/Tags.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/enums/TransitionEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/enums/TransitionEffect.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/cast/Cast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/cast/Cast.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/cast/CastOptionsProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/cast/CastOptionsProvider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/cast/CastViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/cast/CastViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/cast/LocalMediaProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/cast/LocalMediaProvider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/checkupdate/CheckUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/checkupdate/CheckUpdate.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/components/DefaultDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/components/DefaultDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/components/Title.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/components/Title.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/AppScrollbars.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/AppScrollbars.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/Scrollbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/Scrollbar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/ScrollbarState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/ScrollbarState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/Scrollbar_StateValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/Scrollbar_StateValue.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/Scrollbar_Track.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/Scrollbar_Track.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ScrollbarGridState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ScrollbarGridState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ScrollbarListState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ScrollbarListState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ScrollbarStaggeredGridState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ScrollbarStaggeredGridState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ThumbExt_Grid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ThumbExt_Grid.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ThumbExt_List.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ThumbExt_List.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ThumbExt_StaggeredGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazystate/ThumbExt_StaggeredGrid.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazyutils/LazyScrollbarUtilities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/extensions/fastscrollbar/lazyutils/LazyScrollbarUtilities.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/AppBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/AppBar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/CheckBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/CheckBox.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/DragHandle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/DragHandle.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/EmptyAlbum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/EmptyAlbum.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/EmptyMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/EmptyMedia.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/ErrorComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/ErrorComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/FilterComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/FilterComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/LoadingAlbum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/LoadingAlbum.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/LoadingMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/LoadingMedia.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/MediaItemHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/MediaItemHeader.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/ModalSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/ModalSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/NavigationActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/NavigationActions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/NavigationBarSpacer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/NavigationBarSpacer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/NavigationButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/NavigationButton.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/NavigationComp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/NavigationComp.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/OptionSheetMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/OptionSheetMenu.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/SelectionSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/SelectionSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/SetupWizard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/SetupWizard.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/AutoResizeText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/AutoResizeText.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/BatteryExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/BatteryExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/OnLifecycleEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/OnLifecycleEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/PermissionsExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/PermissionsExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/ShadowModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/ShadowModifier.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/StickyHeaderGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/StickyHeaderGrid.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/swipe.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/presentation/components/util/swipe.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/CaptureCrash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/CaptureCrash.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/Column.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/Column.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/MediaStoreBuckets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/MediaStoreBuckets.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/PickerUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/PickerUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/SettingsExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/SettingsExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/Utils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/ContentResolverExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/ContentResolverExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/CursorExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/CursorExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/DominantColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/DominantColor.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/ExifInterfaceExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/ExifInterfaceExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/FlowExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/FlowExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/IconResource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/IconResource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/OkHttpRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/core/util/ext/OkHttpRequest.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/BlacklistDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/BlacklistDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/ClassifierDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/ClassifierDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/EventDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/EventDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/InternalDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/InternalDatabase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/KeychainHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/KeychainHolder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/MediaDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/MediaDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/PinnedDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/PinnedDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/VaultDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/VaultDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/mediastore/MediaQuery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/mediastore/MediaQuery.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/mediastore/queries/AlbumsFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/mediastore/queries/AlbumsFlow.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/mediastore/queries/MediaFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/mediastore/queries/MediaFlow.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/mediastore/queries/MediaUriFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/mediastore/queries/MediaUriFlow.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/mediastore/queries/QueryFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/data_source/mediastore/queries/QueryFlow.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/repository/MediaRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/data/repository/MediaRepositoryImpl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/Album.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/Album.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/AlbumState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/AlbumState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/Event.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/Event.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/ExifAttributes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/ExifAttributes.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/IgnoredAlbum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/IgnoredAlbum.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/InfoRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/InfoRow.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/LibraryIndicatorState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/LibraryIndicatorState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/LocationData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/LocationData.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/Media.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/Media.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/MediaDateCaption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/MediaDateCaption.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/MediaItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/MediaItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/MediaState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/MediaState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/MediaType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/MediaType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/MediaVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/MediaVersion.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/PinnedAlbum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/PinnedAlbum.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/PlaybackSpeed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/PlaybackSpeed.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/TimelineSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/TimelineSettings.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/Vault.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/Vault.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/VaultState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/VaultState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/Adjustment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/Adjustment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/CropState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/CropState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/CropperAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/CropperAction.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/DrawMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/DrawMode.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/DrawType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/DrawType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/EditorDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/EditorDestination.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/EditorItems.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/EditorItems.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/ImageFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/ImageFilter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/MarkupItems.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/MarkupItems.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/PainterMotionEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/PainterMotionEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/PathProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/PathProperties.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/SaveFormat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/SaveFormat.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/VariableFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/model/editor/VariableFilter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/repository/MediaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/repository/MediaRepository.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/use_case/MediaHandleUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/use_case/MediaHandleUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/util/Converters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/util/Converters.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/util/MediaExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/util/MediaExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/util/MediaOrder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/util/MediaOrder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/util/OrderType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/util/OrderType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/util/UriSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/domain/util/UriSerializer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/albums/AlbumsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/albums/AlbumsScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/albums/AlbumsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/albums/AlbumsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/albums/components/AlbumComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/albums/components/AlbumComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/albums/components/PinnedAlbumsCarousel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/albums/components/PinnedAlbumsCarousel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/albums/components/PinnedAlbumsPager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/albums/components/PinnedAlbumsPager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/analysis/AnalysisScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/analysis/AnalysisScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/analysis/AnalysisViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/analysis/AnalysisViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/analysis/DominantColorWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/analysis/DominantColorWorker.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/analysis/LocationWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/analysis/LocationWorker.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/CategoriesViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/CategoriesViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/CategoryViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/CategoryViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/CategoryViewScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/CategoryViewScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/ClassifierWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/ClassifierWorker.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/ImageClassifierHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/ImageClassifierHelper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/SmartCategoriesScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/classifier/SmartCategoriesScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/ChanneledViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/ChanneledViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/Globals.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/Globals.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/MediaScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/MediaScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/MediaViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/MediaViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MediaCountInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MediaCountInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MediaGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MediaGrid.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MediaGridView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MediaGridView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MediaImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MediaImage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MediaStaggeredGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MediaStaggeredGrid.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MultiLinedTitle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/MultiLinedTitle.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/OptionSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/OptionSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/ScannerButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/ScannerButton.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/TimelineScroller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/TimelineScroller.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/TwoLinedDateToolbarTitle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/TwoLinedDateToolbarTitle.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/rememberHeaderOffset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/rememberHeaderOffset.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/rememberStickyHeaderItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/rememberStickyHeaderItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/rememberStickyHeaderItemStaggered.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/common/components/rememberStickyHeaderItemStaggered.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/dateformat/DateFormatScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/dateformat/DateFormatScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/EditActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/EditActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/EditScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/EditScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/EditViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/EditViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/Crop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/Crop.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/Flip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/Flip.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/Markup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/Markup.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/Rotate90CW.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/Rotate90CW.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Cool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Cool.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/ImageFilterTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/ImageFilterTypes.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Monochrome.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Monochrome.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Negative.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Negative.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/None.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/None.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Posterize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Posterize.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Sepia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Sepia.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Vintage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Vintage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Warm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/filters/Warm.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/Brightness.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/Brightness.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/Contrast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/Contrast.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/Rotate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/Rotate.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/Saturation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/Saturation.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/Sharpness.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/Sharpness.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/VariableFilterTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/adjustments/varfilter/VariableFilterTypes.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/adjustment/AdjustScrubber.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/adjustment/AdjustScrubber.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/adjustment/AdjustSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/adjustment/AdjustSection.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/adjustment/SelectableItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/adjustment/SelectableItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/core/HorizontalScrubber.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/core/HorizontalScrubber.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/core/SupportiveLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/core/SupportiveLayout.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/core/SupportiveLazyGridLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/core/SupportiveLazyGridLayout.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/core/SupportiveLazyLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/core/SupportiveLazyLayout.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/core/VerticalScrubber.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/core/VerticalScrubber.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/cropper/CropperSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/cropper/CropperSection.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/editor/EditorItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/editor/EditorItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/editor/EditorNavigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/editor/EditorNavigator.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/editor/EditorSelector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/editor/EditorSelector.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/editor/ExternalEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/editor/ExternalEditor.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/editor/ImageViewer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/editor/ImageViewer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/filters/FiltersSelector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/filters/FiltersSelector.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/ColorBars.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/ColorBars.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/MarkupColorSelector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/MarkupColorSelector.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/MarkupPainter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/MarkupPainter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/MarkupPathPreview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/MarkupPathPreview.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/MarkupSelector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/MarkupSelector.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/MarkupSizeSelector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/components/markup/MarkupSizeSelector.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/utils/awaitDragMotionEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/utils/awaitDragMotionEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/utils/isApplied.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/edit/utils/isApplied.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/exif/AddAlbumSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/exif/AddAlbumSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/exif/CopyMediaSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/exif/CopyMediaSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/exif/MetadataEditSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/exif/MetadataEditSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/exif/MoveMediaSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/exif/MoveMediaSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/favorites/FavoriteScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/favorites/FavoriteScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/favorites/components/EmptyFavorites.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/favorites/components/EmptyFavorites.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/favorites/components/FavoriteNavActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/favorites/components/FavoriteNavActions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/IgnoredScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/IgnoredScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/IgnoredState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/IgnoredState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/IgnoredViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/IgnoredViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredSetup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredSetup.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredSetupDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredSetupDestination.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredSetupStage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredSetupStage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredSetupState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredSetupState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredSetupViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredSetupViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/IgnoredType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/SelectAlbumSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/SelectAlbumSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/screens/SetupConfirmationScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/screens/SetupConfirmationScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/screens/SetupLabelScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/screens/SetupLabelScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/screens/SetupLocationScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/screens/SetupLocationScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/screens/SetupTypeRegexScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/screens/SetupTypeRegexScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/screens/SetupTypeSelectionScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignored/setup/screens/SetupTypeSelectionScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignoredmedia/IgnoredMediaScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignoredmedia/IgnoredMediaScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignoredmedia/components/EmptyIgnoredMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignoredmedia/components/EmptyIgnoredMedia.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignoredmedia/components/IgnoredMediaNavActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/ignoredmedia/components/IgnoredMediaNavActions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/library/LibraryScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/library/LibraryScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/library/LibraryViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/library/LibraryViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/library/components/LibrarySmallItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/library/components/LibrarySmallItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/library/components/dashedBorder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/library/components/dashedBorder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/main/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/main/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/MediaViewScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/MediaViewScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/AppBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/AppBar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/BottomBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/BottomBar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/MediaInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/MediaInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/media/MediaPreviewComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/media/MediaPreviewComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/media/ZoomablePagerImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/media/ZoomablePagerImage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/video/VideoDurationHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/video/VideoDurationHeader.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/video/VideoPlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/video/VideoPlayer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/video/VideoPlayerController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/video/VideoPlayerController.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/video/createDecryptedVideoFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/mediaview/components/video/createDecryptedVideoFile.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/picker/PickerActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/picker/PickerActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/picker/PickerViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/picker/PickerViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/picker/components/PickerMediaScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/picker/components/PickerMediaScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/picker/components/PickerScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/picker/components/PickerScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/MainSearchBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/MainSearchBar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/HistoryItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/HistoryItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/SearchBarElevation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/SearchBarElevation.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/SearchHistory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/SearchHistory.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/SearchHistoryGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/SearchHistoryGrid.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/TagAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/TagAction.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/TagsGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/search/components/TagsGrid.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/settings/SettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/settings/SettingsScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/settings/components/AppHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/settings/components/AppHeader.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/settings/components/SettingsItems.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/settings/components/SettingsItems.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/setup/SetupScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/setup/SetupScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/standalone/StandaloneActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/standalone/StandaloneActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/standalone/StandaloneViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/standalone/StandaloneViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/statistics/StatisticsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/statistics/StatisticsScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/statistics/StatisticsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/statistics/StatisticsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/statistics/data/MediaInYear.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/statistics/data/MediaInYear.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/support/SupportSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/support/SupportSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/timeline/TimelineScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/timeline/TimelineScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/timeline/components/TimelineNavActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/timeline/components/TimelineNavActions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/TrashedScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/TrashedScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/components/AutoDeleteFooter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/components/AutoDeleteFooter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/components/EmptyTrash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/components/EmptyTrash.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/components/TrashDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/components/TrashDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/components/TrashedNavActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/components/TrashedNavActions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/components/TrashedViewBottomBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/trashed/components/TrashedViewBottomBar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/AppBottomSheetState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/AppBottomSheetState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/ContextExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/ContextExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/DateExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/DateExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/ExifMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/ExifMetadata.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/FileUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/Geolocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/Geolocation.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/ImageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/ImageUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/IntExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/IntExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/LogExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/LogExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/MapBoxURL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/MapBoxURL.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/MetadataExtractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/MetadataExtractor.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/ModifierExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/ModifierExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/NavigationItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/NavigationItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/NetworkExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/NetworkExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/OpenStreetMapUrl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/OpenStreetMapUrl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/PinchToZoom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/PinchToZoom.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/Screen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/SharedElementsExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/SharedElementsExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/StateExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/StateExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/ViewScreenConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/ViewScreenConstants.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/WindowInsetsControllerExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/WindowInsetsControllerExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/launchMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/util/launchMap.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultDisplay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultDisplay.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultScreens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultScreens.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultSetup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultSetup.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/VaultWorker.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/components/DeleteVaultSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/components/DeleteVaultSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/components/NewVaultSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/components/NewVaultSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/components/RestoreVaultSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/components/RestoreVaultSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/components/SelectVaultSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/components/SelectVaultSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/utils/BiometricManagerExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/vault/utils/BiometricManagerExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/wallpaper/SetWallpaperActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/feature_node/presentation/wallpaper/SetWallpaperActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/injection/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/injection/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/ComposeInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/ComposeInitializer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/core/Icons.kt: -------------------------------------------------------------------------------- 1 | package it.fast4x.rigallery.ui.core 2 | 3 | object Icons -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/Encrypted.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/Encrypted.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/Face.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/Face.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/InkHighlighter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/InkHighlighter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/InkMarker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/InkMarker.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/Ink_eraser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/Ink_eraser.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/NoImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/NoImage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/RegularExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/RegularExpression.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/Star.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/Star.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/Stylus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/core/icons/Stylus.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/theme/Dimens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/theme/Dimens.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/it/fast4x/rigallery/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/kotlin/it/fast4x/rigallery/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/donation.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/donation.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/downloaded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/downloaded.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/globe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/globe.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_donate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/ic_donate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_gallery_thumbnail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/ic_gallery_thumbnail.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/ic_github.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/ic_launcher_foreground_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_media_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/ic_media_manage.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_remove.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/ic_remove.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_scroll_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/ic_scroll_arrow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/image_sample_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/image_sample_1.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/image_sample_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/image_sample_2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/image_sample_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/image_sample_3.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/image_sample_4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/image_sample_4.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo_paypal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/logo_paypal.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo_revolut.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/logo_revolut.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_border_tv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/rounded_border_tv.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/drawable/scroll.png -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/montserrat_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_boldit.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/montserrat_boldit.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/montserrat_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/montserrat_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_mediumit.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/montserrat_mediumit.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/montserrat_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_semboldit.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/montserrat_semboldit.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/montserrat_semibold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/poppins_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_boldit.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/poppins_boldit.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/poppins_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/poppins_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_mediumit.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/poppins_mediumit.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/poppins_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/poppins_semibold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_semiboldit.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/font/poppins_semiboldit.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/album_pin_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/layout/album_pin_frame.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_photo_editor_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/layout/view_photo_editor_image.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_photo_editor_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/layout/view_photo_editor_text.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-af-rZA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-af-rZA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ar-rSA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-ar-rSA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-be-rBY/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-be-rBY/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bg-rBG/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-bg-rBG/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bn-rBD/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-bn-rBD/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-ca-rES/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs-rCZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-cs-rCZ/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da-rDK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-da-rDK/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de-rDE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-de-rDE/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el-rGR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-el-rGR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-en-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-en-rUS/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-es-rES/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fi-rFI/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-fi-rFI/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr-rFR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-fr-rFR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ga-rIE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-ga-rIE/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-gl-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-gl-rES/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hi-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-hi-rIN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hr-rHR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-hr-rHR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu-rHU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-hu-rHU/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ia-rFR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-ia-rFR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in-rID/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-in-rID/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-it-rIT/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-iw-rIL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-iw-rIL/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja-rJP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-ja-rJP/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko-rKR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-ko-rKR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lt-rLT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-lt-rLT/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ne-rNP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-ne-rNP/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl-rNL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-nl-rNL/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nn-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-nn-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-no-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-no-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-or-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-or-rIN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pa-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-pa-rIN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl-rPL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-pl-rPL/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro-rRO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-ro-rRO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru-rBY/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-ru-rBY/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sr-rSP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-sr-rSP/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sv-rSE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-sv-rSE/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-tr-rTR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk-rUA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-uk-rUA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vi-rVN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-vi-rVN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/main/res/xml/filepaths.xml -------------------------------------------------------------------------------- /app/src/test/java/com/dot/gallery/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/app/src/test/java/com/dot/gallery/ExampleUnitTest.kt -------------------------------------------------------------------------------- /compose_compiler_config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/compose_compiler_config.conf -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/crowdin.yml -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | rigallery.xyz -------------------------------------------------------------------------------- /docs/assets/decor/dark/grad_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/decor/dark/grad_01.png -------------------------------------------------------------------------------- /docs/assets/decor/dark/grad_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/decor/dark/grad_04.png -------------------------------------------------------------------------------- /docs/assets/decor/dark/grad_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/decor/dark/grad_14.png -------------------------------------------------------------------------------- /docs/assets/decor/light/Grad_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/decor/light/Grad_01.png -------------------------------------------------------------------------------- /docs/assets/decor/light/Grad_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/decor/light/Grad_04.png -------------------------------------------------------------------------------- /docs/assets/decor/light/Grad_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/decor/light/Grad_14.png -------------------------------------------------------------------------------- /docs/assets/images/dark/1_dark-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/images/dark/1_dark-portrait.png -------------------------------------------------------------------------------- /docs/assets/images/dark/2_dark-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/images/dark/2_dark-portrait.png -------------------------------------------------------------------------------- /docs/assets/images/dark/3_dark-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/images/dark/3_dark-portrait.png -------------------------------------------------------------------------------- /docs/assets/images/getItGithub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/images/getItGithub.png -------------------------------------------------------------------------------- /docs/assets/images/light/1_light-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/images/light/1_light-portrait.png -------------------------------------------------------------------------------- /docs/assets/images/light/2_light-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/images/light/2_light-portrait.png -------------------------------------------------------------------------------- /docs/assets/images/light/3_light-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/images/light/3_light-portrait.png -------------------------------------------------------------------------------- /docs/assets/logo/logo_old.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/logo/logo_old.webp -------------------------------------------------------------------------------- /docs/assets/logo/rigallery_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/logo/rigallery_logo.webp -------------------------------------------------------------------------------- /docs/assets/logo/rigallery_logo_transparent.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/logo/rigallery_logo_transparent.webp -------------------------------------------------------------------------------- /docs/assets/logo/rigallery_logo_without_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/logo/rigallery_logo_without_background.png -------------------------------------------------------------------------------- /docs/assets/logo/rigallery_logo_without_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/logo/rigallery_logo_without_background.webp -------------------------------------------------------------------------------- /docs/assets/svg/Images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/svg/Images.svg -------------------------------------------------------------------------------- /docs/assets/svg/Open source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/svg/Open source.svg -------------------------------------------------------------------------------- /docs/assets/svg/Private data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/assets/svg/Private data.svg -------------------------------------------------------------------------------- /docs/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/faq.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/privacy.html -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/script.js -------------------------------------------------------------------------------- /docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/docs/styles.css -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10216.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/changelogs/10216.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/20111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/changelogs/20111.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/21000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/changelogs/21000.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/21009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/changelogs/21009.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/30033.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/changelogs/30033.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/10.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/11.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/12.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/13.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/7.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/8.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/9.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/gradlew.bat -------------------------------------------------------------------------------- /libs/cropper/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /libs/cropper/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/build.gradle.kts -------------------------------------------------------------------------------- /libs/cropper/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/CropModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/CropModifier.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/ImageCropper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/ImageCropper.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/TouchRegion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/TouchRegion.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/crop/CropAgent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/crop/CropAgent.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/draw/ImageDrawCanvas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/draw/ImageDrawCanvas.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/draw/Overlay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/draw/Overlay.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/image/ImageScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/image/ImageScope.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/image/ImageWithConstraints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/image/ImageWithConstraints.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/AspectRatios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/AspectRatios.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropAspectRatio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropAspectRatio.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropData.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropFrame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropFrame.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropOutline.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropOutline.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropOutlineContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropOutlineContainer.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropOutlineProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/model/CropOutlineProperties.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/settings/CropDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/settings/CropDefaults.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/settings/CropFrameFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/settings/CropFrameFactory.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/settings/CropType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/settings/CropType.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/settings/Paths.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/settings/Paths.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/state/CropState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/state/CropState.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/state/CropStateImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/state/CropStateImpl.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/state/DynamicCropState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/state/DynamicCropState.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/state/StaticCropState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/state/StaticCropState.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/state/TransformState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/state/TransformState.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/ui/theme/Color.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/DimensionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/DimensionUtil.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/DrawScopeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/DrawScopeUtils.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/ImageContentScaleUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/ImageContentScaleUtil.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/OffsetUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/OffsetUtil.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/ShapeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/ShapeUtils.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/ZoomLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/ZoomLevel.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/ZoomUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/util/ZoomUtil.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/widget/AspectRatioSlectionCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/widget/AspectRatioSlectionCard.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/widget/CropFrameDisplayCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/widget/CropFrameDisplayCard.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/java/com/smarttoolfactory/cropper/widget/GridImageLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/java/com/smarttoolfactory/cropper/widget/GridImageLayout.kt -------------------------------------------------------------------------------- /libs/cropper/src/main/res/drawable/landscape2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/cropper/src/main/res/drawable/landscape2.jpg -------------------------------------------------------------------------------- /libs/gesture/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /libs/gesture/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/gesture/build.gradle.kts -------------------------------------------------------------------------------- /libs/gesture/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/gesture/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /libs/gesture/src/main/java/com/smarttoolfactory/gesture/AwaitPointerMotionEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/gesture/src/main/java/com/smarttoolfactory/gesture/AwaitPointerMotionEvent.kt -------------------------------------------------------------------------------- /libs/gesture/src/main/java/com/smarttoolfactory/gesture/MotionEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/gesture/src/main/java/com/smarttoolfactory/gesture/MotionEvent.kt -------------------------------------------------------------------------------- /libs/gesture/src/main/java/com/smarttoolfactory/gesture/PointerMotionModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/gesture/src/main/java/com/smarttoolfactory/gesture/PointerMotionModifier.kt -------------------------------------------------------------------------------- /libs/gesture/src/main/java/com/smarttoolfactory/gesture/TouchDelegateModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/gesture/src/main/java/com/smarttoolfactory/gesture/TouchDelegateModifier.kt -------------------------------------------------------------------------------- /libs/gesture/src/main/java/com/smarttoolfactory/gesture/TransformGesture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/libs/gesture/src/main/java/com/smarttoolfactory/gesture/TransformGesture.kt -------------------------------------------------------------------------------- /play_release.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/play_release.patch -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /strip_allfiles_permission.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/strip_allfiles_permission.sh -------------------------------------------------------------------------------- /strip_permission.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast4x/RiGallery/HEAD/strip_permission.sh -------------------------------------------------------------------------------- /updatedVersion/updatedVersionCode.ver: -------------------------------------------------------------------------------- 1 | 6-v0.1.5-RiGallery 2 | --------------------------------------------------------------------------------