Releases: immich-app/immich
v1.118.2
Warning
Version v1.118.0 contains breaking changes. Read about them here.
Hotfixes
This release fixes images from Whatsapp failing to be processed, as well as an issue with video thumbnail generation failing in some cases. It also includes the FFmpeg 6.0 -> 7.0 upgrade that was scheduled for the next release, but oh well 🙃
What's Changed
🐛 Bug fixes
- fix: styling for last image in person grid by @MananJain-IITJ in #13444
- fix(server): ffmpeg matrices by @lyynd in #13461
New Contributors
- @MananJain-IITJ made their first contribution in #13444
Full Changelog: v1.118.1...v1.118.2
v1.118.1
Warning
Version v1.118.0 contains breaking changes. Read about them here.
Hotfixes
This release fixes some bugs introduced in version v1.118.0, specifically an issue with Google OAuth and mobile.
What's Changed
🐛 Bug fixes
📚 Documentation
New Contributors
Full Changelog: v1.118.0...v1.118.1
v1.118.0
v1.118.0
Welcome to release v1.118.0
of Immich. This version comes with several breaking changes, and also improvements to the mobile app UI and UX, a new documentation home page, as well as bug fixes and enhancements across the app. We hope you enjoy this release!
Warning
Breaking changes
This release includes the following breaking changes:
- Port alignment
- Remove deprecated API endpoints
- Remove deprecated
start.sh
arguments
1. Port alignment
We aligned the internal port of the immich-server
to be similar to the binding port. Please make the following change to your docker-compose.yml
file under the immich-server
section. Reverse proxies using port 3001 also need to be updated to use port 2283.
services:
immich-server:
container_name: immich_server
...
ports:
- - 2283:3001
+ - 2283:2283
...
2. Remove deprecated API endpoints
The following endpoints were previously deprecated and have been removed, if you are a community project maintainer and using one of the endpoints below, please make sure to make changes to your project:
/api/server-info/*
has been removed. Use/api/server/*
instead./api/people/:id/assets
has been removed. Use/api/search/metadata
instead.
Note
This includes /api/server-info/ping
, /api/server-info/version
, /api/server-features
, /api/server-info/config
, /api/server-info/statistics
, and others.
3. Remove deprecated start.sh
arguments
The following docker commands have been removed:
start.sh immich
start.sh microservices
Follow the steps below to align docker-compose.yml
with the default setup.
Note
These steps are only required if you still have the immich-microservices
section in your docker-compose.yml
or didn't follow the previous instructions to remove the command section. If you don't have the mentioned content below, you can ignore this
1. Update docker-compose.yml
Remove the command
line from immich-server
and the entire immich-microservices
service section as shown below.
services:
immich-server:
container_name: immich_server
...
:
- command: [ "start.sh", "immich" ]
...
- immich-microservices:
- container_name: immich_microservices
- ...
- :
- command: [ "start.sh", "microservices" ]
- ...
2. Remove the running immich-microservices
container
Run docker compose down --remove-orphans
after updating docker-compose.yml
to remove the old immich-microservices
container.
Highlights
Some of the highlights for this release include the following:
- Mobile UI/UX improvement
- Option to refresh face detection
- Color filters for editing photos
- Timezone improvements
- Deprecated release notes section
- Better JPEG compression
- Multi-GPU support for ML
Mobile UI/UX improvement
Thank you all for the great feedback from the dicussion we made a month ago about the proposed changes to the mobile app layout. We hope the following changes will provide more fluid experience when browing and managing your photos and videos.
Navigation bar
Photos and albums are the two most used pages. To make them more accessible, we replaced the Sharing
page with a new Albums
page where you can find all of the album related features and functions.
Albums page
This new page allows users to quickly view, sort, search, filter, create, and manage albums.
Library page
The library page now includes quick access buttons to various views, including
- Favorites
- Archived
- Shared links
- Trash
- People
- Places
- Device albums
- Partner sharing
Search page
Many of the items that were previously on this page have been moved to the Library
page, mentioned above. As a result, the search page is less cluttered and includes quick access search chips and queries. Also, clicking on the search navbar item a second time will focus on the search bar and open the keyboard for easy access.
Color filters for editing photos
This release introduces colors filter option in the edit menu on the mobile app. You can apply a set of presets colors to your photo. Thanks @Yuvi-raj-P for your contribution.
Timezone improvements
Images without timezones could previously show up incorrectly in the timeline if the server had a timezone (TZ=...
) set. This has been fixed and can be corrected by running metadata extraction on all assets.
Deprecated release notes section
Future releases will now include a "Deprecated" section in the release notes, including details of API endpoints and other changes that will become breaking changes in a future release. Moving forward, we plan to use this section of the release notes as our primary communication method for these types of changes.
Refresh face detection
Assets now have a Refresh faces
option to update the set of detected faces based on the current face detection threshold. Likewise, there is a new Refresh
button for Face Detection in the Jobs page that does the same for all assets.
Importantly, this does not clear all recognized people like the All
button (renamed to Reset
). If you find that a different detection threshold works better for your library and want to apply that new value to existing assets, Refresh
will simply add or remove faces to apply this change.
It will only ever delete faces detected through machine learning, not EXIF. Speaking of EXIF-sourced faces, they can now be used to recognize detected faces as a result of this feature. This means the facial recognition process can share the same people listed in face metadata instead of duplicating them.
Better JPEG compression
Immich now uses Jpegli, a new library leveraging the advancements of JPEG XL to shrink JPEG file size at the same (or higher) quality. This change narrows the gap between JPEG and WebP compression considerably, especially at high quality.
Multi-GPU support for ML
It is now possible for a single instance of the machine learning service to use more than one GPU. Previously, this required several services and a load balancer in front. See the documentation for instructions.
Support Immich
If you find the project helpful, you can support Immich by purchasing a product key at https://buy.immich.app.
Cheers! 🍻
What's Changed
🚨 Breaking Changes
- refactor(server): worker env by @jrasm91 in #13160
- chore: remove deprecated controller by @jrasm91 in #13189
- chore: remove deprecated endpoint by @jrasm91 in #13190
- feat: align compose ports by @jrasm91 in #13185
🚀 Features
- feat(server): refresh face detection by @mertalev in #12335
- feat(mobile): Adding filters feature to mobile image editor by @Yuvi-raj-P in #13174
- feat(ml): round-robin device assignment by @mertalev in #13237
- feat(mobile): new mobile UI by @alextran1502 in #12582
🌟 Enhancements
- feat(doc): new homepage design and font by @alextran1502 in #13084
- chore(mobile): search page minor enhancements by @alextran1502 in #13403
- fix(mobile): more efficient loading local image on ios by @alextran1502 in #13426
🐛 Bug fixes
- fix(mobile): respect orientation on displaying asset dimensions by @Yagnap in #13129
- fix(server): UTC+13 timezones treated as invalid during exif parsing by @C-Otto in #13176
- fix(server): external libraries queueing two transcode jobs by @zackpollard in #13251
- fix(server): Allow commas and braces in import paths by @etnoy in #13259
- fix(server): searching with both
personIds
andwithPeople
by @mertalev in #13254 - fix(web): video player on Safari by @alextran1502 in #13242
- fix(server): timezones by @jrasm91 in https://gi...
v1.117.0
v1.117.0
Warning
Breaking changes
The image
section of the config file structure for thumbnails and previews has changed. If you use a config file and set the image settings to custom values, these will be ignored until updated to the new structure.
…
"image": {
- “previewFormat”: “jpeg”,
- “previewSize”: 1440,
- “quality”: 80,
- “thumbnailFormat”: “webp”,
- “thumbnailSize”: 250,
+ "thumbnail": {
+ "format": "webp",
+ "size": 250,
+ "quality": 80
+ },
+ "preview": {
+ "format": "jpeg",
+ "size": 1440,
+ "quality": 80
+ },
"colorspace": "p3",
"extractEmbedded": false
}
…
Highlights
Welcome to release v1.117.0
of Immich. This release continues to bring bugfixes and additional enhancements to the app. Let's go over some of the highlights below:
- Better folder checks
- Download notifications (mobile)
- Support and feedback links (web)
- Upgrade history
- Asset thumbnail improvements
Better folder checks
This release fixes a few more issues with the .immich
related checks.
- Ignore errors when
.immich
already exists, but mount checks aren't enabled - Add a docs page about System Integrity
- Add an env option to skip mount checks (
IMMICH_IGNORE_MOUNT_CHECK_ERRORS=true
)
Download notifications (mobile)
Downloads now show their progress and can be canceled
Support and feedback links (web)
Links have been added to the Immich web application to help users more easily find our documentation, source code, discord, etc. Also, third party packages have the option to additionally include their own links.
Upgrade history
Clicking on the server build number on the web will now also show upgrade history, in addition to other build information.
In the future we may look at combining this information with the new support/help modal.
Light | Dark |
---|---|
Asset thumbnail improvements
Combined jobs
Thumbnails are critical to keep Immich feeling snappy. We currently generate a "preview" (large), a "thumbnail" (small), and a "thumbhash" (very small) for each asset. Prior to this release each version for each asset was a separate job. Now they have been combined into a single job, per asset. This makes the jobs page much more accurate and useful. It also means thumbnails generate faster, and use less system resources (see below).
In order from left to right:
- Previews generation start on old version
- Previews generation completed old version (starting thumbnails)
- Thumbnail generation finished old version
- Thumbnail generation started on new version
- Thumbnail generation finished on new version
Common settings
Previews and thumbnails can now both set desired format
, resolution
, and quality
settings.
Support Immich
If you find the project helpful, you can support Immich by purchasing a product key at https://buy.immich.app.
Cheers! 🍻
What's Changed
🚀 Features
- feat: support and feedback modal with third party support by @zackpollard in #13056
- feat: track upgrade history by @jrasm91 in #13097
🌟 Enhancements
- feat(server): better transcoding logs by @mertalev in #13000
- feat(server): separate quality for thumbnail and preview images by @mertalev in #13006
- feat(server): generate all thumbnails for an asset in one job by @mertalev in #13012
- feat(mobile): enhance download operations by @alextran1502 in #12973
- feat(server): parse offset from "Image_UTC_Data" (Samsung) by @C-Otto in #13080
- feat(server): better mount checks by @jrasm91 in #13092
🐛 Bug fixes
- fix(server): "all" button for facial recognition deleting faces instead of unassigning them by @mertalev in #13042
- fix(server):
/search/random
failing with certain options by @mertalev in #13040 - fix(mobile): share to error by @alextran1502 in #13044
- fix: deletedAt not set for offline assets during 1.116.0 migration by @zackpollard in #13086
- fix(server): offline assets don't restore when coming back online by @zackpollard in #13087
📚 Documentation
- docs: update config file by @mertalev in #13041
- fix(docs): Update TrueNAS installation docs by @PetrSvirak in #13017
🌐 Translations
- chore(web): update translations by @weblate in #12938
- chore: add more languages by @danieldietzler in #13127
New Contributors
- @PetrSvirak made their first contribution in #13017
Full Changelog: v1.116.2...v1.117.0
v1.116.2
v1.116.2
Hotfixes
- Fixed an issue library jobs not working correctly
Support Immich
If you find the project helpful, you can support Immich by purchasing a product key at https://buy.immich.app.
Cheers! 🍻
What's Changed
🐛 Bug fixes
- fix: library pagination to 10k to avoid too many postgres query params by @zackpollard in #12993
📚 Documentation
Full Changelog: v1.116.1...v1.116.2
v1.116.1
v1.116.1
Hotfixes
- Fixed an issue of putting the app in the background on the login screen, causing the signing progress to hang on the mobile app
- Fixed an issue of incorrectly getting the original filename on iOS
- Fixed handling of numeric hierarchical subject values in tags
Support Immich
If you find the project helpful, you can support Immich by purchasing a product key at https://buy.immich.app.
Cheers! 🍻
What's Changed
🌟 Enhancements
- fix(mobile): navigation panel overlaps with right rotate by @Lauritz-Tieste in #12950
- feat: no slideshow transition by @martabal in #12989
🐛 Bug fixes
- fix(server): handle numeric hierarchical subject values by @jrasm91 in #12949
- fix(mobile): uninitialize provider causes unable to logging in by @alextran1502 in #12970
- fix(mobile): incorrect filename is retrieved during upload by @alextran1502 in #12990
📚 Documentation
- docs: add clarity to non root user section by @GusPrice in #12956
- refactor(docs): fix heading tag, update Vietnamese translation for image alt, formatting features table by @KD-MM2 in #12971
- chore(Brazilian README): fix broken image links and update translation by @ryanrpj in #12980
New Contributors
Full Changelog: https://github.com/immich-app/immich/compare/v1.116.0...
v1.116.0
v1.116.0
Highlights
Welcome to release v1.116.0
of Immich!
This release continues to focus on bug fixes, which is quite typical for us, especially after large releases. Highlights for this release include:
- Improved
.immich
file boot checks - Improved external library scanning
- Timezone improvements
- Tag clean up job
- Better person merge workflow
- Improve settings pages (web)
- Fixed possible startup failure due to .immich files
- Serve
style.json
directly fromtiles.immich.app
- New "random" api for 3rd party apps
- Notable fix: Uncaught error causes the hashing process to abort entirely in the mobile app
Issues with .immich files on boot in 1.115.0
There were a small number of users who experienced problems with booting Immich after upgrading to 1.115.0. This was due to the new .immich file checks that verify your library folders are still mounted and writable. If, and only if you had problems booting 1.115.0 that persist into 1.116.0 with an error of "Unable to write .immich file, already exists", you can fix this by stopping Immich and removing the .immich files in the UPLOAD_LOCATION subfolders (upload, library, thumbnails, etc). If you experience any further problems, please do contact us on discord or via a github discussion.
Improved external library scanning
The external library scan mechanism has been reduced from four seperate options, to one. There is now a single button "Scan" that will handle all cases. Files that are offline (deleted or missing) now get hidden from the timeline and will show in the trash folder. This will become a dedicated screen in a future release. If the file comes back online, then the assets will re-appear in the main timeline and albums they were in previously. If the asset is offline for longer than the trash duration set in the admin config, the assets will be removed from immich automatically
Timezone improvements
Previously, if the timezone of an asset was unknown, it would apply an arbitrary offset by assuming the time was UTC and adjusting it to the viewer's timezone. Now, a timezone will only be shown if it is known for the asset.
Before | After |
---|---|
Tag cleanup job
If you have tags with no assets in them, you can remove them by running the "Tag clean up" job
here.
Better person merge workflow
The merge page always uses the same direction to merge people together. The "source" gets merged into the "target". However, sometimes the target is an unnamed person. Now, in these situations, the merge direction is automatically reversed, leading to a better user experience.
Serve style.json
directly from tiles.immich.app
Up to this release, the immich server served the style.json
file. That file includes the styling of the map as well as the font/glyphs/tiles provider. However, this also means that tile server updates were always bound to immich server updates. With this change, we decouple the two by serving the (static)style.json
file from the infrastructure we serve the map tiles. This is also in line with pretty much any other map/tile provider. This change will assist us in bringing map improvements to all users in the future, such as map localisation without having to manage multiple different immich versions.
However, note that this does not affect the ability to specify a different style.json
URL in the admin settings.
UI improvement for settings pages
Each setting now has a new design accordion section with a distinguishable icon to help identify it easier as the options get longer. You can also search for the administration settings by their title and subtitle in your native language.
New "random" API
We are deprecating GET /assets/random
in favor of POST /search/random
, which works very similar to the other search endpoints. It includes more relations and filters. In the future, we plan to add an option to search and filter by a specific album ID.
Support Immich
If you find the project helpful, you can support Immich by purchasing a product key at https://buy.immich.app.
Cheers! 🍻
What's Changed
🌟 Enhancements
- fix(web): better merge direction by @jrasm91 in #12601
- fix(server): include partner assets in random endpoint by @jrasm91 in #12599
- feat: tag cleanup job by @jrasm91 in #12654
- feat(web): improve UI/UX for settings pages by @alextran1502 in #12626
- feat(server): sort assets randomly from the API 'api/search/metadata' endpoint by including 'order': 'rand' in the API call. by @jschwalbe in #12741
- feat: serve map tile styles from tiles.immich.cloud by @zackpollard in #12858
- feat(web): fixed combobox positioning by @ben-basten in #12848
- refactor(server): library syncing by @etnoy in #12220
🐛 Bug fixes
- fix(web): load original panorama if specified in user settings by @Saschl in #12123
- fix(web): bucket by
localDateTime
by @jrasm91 in #12612 - fix(web): memory viewer by @jrasm91 in #12649
- fix(server): increase person search limit by @jrasm91 in #12619
- fix(web): scrollbar shows when not need by @alextran1502 in #12659
- fix(server): fix modify date extraction by @alextran1502 in #12658
- fix: empty and restore over 1,000 items by @jrasm91 in #12751
- fix(web): upgrade old style theme preference by @jrasm91 in #12775
- fix(web): asset grid with invalid asset id (at) by @jrasm91 in #12772
- fix: creating tags with leading/traling slashes by @danieldietzler in #12778
- fix(web): only show the timezone when it is known by @jrasm91 in #12779
- fix(mobile): Issue Selecting Many Albuns for Backup by @sshubhm in #12784
- fix: rework file handling so we always explicitly create, overwrite or both by @zackpollard in #12812
- fix(mobile): fix uncaught error in getting file cause hashing procses to be aborted entirely by @alextran1502 in #12826
- feat(server): validate rating by @dreadster3 in #12855
- fix(web): Fix same key for delete and stack actions by @Caesiumhydroxid in #12865
- fix: normalize external domain by @danieldietzler in #12831
- fix(server): gracefully handle unknown jobs by @jrasm91 in #12870
- fix: show asset count for unassigned faces by @danieldietzler in #12871
- fix: remove no longer needed LD_LIBRARY_PATH by @jrasm91 in #12872
- fix: set min values for face detection to reasonable values by @danieldietzler in #12877
- fix: album title state weirdness by @danieldietzler in #12874
- fix: do not use trashed assets as album covers by @jrasm91 in #12905
- fix(server): http error parsing on endpoints without a default response by @jrasm91 in #12927
- fix(web): delete non-empty album by @jrasm91 in #12937
📚 Documentation
- docs: scaling immich guide by @bo0tzz in #12593
- docs: add hint for healthcheck.start_interval by @kastl-ars in #12643
- docs: mobile architecture diagram by @fyfrey in #12841
- docs: add section for Traefik Reverse Proxy by @zp33dy in #12813
- fix(docs): typo in remote-access.md by @JonOcto in #12895
- docs: details for windows users how to change docker volume by @mmomjian in #12551
- docs: hidden files cursed knowledge by @jrasm91 in #12929
🌐 Translations
- fix(mobile): fix mn-MN.json file name by @aryiu in #12558
- chore(web): update translations by @weblate in #12590
- chore(web): update translations by @weblate in #12737
...
v1.115.0
v1.115.0
Note
We are working on redesigning the flows and layout of the mobile app to incorporate recently added features such as folders and tags, as well as making improvements to album management on the mobile app. We are gathering feedback in this discussion. We are excited to hear your feedback.
Welcome to release v1.115.0
of Immich. This release focuses on cleaning up our backlog of issues. It is also worth noting that the Cursed knowledge page has been updated with even more cursed knowledge. Please find some of the release highlights below:
- Administration button
- Manually link and unlink Live motion photos
- Default exclusion patterns
- Start-up folder checks
- Upload trash indicator
Notable bug fixes include:
- Signing out of the web now signs out of all tabs
- Long-standing issue regarding inaccurate album asset count has been fixed
- Search text is preserved when switching between "Context" and "File name or extension"
- Editing a person's name or birthdate on mobile has been fixed
Administration button
The Administration
button on the web is now moved inside the profile sheet to clean up the top app bar and improve the navigation experience for all screen sizes.
Manually link and unlink Live motion photos
Live photos (iOS) can now be manually linked an unlinked.
Screencast.from.09-11-2024.10.15.57.AM.webm
Default exclusion patterns
We have added default exclusion patterns whenever a new external library is created. By default, we exclude the @eaDir
folder Synology uses to store miscellaneous files and any files beginning with ._
. Of course, you can edit these patterns if you want to, but this is highly unlikely.
Startup folder checks
Immich will now fail to start if it is unable to read/write to upload/
, library/
, thumbs/
, encoded-videos/
or profile/
. Starting with this release, the server will write an .immich
file to each of the previously listed folders. On subsequent restarts, it will fail to start if it fails to locate the previously written .immich
file. This will hopefully increase transparency around situations where the UPLOAD_LOCATION
mount is incorrectly configured or unavailable.
Upload trash indicator
When you upload a duplicate via the web and that duplicate is in the trash, you now will see an indicator for it, along with being able to open the asset in a new tab.
Light | Dark |
---|---|
Support Immich
If you find the project helpful, you can support Immich by purchasing a product key at https://buy.immich.app.
Cheers! 🍻
What's Changed
🚀 Features
- feat(web): manually link live photos by @jrasm91 in #12514
- feat(web): unlink live photos by @jrasm91 in #12574
🌟 Enhancements
- feat(web): logout of all tabs by @jrasm91 in #12407
- feat(server): start up folder checks by @jrasm91 in #12401
- feat(web): responsive top navigation by @ben-basten in #12373
- feat(mobile): Add dismiss action on app_bar_dialog by @Lauritz-Tieste in #12511
- feat(web): select the EXIF timezone (if it exists) in dropdown by @C-Otto in #12495
- fix(web): show trash indicator by @jrasm91 in #12521
- feat(web): move search options into a modal by @ben-basten in #12438
- feat(server): default exclusion patterns by @etnoy in #12566
🐛 Bug fixes
- fix(server): remove hidden assets from albums by @jrasm91 in #12449
- fix(server): handle multiple hierarchical subjects by @jrasm91 in #12509
- fix(mobile): scroll thumb is hidden behind the tab navigation bar by @alextran1502 in #12512
- fix(web): select partner assets from timeline by @jrasm91 in #12517
- fix(web): preserve search text by @jrasm91 in #12531
- fix(web): show upload error message on network error by @jrasm91 in #12533
- fix(server): handle invalid directory item by @jrasm91 in #12534
- fix(web): leave assets selected after add to album by @jrasm91 in #12537
- fix(server): person repo methods by @jrasm91 in #12524
- fix(ml): batch axis not being added for recognition model by @mertalev in #12588
📚 Documentation
- docs: more cursed knowledge by @jrasm91 in #12529
- docs: proper value of word-based suggestions setting to setup VSCode by @sapachev in #12586
- docs: add server backup to First Steps by @mmomjian in #12555
🌐 Translations
New Contributors
- @pbustamantes made their first contribution in #12486
- @Lauritz-Tieste made their first contribution in #12511
- @jonathanjsimon made their first contribution in #12510
- @sapachev made their first contribution in #12586
Full Changelog: v1.114.0...v1.115.0
v1.114.0
v1.114.0
Highlights
Welcome to release v1.114.0
of Immich. Who doesn't love a juicy release on a Friday? This release focuses on additional enhancements and bug fixes for recent new features. Please find some of the highlights below:
- Tag improvements (including Lightroom support)
- Import faces from EXIF and XMP sidecars (Digikam format)
- Better handling of timezones
- Upload panel **New look**
- Automatic database reconnection
Tag improvements
Since the last release, when we introduced support for tags, we have made a few changes based on your feedback.
- We now support reading from
HierarchicalSubject
. Values will be parsed as hierarchical tags, with|
as a delimiter. - We now only read from
Keywords
as a fallback when no hierarchical tag information is available - We have fixed a bug where you could not remove the last tag from EXIF/XMP.
NOTE: these changes apply to the metadata extraction job. To apply them to your photos and videos, re-run metadata extraction.
Import faces from metadata
This release adds the ability to read face metadata in Digikam format during metadata extraction, increasing interoperability with other software and laying the foundation for faces from sources other than machine learning.
Note that there are certain limitations with these faces. These limitations may be removed in a later release:
- Assets that contain face metadata are skipped during face detection
- Faces from metadata are not considered during facial recognition
- Faces from metadata are grouped into people based on name
- Only face metadata in Digikam format is supported
You can enable this feature by going to Administration > Metadata Settings
.
Better handling of timezones
This version fixes some issues related to how timezone offsets are parsed and how timezones and offsets are displayed. The offset is now parsed correctly for photos and videos taken with the "+00:00" offset (e.g., several African countries, Iceland, Portugal/UK/Ireland in winter).
If you notice that the "+00:00" offset is not shown correctly, please re-run the "Extract Metadata" job on all photos and videos.
Upload panel
The upload panel has a new look! It works the same as before, except that duplicates are no longer automatically cleared from the queue. They will remain behind, along with a clickable icon, that links to the deduped image.
Light | Dark |
---|---|
Automatic database reconnection
Previously, when the connection to the database was interrupted for any reason (restart, timeout, network interruption, etc.), the server would never reconnect. Restoring the connection required a container restart. Now, the server will automatically try to reconnect every 5 seconds indefinitely.
Support Immich
If you find the project helpful, you can support Immich by purchasing a product key at https://buy.immich.app.
Cheers! 🍻
What's Changed
🚀 Features
🌟 Enhancements
- feat(server): support lightroom tags by @jrasm91 in #12288
- feat(web): show folder navigation in root directory by @ben-basten in #12299
- chore(mobile): handle sync album on duplicated by @alextran1502 in #12173
- feat(web): sort albums in modal by @jrasm91 in #12331
- feat(web): add skip link to sidebar by @ben-basten in #12330
- fix(server): search suggestions include partner assets by @Lukasdotcom in #12269
- feat(web): add download shortcut on the timeline & asset viewer by @imondrag in #12339
🐛 Bug fixes
- fix(server): empty trash for archived assets by @alextran1502 in #12281
- feat(server): prefer tagslist by @jrasm91 in #12286
- fix: remove public. reference in migration sql by @alextran1502 in #12285
- fix(server): public references in migrations by @jrasm91 in #12298
- fix(web): paste event in input fields by @jrasm91 in #12297
- fix(server): parse time zone with explicit zero offset by @C-Otto in #12307
- fix(web): retain selected time zone offset also for +00:00 by @C-Otto in #12310
- fix(web): handle RTL languages in the map component by @zackpollard in #12308
- fix(server): auto-reconnect to database by @jrasm91 in #12320
- fix(web): correct color for active tree item by @alextran1502 in #12318
- refactor(web): upload panel by @jrasm91 in #12326
- fix(mobile): background task crashing on Android by @alextran1502 in #12314
- fix(server): asset no longer has tags by @jrasm91 in #12350
- fix(web): only show valid time zones/offsets, update list based on date by @C-Otto in #12315
- fix: flash bug on tag by @midzelis in #12332
- fix(web): showing album timeline after adding new assets by @alextran1502 in #12354
- fix(mobile): download asset to DCIM/Immich folder on Android by @alextran1502 in #12355
- fix(web): person asset grid by @jrasm91 in #12370
- fix(server): copy video projection metadata for 360 videos by @mertalev in #12376
- fix(web): auth on navigation from shared link to timeline by @michelheusschen in #12385
- fix(web): broken album thumbnail by @michelheusschen in #12381
- fix(web): ensure shared link covers are full size by @michelheusschen in #12386
- fix(web): show focus outline for asset thumbnails again by @michelheusschen in #12382
📚 Documentation
- docs: Fix link to ioredis docs by @halkeye in #12291
- docs: Add conditional album storage template information by @feyst in #12218
🌐 Translations
- feat(web): add Malay language by @jrasm91 in #12311
- chore(web): update translations by @weblate in #12265
New Contributors
- @halkeye made their first contribution in #12291
- @bugfest made their first contribution in #6455
- @Lukasdotcom made their first contribution in #12269
Full Changelog: v1.113.1...v1.114.0
v1.113.1
v1.113.1
Hotfixes
This release fixes some bugs introduced in version v1.113.0 and added some enhancements to the new Folders and Tags feature
Support Immich
If you find the project helpful, you can support Immich by purchasing a product key at https://buy.immich.app.
Cheers! 🍻
What's Changed
🌟 Enhancements
- feat(web): tag button in album/shared album by @alextran1502 in #12172
- feat(web): load original panorama image when zoomed in to 75% or above by @TapuCosmo in #12222
- feat(web): shared breadcrumbs component for folders and tags by @ben-basten in #12215
🐛 Bug fixes
- fix(web): memory view in timeline href by @alextran1502 in #12158
- fix(web): unable to scroll timeline after using gesture by @kaziu687 in #12163
- fix(web): hide tree view text overflow with ellipsis by @ben-basten in #12161
- fix: keyword parsing by @jrasm91 in #12164
- fix(web): avoid deleting empty album unexpectedly by @michelheusschen in #12175
- fix(server): remove offline assets from trash by @etnoy in #12199
- fix(server): get assetFiles when retrieving assets WithoutProperty.THUMBNAIL by @mPyKen in #12225
- fix(mobile): Android back gesture closes app by @imondrag in #12221
- fix(web): auto grow area extend when there is no content by @alextran1502 in #12197
- fix(mobile): set SSL options properly in background backup process (#11870) by @yjiang-c in #12206
- fix: hide scrollbar when the asset grid is empty by @martabal in #12217
- fix(server): remove thumbnailAt in asset_job_status for missing thumbnails by @mPyKen in #12254
📚 Documentation
- docs(project): lightroom project by @bmachek in #12149
- docs: update google oauth examples by @malavolti in #12162
- docs: fixing example docker compose by @Biepa in #12230
New Contributors
- @bmachek made their first contribution in #12149
- @malavolti made their first contribution in #12162
- @Qhilm made their first contribution in #12178
- @niklasfi made their first contribution in #12180
- @imondrag made their first contribution in #12221
- @Biepa made their first contribution in #12230
Full Changelog: https://github.com/immich-app/immich/compare/v1.113.0...