1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-24 08:52:28 +02:00

pump version

This commit is contained in:
Alex Tran 2022-08-18 15:01:45 -05:00
parent 33b1410d82
commit 4805d86a7c
6 changed files with 9 additions and 6 deletions

View File

@ -30,8 +30,8 @@ platform :android do
task: 'bundle',
build_type: 'Release',
properties: {
"android.injected.version.code" => 33,
"android.injected.version.name" => "1.23.0",
"android.injected.version.code" => 34,
"android.injected.version.name" => "1.24.0",
}
)
upload_to_play_store(skip_upload_apk: true, skip_upload_images: true, skip_upload_screenshots: true, aab: '../build/app/outputs/bundle/release/app-release.aab')

View File

@ -0,0 +1,3 @@
* Feature - [Android] Background backup.
* Fixed - [iOS] Dark mode not auto switch.
* Fixed - WebSocket not getting correct data on mobile.

View File

@ -19,7 +19,7 @@ platform :ios do
desc "iOS Beta"
lane :beta do
increment_version_number(
version_number: "1.23.0"
version_number: "1.24.0"
)
increment_build_number(
build_number: latest_testflight_build_number + 1,

View File

@ -35,7 +35,7 @@ packages:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.9.0"
version: "2.8.2"
auto_route:
dependency: "direct main"
description:

View File

@ -2,7 +2,7 @@ name: immich_mobile
description: Immich - selfhosted backup media file on mobile phone
publish_to: "none"
version: 1.23.0+33
version: 1.24.0+34
environment:
sdk: ">=2.17.0 <3.0.0"

View File

@ -10,7 +10,7 @@ export interface IServerVersion {
export const serverVersion: IServerVersion = {
major: 1,
minor: 23,
minor: 24,
patch: 0,
build: 0,
};