aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Deduplicate file information structuresPřemysl Eric Janouch2023-04-145-122/+146
|
* Check filesize when retrieving thumbnailsPřemysl Eric Janouch2023-04-145-49/+92
| | | | | In particular, this handles screenshots from Rigol oscilloscopes, which reuse the same name series with the same file modification time.
* Remove a commentPřemysl Eric Janouch2023-04-141-3/+0
| | | | Upon closer thought, I don't know how to implement the idea reasonably.
* Move and extend the browser toolbarPřemysl Eric Janouch2023-04-116-131/+373
| | | | | | This makes the user interface more cohesive, and easier to use. Both toolbars should ideally be made configurable.
* Add optional browser filename labelsPřemysl Eric Janouch2023-04-114-18/+132
|
* Bump WuffsPřemysl Eric Janouch2023-04-071-0/+0
|
* Add directory tree traversal functionalityPřemysl Eric Janouch2023-04-053-36/+202
| | | | Thus far merely bound to the [ and ] keys in the browser.
* Bump copyright yearsPřemysl Eric Janouch2023-03-301-1/+1
|
* Make the mirror command intuitivePřemysl Eric Janouch2023-03-251-4/+4
|
* Add a note about default applicationsPřemysl Eric Janouch2023-03-151-0/+9
|
* Integrate online reverse image searchPřemysl Eric Janouch2023-03-1510-18/+221
| | | | | | | | | | | This makes use of our image processing capabilities in order to turn arbitrary image files into normalized thumbnails, upload them to a temporary host, and pass the resulting URI to a search provider. In future, fiv should ideally run the upload itself, so that its status and any errors are obvious to the user, as well as to get rid of the script's dependency on jq.
* Bump WuffsPřemysl Eric Janouch2023-03-072-3/+2
|
* Find system libraries using proper namesPřemysl Eric Janouch2023-03-031-2/+2
| | | | Fixes Meson warnings.
* Bump Wuffs to a regular releasePřemysl Eric Janouch2023-01-281-0/+0
|
* Fix LibRaw 0.21.0 buildPřemysl Eric Janouch2022-12-232-5/+6
|
* Fix LibRaw 0.21.0 buildPřemysl Eric Janouch2022-12-231-0/+5
|
* Don't require asciidoctor or a2x, import libertyPřemysl Eric Janouch2022-10-094-5/+17
|
* Update a commentPřemysl Eric Janouch2022-10-041-1/+1
|
* Center view rotations/flipsPřemysl Eric Janouch2022-10-032-37/+97
|
* Allow dragging with the middle mouse buttonPřemysl Eric Janouch2022-09-031-1/+12
|
* Update .gitignorePřemysl Eric Janouch2022-08-241-0/+1
|
* Add a traditional manual page for fivPřemysl Eric Janouch2022-08-243-4/+103
|
* Make binaries say what git commit they come fromPřemysl Eric Janouch2022-08-133-9/+16
| | | | | The manual skipping of the initial "v" from tag names is unfortunate, but still a bit better than further cluttering up the build system.
* meson.build: add a bunch of validating testsPřemysl Eric Janouch2022-08-121-7/+34
|
* Bundle a fuller installation of Perl/ExifToolPřemysl Eric Janouch2022-08-114-13/+22
| | | | | | | | | wperl is necessary to get rid of the console window, which is merely one of several issues with the PAR Packer-based ExifTool bundle used in the last commit. The Perl installation could be heavily trimmed down, but it seems to require a very manual process.
* Resolve a few issues with MSYS2 cross-buildsPřemysl Eric Janouch2022-08-115-5/+26
| | | | | | | - Fix launching of subprocesses (missing gspawn helpers). - Discard unused GSettings schemas. - Make the program find its user guide. - Bundle a somewhat suboptimal version of ExifTool.
* Automate Windows builds, add icons to executablesPřemysl Eric Janouch2022-08-116-5/+245
| | | | | | | Scripts have been ported from sdtui, and adjusted for Meson. The port is broken through and through on WINE, but sort-of works natively.
* fiv-jpegcrop: add middle mouse button draggingPřemysl Eric Janouch2022-08-101-5/+69
| | | | Parasitic gesture code previously discarded from fiv gets to live on.
* fiv-jpegcrop: without args, show an Open dialogPřemysl Eric Janouch2022-08-101-15/+36
| | | | But let's keep it hidden from application lists for now.
* Fix the argument list of a callbackPřemysl Eric Janouch2022-08-101-1/+2
|
* Overload the F9 keyboard shortcutPřemysl Eric Janouch2022-08-091-7/+7
| | | | | | | It doesn't make a lot of sense to be able to toggle invisible widgets, so just make F9 toggle "the toolbar that can currently be seen". The more permanent setting can be adjusted in GSettings.
* Improve XDG path handling on WindowsPřemysl Eric Janouch2022-08-091-1/+13
|
* Use a GQueue for thumbnailingPřemysl Eric Janouch2022-08-091-18/+13
| | | | It's mildly less awkward to use, and fixes one complexity issue.
* Use cleaner paths when looking up thumbnailsPřemysl Eric Janouch2022-08-091-4/+4
|
* Do produce thumbnails of thumbnails, but in memoryPřemysl Eric Janouch2022-08-093-16/+27
|
* Remove a stale commentPřemysl Eric Janouch2022-08-091-1/+0
|
* Support opening collections of filesPřemysl Eric Janouch2022-08-0814-58/+1126
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement a process-local VFS to enable grouping together arbitrary URIs passed via program arguments, DnD, or the file open dialog. This VFS contains FivCollectionFile objects, which act as "simple" proxies over arbitrary GFiles. Their true URIs may be retrieved through the "standard::target-uri" attribute, in a similar way to GVfs's "recent" and "trash" backends. (The main reason we proxy rather than just hackishly return foreign GFiles from the VFS is that loading them would switch the current directory, and break iteration as a result. We could also keep the collection outside of GVfs, but that would result in considerable special-casing, and the author wouldn't gain intimate knowledge of GIO.) There is no perceived need to keep old collections when opening new ones, so we simply change and reload the contents when needed. Similarly, there is no intention to make the VFS writeable. The process-locality of this and other URI schemes has proven to be rather annoying when passing files to other applications, however most of the resulting complexity appears to be essential rather than accidental. Note that the GTK+ file chooser widget is retarded, and doesn't recognize URIs that lack the authority part in the location bar.
* Don't crash on orphan URIsPřemysl Eric Janouch2022-08-082-2/+7
|
* Make Information easier to control from keyboardPřemysl Eric Janouch2022-08-061-0/+2
|
* Make Alt+Return work in the browser as wellPřemysl Eric Janouch2022-08-062-0/+11
|
* Add a mnemonic to the Information menu itemPřemysl Eric Janouch2022-08-061-1/+1
|
* Add the information dialog to context menusPřemysl Eric Janouch2022-08-053-292/+327
| | | | | | Images don't need to be open for ExifTool to work. This also enables inspecting unsupported files, such as video.
* Integrate dconf-editorPřemysl Eric Janouch2022-08-052-5/+23
| | | | This is a more than adequate solution for now.
* Show parse names in Information dialog subtitlesPřemysl Eric Janouch2022-08-051-0/+7
|
* Make file information retrieval asynchronousPřemysl Eric Janouch2022-08-051-80/+157
| | | | Also, make error output scrollable.
* Improve support for opening HTTP URIsPřemysl Eric Janouch2022-08-051-6/+23
| | | | | While all GVfs files implement the mountable interface, mounting may not actually achieve anything.
* Fix default filenames in the "Save as" dialogPřemysl Eric Janouch2022-08-051-10/+10
| | | | | - Don't assume the filesystem is in UTF-8. - Don't try to extract basenames directly from URIs.
* Add support for copying to clipboardPřemysl Eric Janouch2022-08-043-0/+33
|
* Capitalize modifier names, prefer Command on macOSPřemysl Eric Janouch2022-08-042-30/+34
| | | | | | So far, the macOS special casing is only partial. Also, GtkShortcutsWindow confusingly labels Command as Meta.
* Use gdk_event_triggers_context_menu()Přemysl Eric Janouch2022-08-032-11/+14
|