Up version for release

This commit is contained in:
Alex Tran 2022-09-09 23:23:37 -05:00
parent d856b35afc
commit cc4881d633
No known key found for this signature in database
GPG key ID: E4954BC787B85C8A
6 changed files with 16 additions and 6 deletions

View file

@ -27,6 +27,7 @@
- [Features](#features)
- [Screenshots](#screenshots)
- [Installation](#installation)
- [Update](#update)
- [Mobile App](#-mobile-app)
- [Development](#development)
- [Support](#support)
@ -172,6 +173,14 @@ wget -O .env https://raw.githubusercontent.com/immich-app/immich/main/docker/.en
<br/>
## Update
If you have installed, you can update the application by navigate to the directory that contains the `docker-compose.yml` file and run the following command:
```bash
docker-compose pull && docker-compose up -d
```
# Mobile app
| F-Droid | Google Play | iOS |

View file

@ -30,8 +30,8 @@ platform :android do
task: 'bundle',
build_type: 'Release',
properties: {
"android.injected.version.code" => 38,
"android.injected.version.name" => "1.28.0",
"android.injected.version.code" => 39,
"android.injected.version.name" => "1.28.1",
}
)
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 @@
* Improve Android background service reliability

View file

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

View file

@ -2,7 +2,7 @@ name: immich_mobile
description: Immich - selfhosted backup media file on mobile phone
publish_to: "none"
version: 1.28.0+38
version: 1.28.1+39
environment:
sdk: ">=2.17.0 <3.0.0"

View file

@ -11,6 +11,6 @@ export interface IServerVersion {
export const serverVersion: IServerVersion = {
major: 1,
minor: 28,
patch: 0,
build: 0,
patch: 1,
build: 39,
};