diff --git a/README.md b/README.md index 5b0c2b9..3d02a39 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,21 @@ # fujicli -A CLI that performs on-device image rendering similar to Fujifilm X RAW Studio \ No newline at end of file +A CLI to manage Fujifilm devices, simulations, backups, and rendering. + +## Status + +This tool has only been tested with the **Fujifilm X-T5**, as it is the sole camera I own. While the underlying PTP commands may be compatible with other models, **compatibility is not guaranteed**. + +**Use this software at your own risk.** I am not responsible for any damage, loss of data, or other adverse outcomes - physical or psychological - to your camera or equipment resulting from the use of this program. + +This project is currently under heavy development. Contributions are welcome. If you own a different Fujifilm camera, testing and reporting compatibility is highly appreciated. + +## Resources + +This project builds upon the following fantastic reverse-engineering efforts: + +* [fujihack](https://github.com/fujihack/fujihack) +* [fudge](https://github.com/petabyt/fudge) +* [libpict](https://github.com/petabyt/libpict) +* [fp](https://github.com/petabyt/fp) +* [libgphoto2](https://github.com/gphoto/libgphoto2) diff --git a/src/hardware/mod.rs b/src/hardware/mod.rs index bca18cc..93d6a10 100644 --- a/src/hardware/mod.rs +++ b/src/hardware/mod.rs @@ -46,7 +46,7 @@ pub enum DevicePropCode { #[derive(Debug, Clone, Copy, Serialize, PartialEq, Eq)] pub enum UsbMode { - RawConversion, // mode == 6 + RawConversion, Unsupported, }