mirror of
https://github.com/immich-app/immich.git
synced 2025-01-21 00:52:43 -05:00
Up version for release
This commit is contained in:
parent
d31eddf32f
commit
a384798779
5 changed files with 13 additions and 7 deletions
|
@ -35,8 +35,8 @@ platform :android do
|
|||
task: 'bundle',
|
||||
build_type: 'Release',
|
||||
properties: {
|
||||
"android.injected.version.code" => 57,
|
||||
"android.injected.version.name" => "1.36.2",
|
||||
"android.injected.version.code" => 58,
|
||||
"android.injected.version.name" => "1.37.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')
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
* Use binary prefixes for data sizes
|
||||
* Fix not able to show device asset on Android 13
|
||||
* Use cached asset info if unchanged instead of downloading all assets
|
||||
* Add in-app logging
|
||||
* Add search mechanism to album selection page
|
||||
* Improve UI
|
|
@ -19,7 +19,7 @@ platform :ios do
|
|||
desc "iOS Beta"
|
||||
lane :beta do
|
||||
increment_version_number(
|
||||
version_number: "1.36.1"
|
||||
version_number: "1.37.0"
|
||||
)
|
||||
increment_build_number(
|
||||
build_number: latest_testflight_build_number + 1,
|
||||
|
|
|
@ -2,7 +2,7 @@ name: immich_mobile
|
|||
description: Immich - selfhosted backup media file on mobile phone
|
||||
|
||||
publish_to: "none"
|
||||
version: 1.36.2+57
|
||||
version: 1.37.0+58
|
||||
|
||||
environment:
|
||||
sdk: ">=2.17.0 <3.0.0"
|
||||
|
|
|
@ -10,7 +10,7 @@ export interface IServerVersion {
|
|||
|
||||
export const serverVersion: IServerVersion = {
|
||||
major: 1,
|
||||
minor: 36,
|
||||
patch: 2,
|
||||
build: 56,
|
||||
minor: 37,
|
||||
patch: 0,
|
||||
build: 58,
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue