Skip to content

petabyt/fudge

Repository files navigation

Fudge

This is a cross-platform open-source alternative to Fujifilm's official camera app.

This app isn't finished yet, so don't set high expectations. Fuji's implementation of PTP/IP has many different quirks and bugs, so it's not easy to create a stable client that works for all cameras.

Improvements over XApp / Camera Connect

  • Location and notification permissions are not required or even requested
  • More responsive native UI
  • Slight performance improvements
  • USB-OTG connectivity support
  • Supports PC AutoSave and (partially) Wireless Tether

Missing features

  • Bluetooth pairing
  • Geolocation
  • Liveview/remote shutter

Beta builds are published on Google Play. The latest builds are also available on F-Droid.

Roadmap

  • Frontend rewrite (see #26)
  • Liveview & Remote capture
  • Implement Bluetooth pairing
  • iOS port (see ios/)

Compiling

git clone https://github.com/petabyt/fudge.git --depth 1 --recurse-submodules

Compiling desktop app

Desktop utility is still a work in progress.

# Ubuntu deps:
sudo apt install libusb-1.0-0-dev libimgui-dev libvulkan-dev libglfw3-dev
cd desktop
cmake -B build -G Ninja && cmake --build build

Cross-compiling for Windows with mingw:

cmake -DCMAKE_TOOLCHAIN_FILE=cmake/mingw.cmake -G Ninja -B build_win
cmake --build build_win

Compiling Android

Open android/ in Android Studio.