add more immich control options
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
2026-02-01 21:24:24 +11:00
parent 3644001dbc
commit 806d701535
9 changed files with 355 additions and 30 deletions

View File

@@ -6,6 +6,8 @@ This project depends on the following dynamically linked libraries:
* qt5
* libexif
* qt5-image-formats-plugins
* libmosquitto1
### OSX
@@ -13,28 +15,29 @@ This project depends on the following dynamically linked libraries:
brew install qt libexif
```
### Raspbian Stretch
### Debian / Ubuntu / Raspberry Pi OS (runtime dependencies)
```
brew install qt5 libexif12
sudo apt-get install -y qt5-image-formats-plugins libmosquitto1
```
## Extract binaries
### Raspberry Pi Zero / Raspbian (additional image format support)
```
tar xf slide_<arch>_<version>.tar.gz
sudo apt-get install -y qt5-image-formats-plugins libmosquitto1 libmng1
```
## Move binary to executable folder
## Install .deb package
### OSX
Use apt so dependencies are resolved automatically:
```
mv slide_<version>/slide.app/Contents/MacOS/slide /usr/local/bin/
sudo apt-get install ./slide_<version>_<arch>.deb
```
### Linux
If you must use dpkg, install runtime dependencies first:
```
mv slide_<version>/slide /usr/bin/
sudo apt-get install -y qt5-image-formats-plugins libmosquitto1
sudo dpkg -i slide_<version>_<arch>.deb
```