mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* compare different sha1 implementations * remove openssl sha1 * sync via checksum * hash assets in batches * hash in background, show spinner in tab * undo tmp changes * migrate by clearing assets * ignore duplicate assets * error handling * trigger sync/merge after download and update view * review feedback improvements * hash in background isolate on iOS * rework linking assets with existing from DB * fine-grained errors on unique index violation * hash lenth validation * revert compute in background on iOS * ignore duplicate assets on device * fix bug with batching based on accumulated size --------- Co-authored-by: Fynn Petersen-Frey <zoodyy@users.noreply.github.com>
		
			
				
	
	
		
			37 lines
		
	
	
		
			785 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			785 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
buildscript {
 | 
						|
    ext.kotlin_version = '1.8.20'
 | 
						|
    ext.kotlin_coroutines_version = '1.7.1'
 | 
						|
    ext.work_version = '2.7.1'
 | 
						|
    ext.concurrent_version = '1.1.0'
 | 
						|
    ext.guava_version = '31.0.1-android'
 | 
						|
    ext.glide_version = '4.14.2'
 | 
						|
    repositories {
 | 
						|
        google()
 | 
						|
        mavenCentral()
 | 
						|
    }
 | 
						|
 | 
						|
    dependencies {
 | 
						|
        classpath 'com.android.tools.build:gradle:7.4.2'
 | 
						|
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
allprojects {
 | 
						|
    repositories {
 | 
						|
        google()
 | 
						|
        mavenCentral()
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
rootProject.buildDir = '../build'
 | 
						|
subprojects {
 | 
						|
    project.buildDir = "${rootProject.buildDir}/${project.name}"
 | 
						|
}
 | 
						|
subprojects {
 | 
						|
    project.evaluationDependsOn(':app')
 | 
						|
}
 | 
						|
 | 
						|
tasks.register("clean", Delete) {
 | 
						|
    delete rootProject.buildDir
 | 
						|
}
 |