aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* README.adoc: fix dependency listPřemysl Eric Janouch2021-11-111-1/+2
|
* Add support for defaulting to gdk-pixbufPřemysl Eric Janouch2021-11-105-2/+42
|
* Use a checkerboard pattern on item backgroundPřemysl Eric Janouch2021-11-102-5/+18
|
* Improve browser item rendition, use CSSPřemysl Eric Janouch2021-11-102-59/+120
| | | | | | It's not fully hardcoded anymore, and the border is better adjustable. Item spacing and the fade constant can't be /meaningfully/ put in CSS.
* Reflect that new list of files changes the layoutPřemysl Eric Janouch2021-11-101-1/+1
|
* Add images to the list of recent filesPřemysl Eric Janouch2021-11-101-0/+1
|
* Add C-n to open a new instance in the directoryPřemysl Eric Janouch2021-11-101-0/+11
| | | | Also, improve error messages when opening a file fails.
* Also render SVGs with unspecified dimensionsPřemysl Eric Janouch2021-11-101-5/+20
|
* Improve librsvg integrationPřemysl Eric Janouch2021-11-102-7/+12
| | | | Let it load external <image>s and not rescale images.
* Add very basic SVG supportPřemysl Eric Janouch2021-11-107-23/+151
| | | | | | | We need to refactor, so that SVGs are pre-rendered on each change of scaling by librsvg directly, because some elements may be rasterized. It would be best to also support building against resvg.
* Fix obsolete header includesPřemysl Eric Janouch2021-11-091-1/+2
|
* Add elementary scrolling support to the viewPřemysl Eric Janouch2021-11-092-13/+14
|
* Enable opening images from the browserPřemysl Eric Janouch2021-11-093-18/+85
| | | | Also, make it possible to go back, in a roughly implemented manner.
* Don't render rows needlesslyPřemysl Eric Janouch2021-11-091-2/+12
|
* Clean upPřemysl Eric Janouch2021-11-091-34/+30
|
* Add glowing borders around browser itemsPřemysl Eric Janouch2021-11-092-8/+108
| | | | The styling is mostly hardcoded for now, need to figure it out.
* meson.build: fix the io-benchmark targetPřemysl Eric Janouch2021-11-081-1/+1
|
* Set a default window sizePřemysl Eric Janouch2021-11-081-0/+1
|
* Pre-layout the browserPřemysl Eric Janouch2021-11-062-41/+141
| | | | Now the widget is scrollable.
* Don't needlessly call setlocale()Přemysl Eric Janouch2021-11-041-4/+0
| | | | gtk_init_with_args() does it for us.
* Don't rescale thumbnails in sRGBPřemysl Eric Janouch2021-11-041-4/+6
| | | | pixman is too slow at this, maybe do it later, and optionally.
* Fix scaling in the view, as in the browserPřemysl Eric Janouch2021-11-041-1/+3
| | | | The source pattern needs to be padded.
* Pre-scale loaded thumbnails, and only when neededPřemysl Eric Janouch2021-11-031-54/+67
|
* Improve thumbnail scaling and alignmentPřemysl Eric Janouch2021-11-033-9/+48
| | | | | | Stretch thumbnails by up to half a pixel so that they align nicely. Make use of pixman's sRGB mode.
* Bump wuffsPřemysl Eric Janouch2021-11-021-0/+0
| | | | No great differences.
* Clean up and fix key handlingPřemysl Eric Janouch2021-11-011-30/+55
| | | | Arrow keys now work.
* Update READMEPřemysl Eric Janouch2021-11-011-35/+7
|
* Split out xdg.{c,h}Přemysl Eric Janouch2021-11-015-175/+210
|
* Incorporate most clang-format changesPřemysl Eric Janouch2021-11-017-110/+102
|
* Add clang-format configurationPřemysl Eric Janouch2021-11-011-0/+12
|
* Split out fastiv-io.h, move media types listPřemysl Eric Janouch2021-11-016-25/+49
|
* tools: fix the MakefilePřemysl Eric Janouch2021-11-011-1/+1
|
* Add file type filters to the file open dialogPřemysl Eric Janouch2021-10-231-2/+12
| | | | FWIW, since I've had to do this in another project already.
* Add a prototype of a directory view widgetPřemysl Eric Janouch2021-10-206-11/+298
|
* Don't try to open directoriesPřemysl Eric Janouch2021-10-191-1/+5
|
* Make a FIXME about bindings more precisePřemysl Eric Janouch2021-10-181-1/+1
|
* Don't hardcode the background colourPřemysl Eric Janouch2021-10-172-4/+9
| | | | It can be now overriden in the user's gtk.css.
* Round coordinates for image centringPřemysl Eric Janouch2021-10-161-2/+2
|
* Use bilinear filteringPřemysl Eric Janouch2021-10-161-0/+3
| | | | | It could be both faster and more accurate, though currently it's a good compromise.
* Zoom with the scroll wheelPřemysl Eric Janouch2021-10-121-3/+59
|
* Add a thumbnail loaderPřemysl Eric Janouch2021-10-044-2/+191
| | | | So far not used, we'll need another widget to make use of it.
* Enable directory browsingPřemysl Eric Janouch2021-10-043-32/+363
| | | | Extracting the appropriate globs from the MIME database.
* clean-up-thumbnail-cache.sh: local file URIs onlyPřemysl Eric Janouch2021-10-021-1/+1
|
* Add thumbnail cache inspection toolsPřemysl Eric Janouch2021-10-014-0/+280
|
* Improve comment wordingPřemysl Eric Janouch2021-10-011-1/+2
|
* Add a basic benchmarking toolPřemysl Eric Janouch2021-09-202-0/+73
|
* Split out image loaders into fastiv-io.cPřemysl Eric Janouch2021-09-204-402/+432
|
* Check the status of new Cairo surfaces properlyPřemysl Eric Janouch2021-09-181-6/+12
|
* Add internal support for image scalingPřemysl Eric Janouch2021-09-172-12/+31
|
* Invoke a file open dialog on C-o/oPřemysl Eric Janouch2021-09-171-12/+47
|