├── .DS_Store ├── .dockerignore ├── .editorconfig ├── .github └── workflows │ ├── codeql-analysis.yml │ └── damselfly-actions.yml ├── .gitignore ├── Damselfly.Core.Constants ├── BasketChangeType.cs ├── ConfigSettings.cs ├── Damselfly.Core.Constants.csproj ├── DamselflyContants.cs ├── EmptyClass.cs ├── ExportTypes.cs ├── GridImageSizes.cs ├── JobStatus.cs ├── LoggingLevel.cs ├── NavigationContexts.cs ├── NotificationTypes.cs ├── RescanTypes.cs ├── SearchTypes.cs ├── TaskTypes.cs ├── ThumbSize.cs └── ZoomRange.cs ├── Damselfly.Core.DbModels ├── Authentication │ ├── AppIdentityUser.cs │ ├── ApplicationRole.cs │ └── RoleDefinitions.cs ├── AuthorisationRegistration.cs ├── Damselfly.Core.DbModels.csproj ├── Images │ ├── ImageProcessResult.cs │ └── ThumbConfig.cs ├── Interfaces │ ├── IBasketService.cs │ ├── ICachedDataService.cs │ ├── IConfigService.cs │ ├── IDownloadService.cs │ ├── IFileService.cs │ ├── IFolderService.cs │ ├── IImageCacheService.cs │ ├── IPeopleService.cs │ ├── IRescanService.cs │ ├── ISearchHint.cs │ ├── ISearchService.cs │ ├── IStatusService.cs │ ├── ISystemSettingsService.cs │ ├── ITagService.cs │ ├── ITaskService.cs │ ├── IThemeService.cs │ ├── IUserFolderService.cs │ ├── IUserManagementService.cs │ ├── IUserService.cs │ ├── IWordpressService.cs │ └── IWorkService.cs ├── Models │ ├── API Models │ │ ├── AIMigrationRequest.cs │ │ ├── BasketChanged.cs │ │ ├── BasketCopyRequest.cs │ │ ├── BasketCreateRequest.cs │ │ ├── BasketStateRequest.cs │ │ ├── ConfigSetRequest.cs │ │ ├── DownloadRequest.cs │ │ ├── ExifUpdateRequest.cs │ │ ├── ImageMoveRequest.cs │ │ ├── LogEntry.cs │ │ ├── NameChangeRequest.cs │ │ ├── NewUserRequest.cs │ │ ├── NewVersionResponse.cs │ │ ├── PeopleRequest.cs │ │ ├── RescanRequest.cs │ │ ├── SearchHint.cs │ │ ├── SearchResponse.cs │ │ ├── StaticData.cs │ │ ├── Statistics.cs │ │ ├── StatusUpdate.cs │ │ ├── StatusUpdateRequest.cs │ │ ├── TagUpdateRequest.cs │ │ └── UIClientState.cs │ ├── ConfigSetting.cs │ ├── ConfigSettings │ │ ├── CPULevelSettings.cs │ │ ├── DesktopAppPaths.cs │ │ ├── SMTPSettings.cs │ │ ├── SendGridSettings.cs │ │ ├── SystemConfigSettings.cs │ │ └── WordpressSettings.cs │ ├── Entities │ │ ├── Basket.cs │ │ ├── BasketEntry.cs │ │ ├── CameraLens.cs │ │ ├── ExifOperation.cs │ │ ├── ExportConfig.cs │ │ ├── Folder.cs │ │ ├── Hash.cs │ │ ├── Image.cs │ │ ├── ImageClassification.cs │ │ ├── ImageMetaData.cs │ │ ├── ImageObject.cs │ │ ├── ImageTag.cs │ │ ├── ImageTransformations.cs │ │ ├── Person.cs │ │ ├── PersonFaceData.cs │ │ ├── SearchQuery.cs │ │ ├── Tag.cs │ │ └── UserFolderState.cs │ ├── FolderListItem.cs │ ├── LoginModel.cs │ ├── ProcessJob.cs │ ├── ScheduledTask.cs │ ├── SideCars │ │ └── On1Sidecar.cs │ ├── ThemeConfig.cs │ └── TransformationModels │ │ ├── Crop.cs │ │ ├── Lighten.cs │ │ ├── Mono.cs │ │ ├── Rotation.cs │ │ ├── TransformBase.cs │ │ └── TransformationSequence.cs ├── Utils │ └── ModelExtensions.cs └── efmigrations.md ├── Damselfly.Core.ImageProcessing ├── Damselfly.Core.ImageProcessing.csproj ├── ImageMagickProcessor.cs ├── ImageProcessorFactory.cs ├── ImageSharpProcessor.cs ├── MagickNetProcessor.cs ├── ServiceRegistration.cs └── SkiaSharpProcessor.cs ├── Damselfly.Core.Interfaces ├── Damselfly.Core.Interfaces.csproj ├── IDamselflyUser.cs ├── IExportSettings.cs ├── IHashProvider.cs ├── IImageProcessResult.cs ├── IImageProcessor.cs ├── IProcessJob.cs └── ITransactionThrottle.cs ├── Damselfly.Core.ScopedServices ├── BaseConfigService.cs ├── BaseSearchService.cs ├── Client Services │ ├── ApiAuthenticationStateProvider.cs │ ├── ClientAuthService.cs │ ├── ClientBasketService.cs │ ├── ClientConfigService.cs │ ├── ClientDataService.cs │ ├── ClientDownloadService.cs │ ├── ClientExportService.cs │ ├── ClientFileService.cs │ ├── ClientFolderService.cs │ ├── ClientImageCacheService.cs │ ├── ClientPeopleService.cs │ ├── ClientRescanService.cs │ ├── ClientSearchService.cs │ ├── ClientStatusService.cs │ ├── ClientTagService.cs │ ├── ClientTaskService.cs │ ├── ClientThemeService.cs │ ├── ClientUIStateService.cs │ ├── ClientUserMgmtService.cs │ ├── ClientWordpressService.cs │ ├── ClientWorkService.cs │ └── RestClient.cs ├── Damselfly.Core.ScopedServices.csproj ├── Interfaces │ └── IAuthService.cs ├── NavigationService.cs ├── NotificationsService.cs ├── SelectionService.cs ├── ServiceRegistrations.cs ├── UserFolderService.cs ├── UserService.cs ├── ViewDataService.cs └── WebAssemblyStatusService.cs ├── Damselfly.Core.Utils ├── Damselfly.Core.Utils.csproj ├── ML │ ├── ImageDetectResult.cs │ └── MLUtils.cs └── Utils │ ├── AsyncEventConflator.cs │ ├── AuthUtils.cs │ ├── ColorUtils.cs │ ├── DateTimeExtensions.cs │ ├── DateUtils.cs │ ├── EnumerableExtensions.cs │ ├── FileUtils.cs │ ├── HashExtensions.cs │ ├── Logging.cs │ ├── ObjectCopier.cs │ ├── PathUtils.cs │ ├── PositionStream.cs │ ├── ProcessStarter.cs │ ├── ReverseTextReader.cs │ ├── ThreadUtils.cs │ └── UniqueConcurrentQueue.cs ├── Damselfly.Core ├── Damselfly.Core.csproj ├── Database │ ├── BaseModel.cs │ ├── IDataBase.cs │ └── ImageContext.cs ├── ScopedServices │ ├── BasketService.cs │ ├── CachedDataService.cs │ ├── ServerSearchService.cs │ ├── UserConfigService.cs │ ├── UserManagementService.cs │ ├── UserTagFavouritesService.cs │ └── UserThemeService.cs ├── Services │ ├── AuthService.cs │ ├── ConfigService.cs │ ├── DownloadService.cs │ ├── EmailSMTPService.cs │ ├── EmailSendGridService.cs │ ├── EmailSenderFactoryService.cs │ ├── ExifService.cs │ ├── FileService.cs │ ├── FolderService.cs │ ├── FolderWatcherService.cs │ ├── ImageCache.cs │ ├── ImageProcessService.cs │ ├── ImageRecognitionService.cs │ ├── IndexingService.cs │ ├── MetaDataService.cs │ ├── RescanService.cs │ ├── SearchQueryService.cs │ ├── ServerNotifierService.cs │ ├── ServerStatusService.cs │ ├── ServerUserStatusService.cs │ ├── StatisticsService.cs │ ├── SystemSettingsService.cs │ ├── TaskService.cs │ ├── ThemeService.cs │ ├── ThumbnailService.cs │ ├── WordpressService.cs │ └── WorkService.cs └── Utils │ ├── DBSetExtensions.cs │ ├── ExifUtils.cs │ ├── ServiceRegistrations.cs │ └── SidecarUtils.cs ├── Damselfly.Desktop ├── DesktopLogo.png ├── Dockerfile ├── build │ ├── icon.icns │ └── icon.png ├── desktop.css ├── index.html ├── main.js ├── package.json ├── preload.js └── renderer.js ├── Damselfly.ML.FaceONNX ├── Damselfly.ML.FaceONNX.csproj ├── Embeddings.cs └── FaceONNXService.cs ├── Damselfly.ML.ObjectDetection.ML ├── Damselfly.ML.ObjectDetection.csproj ├── DominantColors │ ├── DominantColorUtils.cs │ └── DominantHueColorCalculator.cs ├── Models │ ├── yolo11n-cls.onnx │ └── yolo11n.onnx └── ObjectDetector.cs ├── Damselfly.Migrations.Sqlite ├── Damselfly.Migrations.Sqlite.csproj └── Migrations │ ├── 20201020044216_InitialMigration.Designer.cs │ ├── 20201020044216_InitialMigration.cs │ ├── 20201103203314_AddCameraMetadata.Designer.cs │ ├── 20201103203314_AddCameraMetadata.cs │ ├── 20201115001741_ExifOperation.Designer.cs │ ├── 20201115001741_ExifOperation.cs │ ├── 20201119225531_ImproveIndexes.Designer.cs │ ├── 20201119225531_ImproveIndexes.cs │ ├── 20201217103821_AddHash.Designer.cs │ ├── 20201217103821_AddHash.cs │ ├── 20201229000352_AddSortDate.Designer.cs │ ├── 20201229000352_AddSortDate.cs │ ├── 20210115225147_HashIndex.Designer.cs │ ├── 20210115225147_HashIndex.cs │ ├── 20210208001123_AddFavouriteTag.Designer.cs │ ├── 20210208001123_AddFavouriteTag.cs │ ├── 20210216234523_BasketEntryIndex.Designer.cs │ ├── 20210216234523_BasketEntryIndex.cs │ ├── 20210612230853_AddKeepfolderFlag.Designer.cs │ ├── 20210612230853_AddKeepfolderFlag.cs │ ├── 20210624224858_AddMLObjects.Designer.cs │ ├── 20210624224858_AddMLObjects.cs │ ├── 20210629122153_AddObjectType.Designer.cs │ ├── 20210629122153_AddObjectType.cs │ ├── 20210722113520_AddAzureDataModel.Designer.cs │ ├── 20210722113520_AddAzureDataModel.cs │ ├── 20210730080210_AddAIUpdateDate.Designer.cs │ ├── 20210730080210_AddAIUpdateDate.cs │ ├── 20210731221458_AddImageObjectDetectionType.Designer.cs │ ├── 20210731221458_AddImageObjectDetectionType.cs │ ├── 20210817084519_AddMultiUser.Designer.cs │ ├── 20210817084519_AddMultiUser.cs │ ├── 20210826080321_AddBasketEntries.Designer.cs │ ├── 20210826080321_AddBasketEntries.cs │ ├── 20210917085954_AddCopyright.Designer.cs │ ├── 20210917085954_AddCopyright.cs │ ├── 20210922112630_AddDataProtectionKeys.Designer.cs │ ├── 20210922112630_AddDataProtectionKeys.cs │ ├── 20210928074900_FixPersonState.Designer.cs │ ├── 20210928074900_FixPersonState.cs │ ├── 20210929162756_AddFTSTriggers.Designer.cs │ ├── 20210929162756_AddFTSTriggers.cs │ ├── 20211005102942_AddHashesTable.Designer.cs │ ├── 20211005102942_AddHashesTable.cs │ ├── 20211005112145_RemoveHashColumn.Designer.cs │ ├── 20211005112145_RemoveHashColumn.cs │ ├── 20211012145105_AddHashIndexes.Designer.cs │ ├── 20211012145105_AddHashIndexes.cs │ ├── 20211015213333_AddDominantColors.Designer.cs │ ├── 20211015213333_AddDominantColors.cs │ ├── 20211116120622_AddLatLong.Designer.cs │ ├── 20211116120622_AddLatLong.cs │ ├── 20220212233025_AddRatingIndex.Designer.cs │ ├── 20220212233025_AddRatingIndex.cs │ ├── 20220404201205_AddPersonLastUpdate.Designer.cs │ ├── 20220404201205_AddPersonLastUpdate.cs │ ├── 20220714090637_AddFolderIndexes.Designer.cs │ ├── 20220714090637_AddFolderIndexes.cs │ ├── 20220715093430_AddAspectRatio.Designer.cs │ ├── 20220715093430_AddAspectRatio.cs │ ├── 20230713075836_AddTransformations.Designer.cs │ ├── 20230713075836_AddTransformations.cs │ ├── 20240305230835_AddEmbeddings.Designer.cs │ ├── 20240305230835_AddEmbeddings.cs │ ├── 20240306085004_RenamePersonGuid.Designer.cs │ ├── 20240306085004_RenamePersonGuid.cs │ ├── 20240306215424_MultipleEmbeddings.Designer.cs │ ├── 20240306215424_MultipleEmbeddings.cs │ ├── 20240308174951_AddFaceDataScore.Designer.cs │ ├── 20240308174951_AddFaceDataScore.cs │ ├── 20240309071604_AddPersonIndexes.Designer.cs │ ├── 20240309071604_AddPersonIndexes.cs │ ├── 20240416090558_AddUserFolderStates.Designer.cs │ ├── 20240416090558_AddUserFolderStates.cs │ ├── 20241012143415_DetectedChanges.Designer.cs │ ├── 20241012143415_DetectedChanges.cs │ ├── 20241230083408_AddMissingMigrations.Designer.cs │ ├── 20241230083408_AddMissingMigrations.cs │ └── ImageContextModelSnapshot.cs ├── Damselfly.Server └── Properties │ └── launchSettings.json ├── Damselfly.Shared.Utils ├── Damselfly.Shared.Utils.csproj ├── NotificationHub.cs ├── Properties │ └── launchSettings.json ├── Stopwatch.cs └── StringExtensions.cs ├── Damselfly.Web.Client ├── App.razor ├── ClientVersion.cs ├── Components │ ├── Controls │ │ ├── CacheClear.razor │ │ ├── ConflatedTextBox.razor │ │ ├── ConnectionStatus.razor │ │ ├── ConnectionStatus.razor.css │ │ ├── DamselflyLogo.razor │ │ ├── DamselflyLogo.razor.css │ │ ├── MultiSelectDropdown.razor │ │ ├── Stats.razor │ │ ├── TimedStatus.razor │ │ ├── Toast.razor │ │ ├── Toast.razor.css │ │ ├── ToolbarButton.razor │ │ ├── UIStateMonitor.razor │ │ ├── VersionChecker.razor │ │ ├── VersionChecker.razor.css │ │ └── WorkStatus.razor │ ├── General │ │ ├── Bricks.razor │ │ └── Bricks.razor.css │ ├── ImageBrowser │ │ ├── AdvancedSearchPanel.razor │ │ ├── GridImage.razor │ │ ├── GridImage.razor.css │ │ ├── ImageBrowser.razor │ │ ├── ImageBrowser.razor.css │ │ ├── ImageGrid.razor │ │ ├── ImageGrid.razor.css │ │ ├── ScrollMonitor.razor │ │ ├── SearchBar.razor │ │ ├── SearchBar.razor.css │ │ └── SelectedImages.razor │ ├── ImageViewer │ │ ├── AIObject.razor │ │ ├── AIObject.razor.css │ │ ├── ImageCanvas.razor │ │ ├── ImageCanvas.razor.css │ │ ├── ImagePreview.razor │ │ └── ImageProperties.razor │ ├── People │ │ ├── PeopleGrid.razor │ │ ├── PeopleGrid.razor.css │ │ ├── PeopleManager.razor │ │ ├── PeopleManager.razor.css │ │ ├── PersonTile.razor │ │ └── PersonTile.razor.css │ └── SideBarControls │ │ ├── BasketManager.razor │ │ ├── FolderList.razor │ │ ├── FolderList.razor.css │ │ ├── KeywordFavourites.razor │ │ ├── Keywords.razor │ │ ├── MapView.razor │ │ ├── SideBar.razor │ │ ├── SideBar.razor.css │ │ ├── SplitView.razor │ │ ├── StarRating.razor │ │ ├── TagAutoComplete.razor │ │ ├── TagList.razor │ │ └── ToolWindow.razor ├── Damselfly.Web.Client.csproj ├── Extensions │ ├── CropJsHelper.cs │ ├── ImageGridBase.cs │ ├── ListableImage.cs │ ├── MudNoAutofill.cs │ ├── ScrollView.cs │ ├── SyncfusionLicence.cs │ ├── UIConstants.cs │ └── VirtualScrollJsHelper.cs ├── Pages │ ├── AboutPage.razor │ ├── Authentication.razor │ ├── ConfigPage.razor │ ├── ExportPage.razor │ ├── HomePage.razor │ ├── ImagePage.razor │ ├── ImagePage.razor.css │ ├── LoginPage.razor │ ├── Logout.razor │ ├── PeoplePage.razor │ ├── PeoplePage.razor.css │ ├── Register.razor │ └── TagPage.razor ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ └── SkiaImageRender.cs ├── Shared │ ├── About.razor │ ├── Config.razor │ ├── Config.razor.css │ ├── DesktopAppDownload.razor │ ├── DetailedErrorBoundary.razor │ ├── DetailedErrorBoundary.razor.css │ ├── Dialogs │ │ ├── AIMigrationDialog.razor │ │ ├── AIMigrationDialog.razor.css │ │ ├── BasketDialog.razor │ │ ├── BasketMoveDialog.razor │ │ ├── ExportConfigDialog.razor │ │ ├── NameDialog.razor │ │ ├── NameDialog.razor.css │ │ ├── RescanDialog.razor │ │ └── UserDialog.razor │ ├── ExportConfigManager.razor │ ├── ExportSettings.razor │ ├── ImageField.razor │ ├── Info.razor │ ├── LocalFileExporter.razor │ ├── LogView.razor │ ├── Login.razor │ ├── LoginDisplay.razor │ ├── LoginDisplayWasm.razor │ ├── LoginForcer.razor │ ├── MainLayout.razor │ ├── MainLayout.razor.css │ ├── MenuBar.razor │ ├── MenuBar.razor.css │ ├── NavBack.razor │ ├── NavMenu.razor │ ├── NavMenu.razor.css │ ├── ProgressSpinner.razor │ ├── ProgressSpinner.razor.css │ ├── Statusbar.razor │ ├── Statusbar.razor.css │ ├── TaskList.razor │ ├── ThemeSwitcher.razor │ ├── Toolbar.razor │ └── UserManagement.razor ├── _Imports.razor └── wwwroot │ ├── Cropper │ ├── cropper.css │ ├── cropper.js │ ├── cropper.min.css │ ├── cropper.min.js │ └── damselflyCrop.js │ ├── css │ ├── DarkDateRangePicker.css │ ├── Typeahead.css │ ├── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ ├── site.css │ └── snackbar.css │ ├── damselfly-logo.png │ ├── desktop-interop │ └── electron-interop.js │ ├── favicon.ico │ ├── font-awesome │ ├── LICENSE.txt │ ├── attribution.js │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-font-face.css │ │ ├── v4-font-face.min.css │ │ ├── v4-shims.css │ │ ├── v4-shims.min.css │ │ ├── v5-font-face.css │ │ └── v5-font-face.min.css │ └── webfonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 │ ├── googlefonts │ └── googlefonts.css │ ├── icon-192.jpg │ ├── icon-512.jpg │ ├── index.html │ ├── manifest.json │ ├── no-image.png │ ├── no-person.svg │ ├── objectrects │ └── objectrects.js │ ├── service-worker.js │ ├── service-worker.published.js │ ├── vScroll │ ├── scrollMonitor.js │ └── virtualScroll.js │ └── version.js ├── Damselfly.Web.Server ├── AppInitialisation.cs ├── Areas │ └── Identity │ │ ├── Pages │ │ ├── Account │ │ │ ├── ForgotPassword.cshtml │ │ │ ├── ForgotPassword.cshtml.cs │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── ForgotPasswordConfirmation.cshtml.cs │ │ │ ├── LogIn.cshtml │ │ │ ├── LogOut.cshtml │ │ │ ├── Login.cshtml.cs │ │ │ ├── Manage.cshtml │ │ │ ├── Register.cshtml │ │ │ └── Register.cshtml.cs │ │ ├── Shared │ │ │ └── _LoginPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ └── RevalidatingIdentityAuthenticationStateProvider.cs ├── Controllers │ ├── AccountsController.cs │ ├── BasketController.cs │ ├── ConfigController.cs │ ├── DownloadController.cs │ ├── ExportController.cs │ ├── FileController.cs │ ├── FolderController.cs │ ├── ImageAPIController.cs │ ├── ImageController.cs │ ├── ImageSearchController.cs │ ├── LogController.cs │ ├── LoginController.cs │ ├── OidcConfigurationController.cs │ ├── PeopleController.cs │ ├── RescanController.cs │ ├── StaticDataController.cs │ ├── StatusController.cs │ ├── TagController.cs │ ├── TasksController.cs │ ├── ThemeController.cs │ ├── UserManagementController.cs │ ├── WordpressController.cs │ └── WorkController.cs ├── Damselfly.Web.Server.csproj ├── DamselflyOptions.cs ├── ImageContextFactory.cs ├── Pages │ ├── Error.cshtml │ └── Error.cshtml.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── runtimeconfig.template.json └── wwwroot │ ├── fonts │ └── arial.ttf │ └── themes │ ├── flat.css │ ├── green.css │ ├── grey.css │ └── white.css ├── Damselfly.sln ├── Damselfly.sln.DotSettings ├── Directory.Build.props ├── Directory.Packages.props ├── Dockerfile ├── Dockerfile-non-alpine ├── LICENSE ├── NuGet.config ├── README.md ├── VERSION ├── damselfly-entrypoint.sh ├── docker-compose.dcproj ├── docker-compose.override.yml ├── docker-compose.yml ├── docs ├── Contributing.md ├── Damselfly-AI.jpg ├── Damselfly-browsing.jpg ├── Damselfly-grouping.jpg ├── Damselfly-imageview.jpg ├── Damselfly-search.jpg ├── Damselfly-theme.jpg ├── DesktopSetup.jpg ├── FAQ.md ├── Installation.md ├── Multi-user.md ├── System-Settings.jpg ├── Technical.md ├── User-management.jpg └── cropped-Damselfly-Logo.webp ├── global.json ├── makeall.sh └── scripts ├── makedesktop.sh ├── makedocker.sh └── makeserver.sh /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/.DS_Store -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/damselfly-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/.github/workflows/damselfly-actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/.gitignore -------------------------------------------------------------------------------- /Damselfly.Core.Constants/BasketChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/BasketChangeType.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/ConfigSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/ConfigSettings.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/Damselfly.Core.Constants.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/Damselfly.Core.Constants.csproj -------------------------------------------------------------------------------- /Damselfly.Core.Constants/DamselflyContants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/DamselflyContants.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/EmptyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/EmptyClass.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/ExportTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/ExportTypes.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/GridImageSizes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/GridImageSizes.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/JobStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/JobStatus.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/LoggingLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/LoggingLevel.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/NavigationContexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/NavigationContexts.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/NotificationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/NotificationTypes.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/RescanTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/RescanTypes.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/SearchTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/SearchTypes.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/TaskTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/TaskTypes.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/ThumbSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/ThumbSize.cs -------------------------------------------------------------------------------- /Damselfly.Core.Constants/ZoomRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Constants/ZoomRange.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Authentication/AppIdentityUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Authentication/AppIdentityUser.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Authentication/ApplicationRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Authentication/ApplicationRole.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Authentication/RoleDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Authentication/RoleDefinitions.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/AuthorisationRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/AuthorisationRegistration.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Damselfly.Core.DbModels.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Damselfly.Core.DbModels.csproj -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Images/ImageProcessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Images/ImageProcessResult.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Images/ThumbConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Images/ThumbConfig.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IBasketService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/ICachedDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/ICachedDataService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IConfigService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IDownloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IDownloadService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IFileService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IFolderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IFolderService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IImageCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IImageCacheService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IPeopleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IPeopleService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IRescanService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IRescanService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/ISearchHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/ISearchHint.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/ISearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/ISearchService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IStatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IStatusService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/ISystemSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/ISystemSettingsService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/ITagService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/ITagService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/ITaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/ITaskService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IThemeService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IUserFolderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IUserFolderService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IUserManagementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IUserManagementService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IUserService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IWordpressService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IWordpressService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Interfaces/IWorkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Interfaces/IWorkService.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/AIMigrationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/AIMigrationRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/BasketChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/BasketChanged.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/BasketCopyRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/BasketCopyRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/BasketCreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/BasketCreateRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/BasketStateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/BasketStateRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/ConfigSetRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/ConfigSetRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/DownloadRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/DownloadRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/ExifUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/ExifUpdateRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/ImageMoveRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/ImageMoveRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/LogEntry.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/NameChangeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/NameChangeRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/NewUserRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/NewUserRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/NewVersionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/NewVersionResponse.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/PeopleRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/PeopleRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/RescanRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/RescanRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/SearchHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/SearchHint.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/SearchResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/SearchResponse.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/StaticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/StaticData.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/Statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/Statistics.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/StatusUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/StatusUpdate.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/StatusUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/StatusUpdateRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/TagUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/TagUpdateRequest.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/API Models/UIClientState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/API Models/UIClientState.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/ConfigSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/ConfigSetting.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/ConfigSettings/CPULevelSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/ConfigSettings/CPULevelSettings.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/ConfigSettings/DesktopAppPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/ConfigSettings/DesktopAppPaths.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/ConfigSettings/SMTPSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/ConfigSettings/SMTPSettings.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/ConfigSettings/SendGridSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/ConfigSettings/SendGridSettings.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/ConfigSettings/SystemConfigSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/ConfigSettings/SystemConfigSettings.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/ConfigSettings/WordpressSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/ConfigSettings/WordpressSettings.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/Basket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/Basket.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/BasketEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/BasketEntry.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/CameraLens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/CameraLens.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/ExifOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/ExifOperation.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/ExportConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/ExportConfig.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/Folder.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/Hash.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/Image.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/ImageClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/ImageClassification.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/ImageMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/ImageMetaData.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/ImageObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/ImageObject.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/ImageTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/ImageTag.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/ImageTransformations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/ImageTransformations.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/Person.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/PersonFaceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/PersonFaceData.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/SearchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/SearchQuery.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/Tag.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/Entities/UserFolderState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/Entities/UserFolderState.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/FolderListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/FolderListItem.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/LoginModel.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/ProcessJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/ProcessJob.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/ScheduledTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/ScheduledTask.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/SideCars/On1Sidecar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/SideCars/On1Sidecar.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/ThemeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/ThemeConfig.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/TransformationModels/Crop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/TransformationModels/Crop.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/TransformationModels/Lighten.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/TransformationModels/Lighten.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/TransformationModels/Mono.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/TransformationModels/Mono.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/TransformationModels/Rotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/TransformationModels/Rotation.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/TransformationModels/TransformBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/TransformationModels/TransformBase.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Models/TransformationModels/TransformationSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Models/TransformationModels/TransformationSequence.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/Utils/ModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/Utils/ModelExtensions.cs -------------------------------------------------------------------------------- /Damselfly.Core.DbModels/efmigrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.DbModels/efmigrations.md -------------------------------------------------------------------------------- /Damselfly.Core.ImageProcessing/Damselfly.Core.ImageProcessing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ImageProcessing/Damselfly.Core.ImageProcessing.csproj -------------------------------------------------------------------------------- /Damselfly.Core.ImageProcessing/ImageMagickProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ImageProcessing/ImageMagickProcessor.cs -------------------------------------------------------------------------------- /Damselfly.Core.ImageProcessing/ImageProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ImageProcessing/ImageProcessorFactory.cs -------------------------------------------------------------------------------- /Damselfly.Core.ImageProcessing/ImageSharpProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ImageProcessing/ImageSharpProcessor.cs -------------------------------------------------------------------------------- /Damselfly.Core.ImageProcessing/MagickNetProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ImageProcessing/MagickNetProcessor.cs -------------------------------------------------------------------------------- /Damselfly.Core.ImageProcessing/ServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ImageProcessing/ServiceRegistration.cs -------------------------------------------------------------------------------- /Damselfly.Core.ImageProcessing/SkiaSharpProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ImageProcessing/SkiaSharpProcessor.cs -------------------------------------------------------------------------------- /Damselfly.Core.Interfaces/Damselfly.Core.Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Interfaces/Damselfly.Core.Interfaces.csproj -------------------------------------------------------------------------------- /Damselfly.Core.Interfaces/IDamselflyUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Interfaces/IDamselflyUser.cs -------------------------------------------------------------------------------- /Damselfly.Core.Interfaces/IExportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Interfaces/IExportSettings.cs -------------------------------------------------------------------------------- /Damselfly.Core.Interfaces/IHashProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Interfaces/IHashProvider.cs -------------------------------------------------------------------------------- /Damselfly.Core.Interfaces/IImageProcessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Interfaces/IImageProcessResult.cs -------------------------------------------------------------------------------- /Damselfly.Core.Interfaces/IImageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Interfaces/IImageProcessor.cs -------------------------------------------------------------------------------- /Damselfly.Core.Interfaces/IProcessJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Interfaces/IProcessJob.cs -------------------------------------------------------------------------------- /Damselfly.Core.Interfaces/ITransactionThrottle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Interfaces/ITransactionThrottle.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/BaseConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/BaseConfigService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/BaseSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/BaseSearchService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ApiAuthenticationStateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ApiAuthenticationStateProvider.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientAuthService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientBasketService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientConfigService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientDataService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientDownloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientDownloadService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientExportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientExportService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientFileService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientFolderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientFolderService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientImageCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientImageCacheService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientPeopleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientPeopleService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientRescanService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientRescanService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientSearchService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientStatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientStatusService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientTagService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientTagService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientTaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientTaskService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientThemeService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientUIStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientUIStateService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientUserMgmtService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientUserMgmtService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientWordpressService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientWordpressService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/ClientWorkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/ClientWorkService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Client Services/RestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Client Services/RestClient.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Damselfly.Core.ScopedServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Damselfly.Core.ScopedServices.csproj -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/Interfaces/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/Interfaces/IAuthService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/NavigationService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/NotificationsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/NotificationsService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/SelectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/SelectionService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/ServiceRegistrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/ServiceRegistrations.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/UserFolderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/UserFolderService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/UserService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/ViewDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/ViewDataService.cs -------------------------------------------------------------------------------- /Damselfly.Core.ScopedServices/WebAssemblyStatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.ScopedServices/WebAssemblyStatusService.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Damselfly.Core.Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Damselfly.Core.Utils.csproj -------------------------------------------------------------------------------- /Damselfly.Core.Utils/ML/ImageDetectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/ML/ImageDetectResult.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/ML/MLUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/ML/MLUtils.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/AsyncEventConflator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/AsyncEventConflator.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/AuthUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/AuthUtils.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/ColorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/ColorUtils.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/DateTimeExtensions.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/DateUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/DateUtils.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/EnumerableExtensions.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/FileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/FileUtils.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/HashExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/HashExtensions.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/Logging.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/ObjectCopier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/ObjectCopier.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/PathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/PathUtils.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/PositionStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/PositionStream.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/ProcessStarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/ProcessStarter.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/ReverseTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/ReverseTextReader.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/ThreadUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/ThreadUtils.cs -------------------------------------------------------------------------------- /Damselfly.Core.Utils/Utils/UniqueConcurrentQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core.Utils/Utils/UniqueConcurrentQueue.cs -------------------------------------------------------------------------------- /Damselfly.Core/Damselfly.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Damselfly.Core.csproj -------------------------------------------------------------------------------- /Damselfly.Core/Database/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Database/BaseModel.cs -------------------------------------------------------------------------------- /Damselfly.Core/Database/IDataBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Database/IDataBase.cs -------------------------------------------------------------------------------- /Damselfly.Core/Database/ImageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Database/ImageContext.cs -------------------------------------------------------------------------------- /Damselfly.Core/ScopedServices/BasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/ScopedServices/BasketService.cs -------------------------------------------------------------------------------- /Damselfly.Core/ScopedServices/CachedDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/ScopedServices/CachedDataService.cs -------------------------------------------------------------------------------- /Damselfly.Core/ScopedServices/ServerSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/ScopedServices/ServerSearchService.cs -------------------------------------------------------------------------------- /Damselfly.Core/ScopedServices/UserConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/ScopedServices/UserConfigService.cs -------------------------------------------------------------------------------- /Damselfly.Core/ScopedServices/UserManagementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/ScopedServices/UserManagementService.cs -------------------------------------------------------------------------------- /Damselfly.Core/ScopedServices/UserTagFavouritesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/ScopedServices/UserTagFavouritesService.cs -------------------------------------------------------------------------------- /Damselfly.Core/ScopedServices/UserThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/ScopedServices/UserThemeService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/AuthService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/ConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/ConfigService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/DownloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/DownloadService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/EmailSMTPService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/EmailSMTPService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/EmailSendGridService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/EmailSendGridService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/EmailSenderFactoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/EmailSenderFactoryService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/ExifService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/ExifService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/FileService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/FolderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/FolderService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/FolderWatcherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/FolderWatcherService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/ImageCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/ImageCache.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/ImageProcessService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/ImageProcessService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/ImageRecognitionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/ImageRecognitionService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/IndexingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/IndexingService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/MetaDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/MetaDataService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/RescanService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/RescanService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/SearchQueryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/SearchQueryService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/ServerNotifierService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/ServerNotifierService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/ServerStatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/ServerStatusService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/ServerUserStatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/ServerUserStatusService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/StatisticsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/StatisticsService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/SystemSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/SystemSettingsService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/TaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/TaskService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/ThemeService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/ThumbnailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/ThumbnailService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/WordpressService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/WordpressService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Services/WorkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Services/WorkService.cs -------------------------------------------------------------------------------- /Damselfly.Core/Utils/DBSetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Utils/DBSetExtensions.cs -------------------------------------------------------------------------------- /Damselfly.Core/Utils/ExifUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Utils/ExifUtils.cs -------------------------------------------------------------------------------- /Damselfly.Core/Utils/ServiceRegistrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Utils/ServiceRegistrations.cs -------------------------------------------------------------------------------- /Damselfly.Core/Utils/SidecarUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Core/Utils/SidecarUtils.cs -------------------------------------------------------------------------------- /Damselfly.Desktop/DesktopLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Desktop/DesktopLogo.png -------------------------------------------------------------------------------- /Damselfly.Desktop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Desktop/Dockerfile -------------------------------------------------------------------------------- /Damselfly.Desktop/build/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Desktop/build/icon.icns -------------------------------------------------------------------------------- /Damselfly.Desktop/build/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Desktop/build/icon.png -------------------------------------------------------------------------------- /Damselfly.Desktop/desktop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Desktop/desktop.css -------------------------------------------------------------------------------- /Damselfly.Desktop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Desktop/index.html -------------------------------------------------------------------------------- /Damselfly.Desktop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Desktop/main.js -------------------------------------------------------------------------------- /Damselfly.Desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Desktop/package.json -------------------------------------------------------------------------------- /Damselfly.Desktop/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Desktop/preload.js -------------------------------------------------------------------------------- /Damselfly.Desktop/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Desktop/renderer.js -------------------------------------------------------------------------------- /Damselfly.ML.FaceONNX/Damselfly.ML.FaceONNX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.ML.FaceONNX/Damselfly.ML.FaceONNX.csproj -------------------------------------------------------------------------------- /Damselfly.ML.FaceONNX/Embeddings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.ML.FaceONNX/Embeddings.cs -------------------------------------------------------------------------------- /Damselfly.ML.FaceONNX/FaceONNXService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.ML.FaceONNX/FaceONNXService.cs -------------------------------------------------------------------------------- /Damselfly.ML.ObjectDetection.ML/Damselfly.ML.ObjectDetection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.ML.ObjectDetection.ML/Damselfly.ML.ObjectDetection.csproj -------------------------------------------------------------------------------- /Damselfly.ML.ObjectDetection.ML/DominantColors/DominantColorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.ML.ObjectDetection.ML/DominantColors/DominantColorUtils.cs -------------------------------------------------------------------------------- /Damselfly.ML.ObjectDetection.ML/DominantColors/DominantHueColorCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.ML.ObjectDetection.ML/DominantColors/DominantHueColorCalculator.cs -------------------------------------------------------------------------------- /Damselfly.ML.ObjectDetection.ML/Models/yolo11n-cls.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.ML.ObjectDetection.ML/Models/yolo11n-cls.onnx -------------------------------------------------------------------------------- /Damselfly.ML.ObjectDetection.ML/Models/yolo11n.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.ML.ObjectDetection.ML/Models/yolo11n.onnx -------------------------------------------------------------------------------- /Damselfly.ML.ObjectDetection.ML/ObjectDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.ML.ObjectDetection.ML/ObjectDetector.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Damselfly.Migrations.Sqlite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Damselfly.Migrations.Sqlite.csproj -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201020044216_InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201020044216_InitialMigration.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201020044216_InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201020044216_InitialMigration.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201103203314_AddCameraMetadata.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201103203314_AddCameraMetadata.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201103203314_AddCameraMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201103203314_AddCameraMetadata.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201115001741_ExifOperation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201115001741_ExifOperation.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201115001741_ExifOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201115001741_ExifOperation.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201119225531_ImproveIndexes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201119225531_ImproveIndexes.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201119225531_ImproveIndexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201119225531_ImproveIndexes.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201217103821_AddHash.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201217103821_AddHash.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201217103821_AddHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201217103821_AddHash.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201229000352_AddSortDate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201229000352_AddSortDate.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20201229000352_AddSortDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20201229000352_AddSortDate.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210115225147_HashIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210115225147_HashIndex.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210115225147_HashIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210115225147_HashIndex.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210208001123_AddFavouriteTag.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210208001123_AddFavouriteTag.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210208001123_AddFavouriteTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210208001123_AddFavouriteTag.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210216234523_BasketEntryIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210216234523_BasketEntryIndex.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210216234523_BasketEntryIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210216234523_BasketEntryIndex.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210612230853_AddKeepfolderFlag.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210612230853_AddKeepfolderFlag.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210612230853_AddKeepfolderFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210612230853_AddKeepfolderFlag.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210624224858_AddMLObjects.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210624224858_AddMLObjects.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210624224858_AddMLObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210624224858_AddMLObjects.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210629122153_AddObjectType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210629122153_AddObjectType.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210629122153_AddObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210629122153_AddObjectType.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210722113520_AddAzureDataModel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210722113520_AddAzureDataModel.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210722113520_AddAzureDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210722113520_AddAzureDataModel.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210730080210_AddAIUpdateDate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210730080210_AddAIUpdateDate.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210730080210_AddAIUpdateDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210730080210_AddAIUpdateDate.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210731221458_AddImageObjectDetectionType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210731221458_AddImageObjectDetectionType.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210731221458_AddImageObjectDetectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210731221458_AddImageObjectDetectionType.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210817084519_AddMultiUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210817084519_AddMultiUser.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210817084519_AddMultiUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210817084519_AddMultiUser.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210826080321_AddBasketEntries.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210826080321_AddBasketEntries.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210826080321_AddBasketEntries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210826080321_AddBasketEntries.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210917085954_AddCopyright.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210917085954_AddCopyright.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210917085954_AddCopyright.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210917085954_AddCopyright.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210922112630_AddDataProtectionKeys.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210922112630_AddDataProtectionKeys.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210922112630_AddDataProtectionKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210922112630_AddDataProtectionKeys.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210928074900_FixPersonState.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210928074900_FixPersonState.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210928074900_FixPersonState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210928074900_FixPersonState.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210929162756_AddFTSTriggers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210929162756_AddFTSTriggers.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20210929162756_AddFTSTriggers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20210929162756_AddFTSTriggers.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20211005102942_AddHashesTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20211005102942_AddHashesTable.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20211005102942_AddHashesTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20211005102942_AddHashesTable.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20211005112145_RemoveHashColumn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20211005112145_RemoveHashColumn.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20211005112145_RemoveHashColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20211005112145_RemoveHashColumn.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20211012145105_AddHashIndexes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20211012145105_AddHashIndexes.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20211012145105_AddHashIndexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20211012145105_AddHashIndexes.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20211015213333_AddDominantColors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20211015213333_AddDominantColors.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20211015213333_AddDominantColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20211015213333_AddDominantColors.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20211116120622_AddLatLong.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20211116120622_AddLatLong.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20211116120622_AddLatLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20211116120622_AddLatLong.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20220212233025_AddRatingIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20220212233025_AddRatingIndex.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20220212233025_AddRatingIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20220212233025_AddRatingIndex.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20220404201205_AddPersonLastUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20220404201205_AddPersonLastUpdate.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20220404201205_AddPersonLastUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20220404201205_AddPersonLastUpdate.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20220714090637_AddFolderIndexes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20220714090637_AddFolderIndexes.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20220714090637_AddFolderIndexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20220714090637_AddFolderIndexes.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20220715093430_AddAspectRatio.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20220715093430_AddAspectRatio.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20220715093430_AddAspectRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20220715093430_AddAspectRatio.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20230713075836_AddTransformations.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20230713075836_AddTransformations.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20230713075836_AddTransformations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20230713075836_AddTransformations.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240305230835_AddEmbeddings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240305230835_AddEmbeddings.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240305230835_AddEmbeddings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240305230835_AddEmbeddings.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240306085004_RenamePersonGuid.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240306085004_RenamePersonGuid.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240306085004_RenamePersonGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240306085004_RenamePersonGuid.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240306215424_MultipleEmbeddings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240306215424_MultipleEmbeddings.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240306215424_MultipleEmbeddings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240306215424_MultipleEmbeddings.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240308174951_AddFaceDataScore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240308174951_AddFaceDataScore.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240308174951_AddFaceDataScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240308174951_AddFaceDataScore.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240309071604_AddPersonIndexes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240309071604_AddPersonIndexes.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240309071604_AddPersonIndexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240309071604_AddPersonIndexes.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240416090558_AddUserFolderStates.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240416090558_AddUserFolderStates.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20240416090558_AddUserFolderStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20240416090558_AddUserFolderStates.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20241012143415_DetectedChanges.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20241012143415_DetectedChanges.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20241012143415_DetectedChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20241012143415_DetectedChanges.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20241230083408_AddMissingMigrations.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20241230083408_AddMissingMigrations.Designer.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/20241230083408_AddMissingMigrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/20241230083408_AddMissingMigrations.cs -------------------------------------------------------------------------------- /Damselfly.Migrations.Sqlite/Migrations/ImageContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Migrations.Sqlite/Migrations/ImageContextModelSnapshot.cs -------------------------------------------------------------------------------- /Damselfly.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /Damselfly.Shared.Utils/Damselfly.Shared.Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Shared.Utils/Damselfly.Shared.Utils.csproj -------------------------------------------------------------------------------- /Damselfly.Shared.Utils/NotificationHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Shared.Utils/NotificationHub.cs -------------------------------------------------------------------------------- /Damselfly.Shared.Utils/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Shared.Utils/Properties/launchSettings.json -------------------------------------------------------------------------------- /Damselfly.Shared.Utils/Stopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Shared.Utils/Stopwatch.cs -------------------------------------------------------------------------------- /Damselfly.Shared.Utils/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Shared.Utils/StringExtensions.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/App.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/ClientVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/ClientVersion.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/CacheClear.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/CacheClear.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/ConflatedTextBox.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/ConflatedTextBox.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/ConnectionStatus.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/ConnectionStatus.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/ConnectionStatus.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/ConnectionStatus.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/DamselflyLogo.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/DamselflyLogo.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/DamselflyLogo.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/DamselflyLogo.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/MultiSelectDropdown.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/MultiSelectDropdown.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/Stats.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/Stats.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/TimedStatus.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/TimedStatus.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/Toast.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/Toast.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/Toast.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/Toast.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/ToolbarButton.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/ToolbarButton.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/UIStateMonitor.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/UIStateMonitor.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/VersionChecker.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/VersionChecker.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/VersionChecker.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/VersionChecker.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/Controls/WorkStatus.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/Controls/WorkStatus.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/General/Bricks.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/General/Bricks.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/General/Bricks.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/General/Bricks.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageBrowser/AdvancedSearchPanel.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageBrowser/AdvancedSearchPanel.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageBrowser/GridImage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageBrowser/GridImage.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageBrowser/GridImage.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageBrowser/GridImage.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageBrowser/ImageBrowser.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageBrowser/ImageBrowser.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageBrowser/ImageBrowser.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageBrowser/ImageBrowser.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageBrowser/ImageGrid.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageBrowser/ImageGrid.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageBrowser/ImageGrid.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageBrowser/ImageGrid.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageBrowser/ScrollMonitor.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageBrowser/ScrollMonitor.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageBrowser/SearchBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageBrowser/SearchBar.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageBrowser/SearchBar.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageBrowser/SearchBar.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageBrowser/SelectedImages.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageBrowser/SelectedImages.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageViewer/AIObject.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageViewer/AIObject.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageViewer/AIObject.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageViewer/AIObject.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageViewer/ImageCanvas.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageViewer/ImageCanvas.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageViewer/ImageCanvas.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageViewer/ImageCanvas.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageViewer/ImagePreview.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageViewer/ImagePreview.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/ImageViewer/ImageProperties.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/ImageViewer/ImageProperties.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/People/PeopleGrid.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/People/PeopleGrid.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/People/PeopleGrid.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/People/PeopleGrid.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/People/PeopleManager.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/People/PeopleManager.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/People/PeopleManager.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/People/PeopleManager.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/People/PersonTile.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/People/PersonTile.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/People/PersonTile.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/People/PersonTile.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/BasketManager.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/BasketManager.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/FolderList.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/FolderList.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/FolderList.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/FolderList.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/KeywordFavourites.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/KeywordFavourites.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/Keywords.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/Keywords.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/MapView.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/MapView.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/SideBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/SideBar.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/SideBar.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/SideBar.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/SplitView.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/SplitView.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/StarRating.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/StarRating.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/TagAutoComplete.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/TagAutoComplete.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/TagList.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/TagList.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Components/SideBarControls/ToolWindow.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Components/SideBarControls/ToolWindow.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Damselfly.Web.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Damselfly.Web.Client.csproj -------------------------------------------------------------------------------- /Damselfly.Web.Client/Extensions/CropJsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Extensions/CropJsHelper.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/Extensions/ImageGridBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Extensions/ImageGridBase.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/Extensions/ListableImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Extensions/ListableImage.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/Extensions/MudNoAutofill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Extensions/MudNoAutofill.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/Extensions/ScrollView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Extensions/ScrollView.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/Extensions/SyncfusionLicence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Extensions/SyncfusionLicence.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/Extensions/UIConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Extensions/UIConstants.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/Extensions/VirtualScrollJsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Extensions/VirtualScrollJsHelper.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/AboutPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/AboutPage.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/Authentication.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/Authentication.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/ConfigPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/ConfigPage.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/ExportPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/ExportPage.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/HomePage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/HomePage.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/ImagePage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/ImagePage.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/ImagePage.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/ImagePage.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/LoginPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/LoginPage.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/Logout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/Logout.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/PeoplePage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/PeoplePage.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/PeoplePage.razor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/Register.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/Register.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Pages/TagPage.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Pages/TagPage.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Program.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /Damselfly.Web.Client/Services/SkiaImageRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Services/SkiaImageRender.cs -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/About.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/About.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Config.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Config.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Config.razor.css: -------------------------------------------------------------------------------- 1 | .config-tab { 2 | overflow-y: auto; 3 | } 4 | -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/DesktopAppDownload.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/DesktopAppDownload.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/DetailedErrorBoundary.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/DetailedErrorBoundary.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/DetailedErrorBoundary.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/DetailedErrorBoundary.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Dialogs/AIMigrationDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Dialogs/AIMigrationDialog.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Dialogs/AIMigrationDialog.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Dialogs/AIMigrationDialog.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Dialogs/BasketDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Dialogs/BasketDialog.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Dialogs/BasketMoveDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Dialogs/BasketMoveDialog.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Dialogs/ExportConfigDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Dialogs/ExportConfigDialog.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Dialogs/NameDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Dialogs/NameDialog.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Dialogs/NameDialog.razor.css: -------------------------------------------------------------------------------- 1 | 2 | .merge-message { 3 | margin: 10px; 4 | } 5 | -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Dialogs/RescanDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Dialogs/RescanDialog.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Dialogs/UserDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Dialogs/UserDialog.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/ExportConfigManager.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/ExportConfigManager.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/ExportSettings.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/ExportSettings.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/ImageField.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/ImageField.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Info.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Info.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/LocalFileExporter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/LocalFileExporter.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/LogView.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/LogView.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Login.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Login.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/LoginDisplay.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/LoginDisplay.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/LoginDisplayWasm.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/LoginDisplayWasm.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/LoginForcer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/LoginForcer.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/MenuBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/MenuBar.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/MenuBar.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/MenuBar.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/NavBack.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/NavBack.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/ProgressSpinner.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/ProgressSpinner.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/ProgressSpinner.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/ProgressSpinner.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Statusbar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Statusbar.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Statusbar.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Statusbar.razor.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/TaskList.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/TaskList.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/ThemeSwitcher.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/ThemeSwitcher.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/Toolbar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/Toolbar.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/Shared/UserManagement.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/Shared/UserManagement.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/_Imports.razor -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/Cropper/cropper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/Cropper/cropper.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/Cropper/cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/Cropper/cropper.js -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/Cropper/cropper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/Cropper/cropper.min.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/Cropper/cropper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/Cropper/cropper.min.js -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/Cropper/damselflyCrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/Cropper/damselflyCrop.js -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/DarkDateRangePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/DarkDateRangePicker.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/Typeahead.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/Typeahead.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/site.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/css/snackbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/css/snackbar.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/damselfly-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/damselfly-logo.png -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/desktop-interop/electron-interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/desktop-interop/electron-interop.js -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/LICENSE.txt -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/attribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/attribution.js -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/all.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/all.min.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/brands.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/brands.min.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/fontawesome.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/fontawesome.min.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/regular.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/regular.min.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/solid.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/solid.min.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/svg-with-js.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/svg-with-js.min.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/v4-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/v4-font-face.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/v4-font-face.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/v4-font-face.min.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/v4-shims.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/v4-shims.min.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/v5-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/v5-font-face.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/css/v5-font-face.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/css/v5-font-face.min.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/font-awesome/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/googlefonts/googlefonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/googlefonts/googlefonts.css -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/icon-192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/icon-192.jpg -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/icon-512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/icon-512.jpg -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/index.html -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/manifest.json -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/no-image.png -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/no-person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/no-person.svg -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/objectrects/objectrects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/objectrects/objectrects.js -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/service-worker.js -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/service-worker.published.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/service-worker.published.js -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/vScroll/scrollMonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/vScroll/scrollMonitor.js -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/vScroll/virtualScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Client/wwwroot/vScroll/virtualScroll.js -------------------------------------------------------------------------------- /Damselfly.Web.Client/wwwroot/version.js: -------------------------------------------------------------------------------- 1 | const CACHE_VERSION='4.2.2-20250105114114' 2 | -------------------------------------------------------------------------------- /Damselfly.Web.Server/AppInitialisation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/AppInitialisation.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/Account/LogIn.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/Account/LogIn.cshtml -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/Account/LogOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/Account/LogOut.cshtml -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/Account/Manage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/Account/Manage.cshtml -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Damselfly.Web.Server/Areas/Identity/RevalidatingIdentityAuthenticationStateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Areas/Identity/RevalidatingIdentityAuthenticationStateProvider.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/AccountsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/AccountsController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/BasketController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/BasketController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/ConfigController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/ConfigController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/DownloadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/DownloadController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/ExportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/ExportController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/FileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/FileController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/FolderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/FolderController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/ImageAPIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/ImageAPIController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/ImageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/ImageController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/ImageSearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/ImageSearchController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/LogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/LogController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/LoginController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/OidcConfigurationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/OidcConfigurationController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/PeopleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/PeopleController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/RescanController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/RescanController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/StaticDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/StaticDataController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/StatusController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/StatusController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/TagController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/TagController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/TasksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/TasksController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/ThemeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/ThemeController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/UserManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/UserManagementController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/WordpressController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/WordpressController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Controllers/WorkController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Controllers/WorkController.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Damselfly.Web.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Damselfly.Web.Server.csproj -------------------------------------------------------------------------------- /Damselfly.Web.Server/DamselflyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/DamselflyOptions.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/ImageContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/ImageContextFactory.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Pages/Error.cshtml -------------------------------------------------------------------------------- /Damselfly.Web.Server/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Program.cs -------------------------------------------------------------------------------- /Damselfly.Web.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /Damselfly.Web.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/appsettings.Development.json -------------------------------------------------------------------------------- /Damselfly.Web.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/appsettings.json -------------------------------------------------------------------------------- /Damselfly.Web.Server/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/runtimeconfig.template.json -------------------------------------------------------------------------------- /Damselfly.Web.Server/wwwroot/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/wwwroot/fonts/arial.ttf -------------------------------------------------------------------------------- /Damselfly.Web.Server/wwwroot/themes/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/wwwroot/themes/flat.css -------------------------------------------------------------------------------- /Damselfly.Web.Server/wwwroot/themes/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/wwwroot/themes/green.css -------------------------------------------------------------------------------- /Damselfly.Web.Server/wwwroot/themes/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/wwwroot/themes/grey.css -------------------------------------------------------------------------------- /Damselfly.Web.Server/wwwroot/themes/white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.Web.Server/wwwroot/themes/white.css -------------------------------------------------------------------------------- /Damselfly.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.sln -------------------------------------------------------------------------------- /Damselfly.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Damselfly.sln.DotSettings -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-non-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/Dockerfile-non-alpine -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 4.2.3 2 | -------------------------------------------------------------------------------- /damselfly-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/damselfly-entrypoint.sh -------------------------------------------------------------------------------- /docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docker-compose.dcproj -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/Contributing.md -------------------------------------------------------------------------------- /docs/Damselfly-AI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/Damselfly-AI.jpg -------------------------------------------------------------------------------- /docs/Damselfly-browsing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/Damselfly-browsing.jpg -------------------------------------------------------------------------------- /docs/Damselfly-grouping.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/Damselfly-grouping.jpg -------------------------------------------------------------------------------- /docs/Damselfly-imageview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/Damselfly-imageview.jpg -------------------------------------------------------------------------------- /docs/Damselfly-search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/Damselfly-search.jpg -------------------------------------------------------------------------------- /docs/Damselfly-theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/Damselfly-theme.jpg -------------------------------------------------------------------------------- /docs/DesktopSetup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/DesktopSetup.jpg -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/Installation.md -------------------------------------------------------------------------------- /docs/Multi-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/Multi-user.md -------------------------------------------------------------------------------- /docs/System-Settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/System-Settings.jpg -------------------------------------------------------------------------------- /docs/Technical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/Technical.md -------------------------------------------------------------------------------- /docs/User-management.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/User-management.jpg -------------------------------------------------------------------------------- /docs/cropped-Damselfly-Logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/docs/cropped-Damselfly-Logo.webp -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/global.json -------------------------------------------------------------------------------- /makeall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/makeall.sh -------------------------------------------------------------------------------- /scripts/makedesktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/scripts/makedesktop.sh -------------------------------------------------------------------------------- /scripts/makedocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/scripts/makedocker.sh -------------------------------------------------------------------------------- /scripts/makeserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webreaper/Damselfly/HEAD/scripts/makeserver.sh --------------------------------------------------------------------------------