Jiotty Photos Uploader is a simple desktop Google Photos media uploader that creates albums according to your directory structure and can resume failed uploads. See Wiki for more information, including how to download and install.
For enthusiasts, to build or run from sources:
- Follow these steps to generate your own Google API client secret file.
- Install JDK
- for a desktop other than Windows 7 32 bit, use any JDK version 16 or higher.
- for a Raspberry Pi, use Liberica OpenJDK (because it contains RPi-compatible javafx). Go to https://bell-sw.com/pages/downloads/, select version 16 or
higher, 32-bit, Linux, package: Full JDK, and install via
.deb
. - for Windows 7 32-bit, use Liberica OpenJDK (because it contains compatible javafx). Go to https://bell-sw.com/pages/downloads/, select version 16 or higher, 32-bit, Windows, package: Full JDK, download and install.
- Clone this repository.
cd jiotty-photos-uploader
Then, to compile and run locally:
- on a desktop:
./gradlew --no-daemon -DCLIENT_SECRET_PATH=/path/to/google-API-client-secret.json run
- on Raspberry Pi:
./gradlew --no-daemon -DCLIENT_SECRET_PATH=/path/to/google-API-client-secret.json -PraspberryPi run
Or to build the self-contained native binary and installer for the current platform:
- Run the following, replacing
0.0.0
with the version you want:- on a desktop:
./gradlew --no-daemon -DCLIENT_SECRET_PATH=/path/to/google-API-client-secret.json fullPackage -DVERSION=0.0.0
- on Raspberry Pi:
./gradlew --no-daemon -PraspberryPi -DCLIENT_SECRET_PATH=/path/to/google-API-client-secret.json fullPackage -DVERSION=0.0.0
- on a desktop:
- look for the executable bundle in
app/build/jpackage
and for the installer inapp/build/fullpackage
Note: if doing repeated builds, to improve build speed, replace --no-daemon
with --build-cache
, but only if you understand what you're doing and are
prepared to maintain gradle cache and daemons.