2021-07-14 07:09:19 +02:00
|
|
|
fastiv
|
|
|
|
======
|
|
|
|
|
2021-09-16 12:35:36 +02:00
|
|
|
'fastiv' is a fast image viewer, supporting BMP, PNG, GIF, JPEG, and optionally
|
2021-12-11 18:25:25 +01:00
|
|
|
raw photos, HEIC, AVIF, WebP, SVG, X11 cursors and TIFF, or whatever gdk-pixbuf
|
|
|
|
loads.
|
2021-11-22 16:34:00 +01:00
|
|
|
|
|
|
|
It still has some road to go, but it's already become quite usable,
|
|
|
|
and it has received basic polishing.
|
2021-07-14 07:09:19 +02:00
|
|
|
|
2021-11-01 04:49:24 +01:00
|
|
|
Non-goals
|
|
|
|
---------
|
|
|
|
- fancy UI--the focus is on speed of use first, colour accuracy second
|
2021-11-22 16:34:00 +01:00
|
|
|
- editing--that's what _editors_ are for, be it GIMP or Rawtherapee;
|
|
|
|
nothing beyond the most basic of adjustments is desired
|
2021-09-16 18:39:33 +02:00
|
|
|
- memory efficiency, though preloading can cause some pressure
|
2021-11-01 04:49:24 +01:00
|
|
|
- portability to non-UNIXy systems
|
2021-07-14 07:09:19 +02:00
|
|
|
|
|
|
|
Packages
|
|
|
|
--------
|
|
|
|
Regular releases are sporadic. git master should be stable enough. You can get
|
|
|
|
a package with the latest development version from Archlinux's AUR.
|
|
|
|
|
|
|
|
Building and Running
|
|
|
|
--------------------
|
|
|
|
Build dependencies: Meson, pkg-config +
|
2021-11-16 07:38:42 +01:00
|
|
|
Runtime dependencies: gtk+-3.0, glib>=2.64, pixman-1, shared-mime-info,
|
2021-12-11 14:40:10 +01:00
|
|
|
spng>=0.7.0, libturbojpeg +
|
2021-12-11 18:25:25 +01:00
|
|
|
Optional dependencies: LibRaw, librsvg-2.0, xcursor, libwebp, libheif, libtiff,
|
2021-12-11 14:40:10 +01:00
|
|
|
gdk-pixbuf-2.0
|
2021-07-14 07:09:19 +02:00
|
|
|
|
|
|
|
$ git clone --recursive https://git.janouch.name/p/fastiv.git
|
|
|
|
$ meson builddir
|
|
|
|
$ cd builddir
|
|
|
|
$ meson compile
|
|
|
|
|
|
|
|
To install the application, you can do:
|
|
|
|
|
|
|
|
# meson install
|
|
|
|
|
2021-11-22 20:51:59 +01:00
|
|
|
Configuration
|
|
|
|
-------------
|
|
|
|
The standard means to adjust the looks of the program is through GTK+ 3 CSS.
|
|
|
|
As an example, to tightly pack browser items, put the following in your
|
|
|
|
_~/.config/gtk-3.0/gtk.css_:
|
|
|
|
|
2021-12-18 06:38:30 +01:00
|
|
|
fiv-browser { -FivBrowser-spacing: 0; padding: 0; border: 0; margin: 0; }
|
2021-11-22 20:51:59 +01:00
|
|
|
|
2021-11-23 14:58:21 +01:00
|
|
|
The GTK+ inspector will be very helpful, should you want to experiment.
|
|
|
|
|
2021-07-14 07:09:19 +02:00
|
|
|
Contributing and Support
|
|
|
|
------------------------
|
|
|
|
Use https://git.janouch.name/p/fastiv to report any bugs, request features,
|
|
|
|
or submit pull requests. `git send-email` is tolerated. If you want to discuss
|
|
|
|
the project, feel free to join me at ircs://irc.janouch.name, channel #dev.
|
|
|
|
|
|
|
|
Bitcoin donations are accepted at: 12r5uEWEgcHC46xd64tt3hHt9EUvYYDHe9
|
|
|
|
|
|
|
|
License
|
|
|
|
-------
|
|
|
|
This software is released under the terms of the 0BSD license, the text of which
|
|
|
|
is included within the package along with the list of authors.
|