Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Up Minor 1.4.0 #79

Merged
merged 1 commit into from
Mar 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose.gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
19 changes: 2 additions & 17 deletions mobile/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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
4 changes: 2 additions & 2 deletions mobile/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -37,7 +37,7 @@ dependencies:
flutter_map: ^0.14.0
flutter_udid: ^2.0.0
package_info_plus: ^1.4.0

dev_dependencies:
flutter_test:
sdk: flutter
Expand Down
4 changes: 2 additions & 2 deletions server/src/constants/server_version.constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

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