mirror of
https://github.com/immich-app/immich.git
synced 2025-05-29 20:29:04 +02:00
* feat: delta sync * fix: ignore iCloud assets * feat: dev logs * add full sync button * remove photo_manager dep for sync * misc logs and fix * add time taken to DLog * fix: build release iOS * ios sync go brrr * rename local sync service * update isar fork * rename to platform assets / albums * fix ci check --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex <alex.tran1502@gmail.com>
29 lines
No EOL
738 B
Makefile
29 lines
No EOL
738 B
Makefile
.PHONY: build watch create_app_icon create_splash build_release_android pigeon
|
|
|
|
build:
|
|
dart run build_runner build --delete-conflicting-outputs
|
|
# Remove once auto_route updated to 10.1.0
|
|
dart format lib/routing/router.gr.dart
|
|
|
|
pigeon:
|
|
dart run pigeon --input pigeon/native_sync_api.dart
|
|
dart format lib/platform/native_sync_api.g.dart
|
|
|
|
watch:
|
|
dart run build_runner watch --delete-conflicting-outputs
|
|
|
|
create_app_icon:
|
|
flutter pub run flutter_launcher_icons:main
|
|
|
|
create_splash:
|
|
flutter pub run flutter_native_splash:create
|
|
|
|
build_release_android:
|
|
flutter build appbundle
|
|
|
|
migrations:
|
|
dart run drift_dev make-migrations
|
|
|
|
translation:
|
|
dart run easy_localization:generate -S ../i18n
|
|
dart format lib/generated/codegen_loader.g.dart
|