[PR #1840] [CLOSED] Manually Remove Backup Assets #9239

Closed
opened 2026-02-05 14:01:06 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/1840
Author: @TCVinNYC
Created: 2/23/2023
Status: Closed

Base: mainHead: dev/remove-backed-up-assets


📝 Commits (10+)

  • b12d98c added UI and simple logic to let users delete local assets
  • 86d933d fixes crash when deleting assets
  • 7969942 manual cleanup now works, also cleaned up small flutter warnings
  • fcfdb5d cleanup and very preliminary start for automatic_device_setting
  • d876166 Merge branch 'main' into dev/remove-backed-up-assets
  • 3c02d51 cleanup and very preliminary start for automatic_device_setting
  • f0477e9 Merge branch 'dev/remove-backed-up-assets' of https://github.com/TCVinNYC/immich into dev/remove-backed-up-assets
  • 90750ba weird home_page_render_list_provider issue
  • 06885f7 Merge branch 'main' into dev/remove-backed-up-assets
  • 112fc03 merge with upstream

📊 Changes

17 files changed (+479 additions, -226 deletions)

View changed files

📝 mobile/assets/i18n/en-US.json (+6 -0)
📝 mobile/ios/Podfile.lock (+13 -15)
📝 mobile/ios/Runner/AppDelegate.swift (+2 -2)
📝 mobile/ios/Runner/BackgroundSync/BackgroundServicePlugin.swift (+1 -1)
📝 mobile/lib/main.dart (+3 -2)
📝 mobile/lib/modules/asset_viewer/views/gallery_viewer.dart (+4 -2)
📝 mobile/lib/modules/backup/providers/backup.provider.dart (+12 -3)
📝 mobile/lib/modules/home/ui/control_bottom_app_bar.dart (+2 -0)
📝 mobile/lib/modules/home/ui/delete_dialog.dart (+10 -4)
📝 mobile/lib/modules/settings/services/app_settings.service.dart (+3 -1)
mobile/lib/modules/settings/ui/cleanup_device_settings/automatic_device_setting.dart (+55 -0)
mobile/lib/modules/settings/ui/cleanup_device_settings/cleanup_device_setting.dart (+49 -0)
mobile/lib/modules/settings/ui/cleanup_device_settings/manual_device_cleanup.dart (+80 -0)
📝 mobile/lib/modules/settings/views/settings_page.dart (+5 -0)
📝 mobile/lib/shared/providers/asset.provider.dart (+13 -0)
📝 mobile/pubspec.lock (+220 -196)
📝 mobile/pubspec.yaml (+1 -0)

📄 Description

Allow users to have the option to remove assets already backed up in their Immich server.

(I'm back for this again haha)


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/immich-app/immich/pull/1840 **Author:** [@TCVinNYC](https://github.com/TCVinNYC) **Created:** 2/23/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dev/remove-backed-up-assets` --- ### 📝 Commits (10+) - [`b12d98c`](https://github.com/immich-app/immich/commit/b12d98cc922bf07b4235f877a615eb258e4a2c81) added UI and simple logic to let users delete local assets - [`86d933d`](https://github.com/immich-app/immich/commit/86d933dad0e3f5b2921bf9cebe9313123e54a3c6) fixes crash when deleting assets - [`7969942`](https://github.com/immich-app/immich/commit/7969942f341ecfafc34ad96e1086e3c9b5fd14c5) manual cleanup now works, also cleaned up small flutter warnings - [`fcfdb5d`](https://github.com/immich-app/immich/commit/fcfdb5dd871e9254250fa2eec14f6030fdac9ed7) cleanup and very preliminary start for automatic_device_setting - [`d876166`](https://github.com/immich-app/immich/commit/d8761663c77cdd947f19e8fa637b5df4c3460268) Merge branch 'main' into dev/remove-backed-up-assets - [`3c02d51`](https://github.com/immich-app/immich/commit/3c02d51979f5ccd379f2f6a8e661f30c3ddf33d1) cleanup and very preliminary start for automatic_device_setting - [`f0477e9`](https://github.com/immich-app/immich/commit/f0477e9fcf4ddefb6e3fccc24ae2bdae23f3f00a) Merge branch 'dev/remove-backed-up-assets' of https://github.com/TCVinNYC/immich into dev/remove-backed-up-assets - [`90750ba`](https://github.com/immich-app/immich/commit/90750babac3f655a6afc70a480b6f53771fc5739) weird home_page_render_list_provider issue - [`06885f7`](https://github.com/immich-app/immich/commit/06885f74992b13bf4602d1582ad7c89ccd2197fc) Merge branch 'main' into dev/remove-backed-up-assets - [`112fc03`](https://github.com/immich-app/immich/commit/112fc0356f92e4a73a87adfd9b5f478f1a014d22) merge with upstream ### 📊 Changes **17 files changed** (+479 additions, -226 deletions) <details> <summary>View changed files</summary> 📝 `mobile/assets/i18n/en-US.json` (+6 -0) 📝 `mobile/ios/Podfile.lock` (+13 -15) 📝 `mobile/ios/Runner/AppDelegate.swift` (+2 -2) 📝 `mobile/ios/Runner/BackgroundSync/BackgroundServicePlugin.swift` (+1 -1) 📝 `mobile/lib/main.dart` (+3 -2) 📝 `mobile/lib/modules/asset_viewer/views/gallery_viewer.dart` (+4 -2) 📝 `mobile/lib/modules/backup/providers/backup.provider.dart` (+12 -3) 📝 `mobile/lib/modules/home/ui/control_bottom_app_bar.dart` (+2 -0) 📝 `mobile/lib/modules/home/ui/delete_dialog.dart` (+10 -4) 📝 `mobile/lib/modules/settings/services/app_settings.service.dart` (+3 -1) ➕ `mobile/lib/modules/settings/ui/cleanup_device_settings/automatic_device_setting.dart` (+55 -0) ➕ `mobile/lib/modules/settings/ui/cleanup_device_settings/cleanup_device_setting.dart` (+49 -0) ➕ `mobile/lib/modules/settings/ui/cleanup_device_settings/manual_device_cleanup.dart` (+80 -0) 📝 `mobile/lib/modules/settings/views/settings_page.dart` (+5 -0) 📝 `mobile/lib/shared/providers/asset.provider.dart` (+13 -0) 📝 `mobile/pubspec.lock` (+220 -196) 📝 `mobile/pubspec.yaml` (+1 -0) </details> ### 📄 Description Allow users to have the option to remove assets already backed up in their Immich server. (I'm back for this again haha) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 14:01:06 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#9239