1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-01 08:31:59 +00:00

Up Minor 1.4.0 (#79)

This commit is contained in:
Alex 2022-03-27 15:55:29 -05:00 committed by GitHub
parent 80fd664cc8
commit 9cbd5d1b0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 26 deletions

View file

@ -55,11 +55,13 @@ This project is under heavy development, there will be continous functions, feat
- Extract and display EXIF info. - Extract and display EXIF info.
- Real-time render from multi-device upload event. - Real-time render from multi-device upload event.
- Image Tagging/Classification based on ImageNet dataset - 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) - 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) - 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) - [Optional] Reserve geocoding using Mapbox (Generous free-tier of 100,000 search/month)
- Show asset's location information on map (OpenStreetMap). - Show asset's location information on map (OpenStreetMap).
- Show curated places on the search page - Show curated places on the search page
- Show curated objects on the search page
# Development # Development
@ -69,7 +71,7 @@ You can use docker compose for development, there are several services that comp
2. PostgreSQL 2. PostgreSQL
3. Redis 3. Redis
4. Nginx 4. Nginx
5. TensorFlow and Keras 5. TensorFlow
## Populate .env file ## Populate .env file

View file

@ -2,7 +2,7 @@ version: "3.8"
services: services:
immich_server: immich_server:
image: immich-server-dev:1.3.2 image: immich-server-dev:1.4.0
build: build:
context: ../server context: ../server
target: development target: development
@ -23,7 +23,7 @@ services:
- immich_network - immich_network
immich_microservices: immich_microservices:
image: immich-microservices-dev:1.3.2 image: immich-microservices-dev:1.4.0
build: build:
context: ../microservices context: ../microservices
target: development target: development

View file

@ -2,7 +2,7 @@ version: "3.8"
services: services:
immich_server: immich_server:
image: immich-server:1.3.2 image: immich-server:1.4.0
build: build:
context: ../server context: ../server
target: production target: production
@ -23,7 +23,7 @@ services:
- immich_network - immich_network
immich_microservices: immich_microservices:
image: immich-microservices:1.3.2 image: immich-microservices:1.4.0
build: build:
context: ../microservices context: ../microservices
target: production target: production

View file

@ -19,10 +19,10 @@ platform :ios do
desc "iOS Beta" desc "iOS Beta"
lane :beta do lane :beta do
increment_version_number( increment_version_number(
version_number: "1.3.2" version_number: "1.4.0"
) )
increment_build_number({ increment_build_number({
build_number: latest_testflight_build_number + 1 build_number: 0
}) })
build_app(scheme: "Runner", build_app(scheme: "Runner",
workspace: "Runner.xcworkspace", workspace: "Runner.xcworkspace",
@ -32,19 +32,4 @@ platform :ios do
) )
end 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 end

View file

@ -2,7 +2,7 @@ name: immich_mobile
description: A new Flutter project. description: A new Flutter project.
publish_to: "none" publish_to: "none"
version: 1.3.2+0 version: 1.4.0+0
environment: environment:
sdk: ">=2.15.1 <3.0.0" sdk: ">=2.15.1 <3.0.0"

View file

@ -3,7 +3,7 @@
export const serverVersion = { export const serverVersion = {
major: 1, major: 1,
minor: 3, minor: 4,
patch: 2, patch: 0,
build: 0, build: 0,
}; };