Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-08-11 | Check if the remaining disk space is sufficient when add extract | zhuyaliang | 1 | -0/+42 | |
2023-07-24 | priority useing get_mime_type_from_filename to obtain mime type | zhuyaliang | 1 | -10/+0 | |
MAGIC returned incorrect mime type while processing tar compression type Fix https://github.com/mate-desktop/engrampa/issues/492 | |||||
2023-06-15 | Fix MIME detection logic from #490 | Colomban Wendling | 1 | -2/+8 | |
A blooper has been made there: * if ENABLE_MIME is set, the intention was to try, in order: magic, content, filename; but it was made filename, content, magic (which was the same as before the changes); * if ENABLE_MIME is not set, the intention was to try, in order: filename, content, magic; but it has been made magic, content, magic (notice the duplicate, and the missing "filename"). This probably doesn't change much in the wild as magic is gonna work most of the time, but it's especially problematic that the non-libmagic case doesn't have the filename test. Anyway, fix this so the code is consistent, and we retain the behavior for the non-libmagic case, and have the new expected one for the libmagic case. | |||||
2023-06-14 | Update to change the fallback and fix gzip issue | Toyeesh Sinha | 3 | -6/+6 | |
2023-06-14 | Fixed libmagic bug | Toyeesh Sinha | 1 | -1/+6 | |
2023-05-29 | Add "Extract to subdirectory" option | xmusjackson | 6 | -23/+70 | |
This commit adds an "Extract to subdirectory" option to the extract dialog which allows the user to extract the contents of the archive to a directory with the name of the archive (without the extension.) The user will be prompted if the directory must be created. file-utils.c: Improve remove_extension_from_path Rework this function so that it correctly parses and truncates files with multiple extensions like .tar.gz file-utils.c: Improve get_file_extension Improve this function to correctly identify and return supported compressed tar file extensions | |||||
2023-05-23 | Add meson compilation support | zhuyaliang | 2 | -0/+112 | |
2023-05-15 | Set the current folder of the file chooser dialog using a local file name | zhuyaliang | 1 | -1/+7 | |
2023-05-14 | Fix failure to extract multiple files | zhuyaliang | 1 | -0/+3 | |
2023-05-13 | Uniform file chooser dialog margin size | zhuyaliang | 1 | -1/+0 | |
2023-05-13 | Archive do not track symbolic link | zhuyaliang | 2 | -9/+18 | |
g_file_enumerate_children_async default should use G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS. This can avoid link loops | |||||
2023-05-13 | Fix failed restore of saved sessions | zhuyaliang | 1 | -1/+1 | |
2023-05-09 | Replace deprecated functions and fix compilation warnings | zhuyaliang | 9 | -694/+1676 | |
Replacing GtkAction with GAction Replacing GtkUIManager with GtkBuilder | |||||
2023-04-23 | command-7z: Add new 7-zip(7zz and 7zzs) project support | zhuyaliang | 2 | -14/+30 | |
2023-04-21 | file-utils: Include <strings.h> for strcasecmp | Florian Weimer | 1 | -0/+1 | |
The _XOPEN_SOURCE macro definition overrides _DEFAULT_SOURCE and disables the declaration in <string.h>. This avoids an implicit function declaration and build failures with future compilers. | |||||
2023-04-21 | action: Delete unused sort_by_entries code | zhuyaliang | 5 | -68/+0 | |
2023-04-15 | fr-process: fix memory leak | rbuj | 1 | -26/+9 | |
2023-04-07 | UI: Remove useless code and file | zhuyaliang | 4 | -24/+0 | |
2023-04-05 | Fix icon missing when compressing files with the right mouse button | zhuyaliang | 1 | -1/+6 | |
2023-04-05 | Extract: add the function of automatically closing the dialog box after ↵ | zhuyaliang | 5 | -0/+54 | |
decompression | |||||
2023-03-22 | zstd: support both old and new mime type | Đoàn Trần Công Danh | 2 | -8/+15 | |
As of it's now, we're supporting zstd {,de}compression with specific mime type that was reported by libmagic as configure time. Thus, the built binaries is not correct after upgrading file-devel after configure. In addition, this configure's time hard-coded value prevent our users from partial upgrade. Let's accept both mime types reported by both old and new file-devel. For the mapping between file extensions and mime types, let's choose the new mime value. | |||||
2023-03-22 | fr-command-rar: Parameter 'line' can be declared with const | rbuj | 1 | -1/+1 | |
2023-03-22 | Fix archive file save as function | zhuyaliang | 4 | -3/+22 | |
2023-03-22 | glib-utils: redundant condition | rbuj | 1 | -1/+1 | |
2023-03-21 | fix: Encrypted documents in all formats cannot be successfully pasted to the ↵ | jishengjie | 1 | -2/+7 | |
specified directory after copying and cutting encrypted files and folders | |||||
2023-03-21 | fix: Encrypted documents in. 7z format cannot delete locked files and folders | jishengjie | 3 | -1/+45 | |
2023-03-16 | fr-window: fix -Wincompatible-pointer-types warning | rbuj | 1 | -1/+1 | |
2023-03-15 | file-utils: remove unused functions | rbuj | 2 | -232/+0 | |
2023-03-15 | fr-command-rar: parse date & time using strptime | rbuj | 1 | -32/+7 | |
2022-03-10 | Enable mouse-less navigation & reading for output dialogs | Valentin Villenave | 1 | -2/+10 | |
We actually want a cursor to be displayed in case a screen reader is used with visual tracking. | |||||
2022-03-10 | Accessibility: add proper mnemonic relations and labelling | Valentin Villenave | 4 | -0/+16 | |
2022-03-10 | Fix implicit conversion changes signedness: 'gboolean' | rbuj | 3 | -5/+5 | |
2022-01-29 | file-data: fix memory leak | rbuj | 2 | -5/+8 | |
2022-01-29 | fr-command-tar: fix memory leak | rbuj | 1 | -2/+7 | |
2022-01-29 | fr-window: fix memory leak | rbuj | 1 | -3/+10 | |
2022-01-29 | dlg-package-installer: fix memory leak | rbuj | 1 | -1/+4 | |
2022-01-29 | Fix build warnings about missing field initializer | rbuj | 2 | -2/+3 | |
2022-01-29 | Fix some -Wfloat-conversion warnings | rbuj | 4 | -20/+25 | |
2022-01-28 | Fix -Wimplicit-int-conversion warning | rbuj | 24 | -49/+47 | |
2022-01-02 | build: fix -Wmissing-prototypes warning | rbuj | 1 | -1/+1 | |
2022-01-02 | glib-utils: drop strcmp_null_tolerant | rbuj | 4 | -16/+2 | |
2021-12-25 | test-server: Remove unreachable code after calling g_error | rbuj | 1 | -2/+0 | |
2021-12-25 | glib-utils: escape_str_common should be static | rbuj | 2 | -5/+1 | |
2021-12-25 | equality comparison with extraneous parentheses | rbuj | 1 | -1/+1 | |
2021-12-11 | Use a blank line at most | rbuj | 64 | -1286/+0 | |
2021-03-13 | ar: fix filename in file list | rbuj | 1 | -42/+11 | |
2021-02-27 | dlg-package-installer: Don't build the path to packages.match | rbuj | 1 | -4/+3 | |
2021-02-17 | rar 6.00: fix listing archive content with encrypted file list | rbuj | 1 | -12/+4 | |
2021-02-09 | i18n: use g_dngettext instead of ngettext | rbuj | 2 | -24/+26 | |
2021-02-09 | build: allow users to disable gettext support (--disable-nls) | rbuj | 2 | -0/+8 | |