aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Improve compatibility with older dependenciesPřemysl Eric Janouch2023-06-103-2/+7
|
* Declare minimum Meson versionPřemysl Eric Janouch2023-06-101-1/+2
| | | | | Due to our meson.add_install_script() usage, which results in a warning, followed by an error.
* Update commentsPřemysl Eric Janouch2023-06-091-3/+4
|
* Improve LibRaw thumbnail choicePřemysl Eric Janouch2023-06-091-49/+152
| | | | Make use of LibRaw 0.21.0's extended thumbnail API.
* Optimize thumbnail extractionPřemysl Eric Janouch2023-06-081-12/+8
| | | | Don't go over the same data twice.
* Refactor fiv_thumbnail_extract()Přemysl Eric Janouch2023-06-081-76/+108
|
* benchmark-io: ignore GdkPixbuf errorsPřemysl Eric Janouch2023-06-081-12/+11
| | | | Measuring up against that library is no longer that interesting.
* benchmark-io: fix URI passingPřemysl Eric Janouch2023-06-081-2/+4
| | | | g_filename_to_uri() doesn't support relative paths.
* Move the image load benchmark under toolsPřemysl Eric Janouch2023-06-082-7/+6
|
* info: decode JPEGs from all CR2 IFDsPřemysl Eric Janouch2023-06-081-4/+8
|
* Make it possible to switch off our TIFF/EP loaderPřemysl Eric Janouch2023-06-081-6/+13
| | | | | Slightly repurpose the "enhance" toggle, which doesn't particularly make sense to run on a thumbnail.
* Unify non/enhanced JPEG loading codePřemysl Eric Janouch2023-06-081-104/+82
| | | | | | | And in so doing, add missing warning redirection to JPEG Quant Smooth, as well as downscaling. We still heavily depend on libjpeg-turbo.
* Fix enhancement of CMYK JPEGsPřemysl Eric Janouch2023-06-071-3/+0
| | | | The conversion to RGB was done twice.
* Slightly clean up colour managementPřemysl Eric Janouch2023-06-061-11/+13
| | | | SVGs are now semi-managed.
* With newer Little CMS, colour manage ARGB surfacesPřemysl Eric Janouch2023-06-061-27/+52
|
* Use Little CMS's alpha premultiplication featurePřemysl Eric Janouch2023-06-062-47/+74
| | | | And do a little cleanup.
* Fix the remaining case in file renames monitoringPřemysl Eric Janouch2023-06-061-13/+12
|
* info: decode WebP dimensionsPřemysl Eric Janouch2023-06-051-1/+50
|
* Unite most info tools into just one binaryPřemysl Eric Janouch2023-06-057-307/+134
| | | | | | Turn this into more of an fq alternative, when used with jq. Also don't say that TIFF files are Exif.
* rawinfo: add output dimensions and PARPřemysl Eric Janouch2023-06-051-3/+14
|
* rawinfo: descend into JPEG thumbnailsPřemysl Eric Janouch2023-06-051-5/+14
|
* Fix monitoring of file renamesPřemysl Eric Janouch2023-06-051-31/+37
|
* Update meson invocation to avoid warningsPřemysl Eric Janouch2023-06-042-2/+2
|
* Add support for the Little CMS fast float pluginPřemysl Eric Janouch2023-06-044-3/+36
| | | | | | On a sample of JPEGs, it improved loading speed from ~0.26s to ~0.15s. Unfortunately, it isn't normally installed.
* Move git submodules to a subdirectoryPřemysl Eric Janouch2023-06-045-4/+5
|
* Shuffle code aroundPřemysl Eric Janouch2023-06-041-74/+76
|
* Convert to strictly non-unique GtkApplicationPřemysl Eric Janouch2023-06-041-93/+123
| | | | It's not pretty, but it works.
* Remove a macOS rendering bug workaroundPřemysl Eric Janouch2023-06-042-12/+1
| | | | Most important Cairo bugs seem to have been fixed recently.
* Avoid invisible browser entriesPřemysl Eric Janouch2023-06-041-4/+8
|
* Update runtime dependenciesPřemysl Eric Janouch2023-06-031-2/+2
|
* Update sidebar entries on change automaticallyPřemysl Eric Janouch2023-06-021-21/+38
| | | | This makes it more consistent.
* Slightly optimize file monitoring event handlingPřemysl Eric Janouch2023-06-011-18/+28
|
* Distinguish removed files more prettilyPřemysl Eric Janouch2023-06-013-8/+31
| | | | It's still somewhat bad, but at least no longer ridiculous.
* Process some GFileMonitor eventsPřemysl Eric Janouch2023-05-316-162/+463
| | | | So far, it's rather crude.
* Fix crash when right-clicking removed filesPřemysl Eric Janouch2023-05-311-1/+3
|
* Add trashing to file context menusPřemysl Eric Janouch2023-05-301-2/+36
|
* tools: decode TIFF XMP fields as UTF-8Přemysl Eric Janouch2023-05-281-0/+4
| | | | | | | | This is more space-efficient than an array of ASCII codepoints. Perhaps more fields would make good use of specialized decoders, just this one made listings particularly annoying to deal with, and it may additionaly contain important metadata.
* Clean up namespace pollutionPřemysl Eric Janouch2023-05-283-37/+42
|
* Move FivIoModel to its own compilation unitPřemysl Eric Janouch2023-05-288-568/+604
|
* Clean upPřemysl Eric Janouch2023-05-281-31/+10
|
* Load MPF images as pagesPřemysl Eric Janouch2023-05-282-8/+122
|
* Move MPF constants and table to tiff-tables.dbPřemysl Eric Janouch2023-05-282-47/+25
|
* Make MPF parsing a bit saferPřemysl Eric Janouch2023-05-281-15/+34
|
* Make TIFF parsing a bit saferPřemysl Eric Janouch2023-05-283-16/+23
| | | | At least on 64-bit systems, 32-bit may still have holes.
* Fix build without toolsPřemysl Eric Janouch2023-05-261-2/+3
|
* Extract some full-size raw previews without LibRawPřemysl Eric Janouch2023-05-264-401/+716
| | | | | Not all image/x-nikon-nef will work like this, so don't claim their MIME type.
* Extract all raw subimages as pagesPřemysl Eric Janouch2023-05-261-35/+49
| | | | And add missing colour management.
* Add a tool to extract LibRaw file informationPřemysl Eric Janouch2023-05-262-2/+159
|
* Make TIFF and JPEG info extractors co-recursivePřemysl Eric Janouch2023-05-243-534/+577
|
* Slightly expand TIFF tablesPřemysl Eric Janouch2023-05-241-1/+20
|