mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	Up Minor 1.4.0 (#79)
This commit is contained in:
		| @@ -55,11 +55,13 @@ This project is under heavy development, there will be continous functions, feat | ||||
| - Extract and display EXIF info. | ||||
| - Real-time render from multi-device upload event. | ||||
| - Image Tagging/Classification based on ImageNet dataset | ||||
| - Object detection based on COCO SSD. | ||||
| - Search assets based on tags and exif data (lens, make, model, orientation) | ||||
| - Upload assets from your local computer/server using [immich cli tools](https://www.npmjs.com/package/immich) | ||||
| - [Optional] Reserve geocoding using Mapbox (Generous free-tier of 100,000 search/month) | ||||
| - Show asset's location information on map (OpenStreetMap). | ||||
| - Show curated places on the search page | ||||
| - Show curated objects on the search page | ||||
|  | ||||
| # Development | ||||
|  | ||||
| @@ -69,7 +71,7 @@ You can use docker compose for development, there are several services that comp | ||||
| 2. PostgreSQL | ||||
| 3. Redis | ||||
| 4. Nginx | ||||
| 5. TensorFlow and Keras | ||||
| 5. TensorFlow | ||||
|  | ||||
| ## Populate .env file | ||||
|  | ||||
|   | ||||
| @@ -2,7 +2,7 @@ version: "3.8" | ||||
|  | ||||
| services: | ||||
|   immich_server: | ||||
|     image: immich-server-dev:1.3.2 | ||||
|     image: immich-server-dev:1.4.0 | ||||
|     build: | ||||
|       context: ../server | ||||
|       target: development | ||||
| @@ -23,7 +23,7 @@ services: | ||||
|       - immich_network | ||||
|  | ||||
|   immich_microservices: | ||||
|     image: immich-microservices-dev:1.3.2 | ||||
|     image: immich-microservices-dev:1.4.0 | ||||
|     build: | ||||
|       context: ../microservices | ||||
|       target: development | ||||
|   | ||||
| @@ -2,7 +2,7 @@ version: "3.8" | ||||
|  | ||||
| services: | ||||
|   immich_server: | ||||
|     image: immich-server:1.3.2 | ||||
|     image: immich-server:1.4.0 | ||||
|     build: | ||||
|       context: ../server | ||||
|       target: production | ||||
| @@ -23,7 +23,7 @@ services: | ||||
|       - immich_network | ||||
|  | ||||
|   immich_microservices: | ||||
|     image: immich-microservices:1.3.2 | ||||
|     image: immich-microservices:1.4.0 | ||||
|     build: | ||||
|       context: ../microservices | ||||
|       target: production | ||||
|   | ||||
| @@ -19,10 +19,10 @@ platform :ios do | ||||
|   desc "iOS Beta" | ||||
|   lane :beta do | ||||
|     increment_version_number( | ||||
|       version_number: "1.3.2" | ||||
|       version_number: "1.4.0" | ||||
|     ) | ||||
|     increment_build_number({ | ||||
|       build_number: latest_testflight_build_number + 1 | ||||
|       build_number: 0 | ||||
|     }) | ||||
|     build_app(scheme: "Runner", | ||||
|               workspace: "Runner.xcworkspace", | ||||
| @@ -32,19 +32,4 @@ platform :ios do | ||||
|     ) | ||||
|   end | ||||
|  | ||||
|   desc "iOS Release" | ||||
|   lane :release do  | ||||
|     increment_version_number( | ||||
|       version_number: "1.3.2" | ||||
|     ) | ||||
|     increment_build_number({ | ||||
|       build_number: latest_testflight_build_number + 1 | ||||
|     }) | ||||
|     build_app(scheme: "Runner", | ||||
|               workspace: "Runner.xcworkspace", | ||||
|               xcargs: "-allowProvisioningUpdates") | ||||
|     upload_to_testflight( | ||||
|       skip_waiting_for_build_processing: true | ||||
|     ) | ||||
|   end | ||||
| end | ||||
|   | ||||
| @@ -2,7 +2,7 @@ name: immich_mobile | ||||
| description: A new Flutter project. | ||||
|  | ||||
| publish_to: "none" | ||||
| version: 1.3.2+0 | ||||
| version: 1.4.0+0 | ||||
|  | ||||
| environment: | ||||
|   sdk: ">=2.15.1 <3.0.0" | ||||
|   | ||||
| @@ -3,7 +3,7 @@ | ||||
|  | ||||
| export const serverVersion = { | ||||
|   major: 1, | ||||
|   minor: 3, | ||||
|   patch: 2, | ||||
|   minor: 4, | ||||
|   patch: 0, | ||||
|   build: 0, | ||||
| }; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user