mirror of
https://github.com/immich-app/immich.git
synced 2026-01-19 18:36:06 -05:00
* Renamed multipart filed name 'files' to 'assetData'. * Added an additional field name of 'thumbnailData' to multipart form. * Implemented upload mechanism for thumbnail directly from the mobile client. * Removed dead code * Implemented a version checking mechanism.
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
// major.minor.patch+build
|
|
// check mobile/pubspec.yml for current release version
|
|
|
|
export const serverVersion = {
|
|
major: 1,
|
|
minor: 3,
|
|
patch: 0,
|
|
build: 0,
|
|
};
|