summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2020-10-17fr-archive: Fix memory leakrbuj1-1/+0
2020-10-17Add Electronic Publication (EPUB) supportrbuj3-2/+7
$ file -b --mime-type don-quijoti-epub3.epub application/epub+zip
2020-10-17Remove unused macrosPablo Barciela7-20/+0
2020-09-07update.ui: missing on_update_file_ok_button_clicked handlerrbuj1-0/+1
2020-08-04fr-command-unarchiver: Remove trailing spacesrbuj1-1/+1
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/[[:space:]]*$//' {} \; find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/\t*$//' {} \;
2020-07-31Avoid memory leak in java utilsPavel Shlyak1-1/+3
2020-06-30Do not use stock icons in ui files (#392)Robert Antoni Buj Gelonch8-170/+205
* Do not use stock icons in ui files
2020-06-17dlg-update: Fix callback names for callback symbol update_cbrbuj1-2/+2
2020-06-05use git submodule of libeggWu Xiaotian1-2/+2
2020-06-05Require gtk+ 3.22 in glade filesrbuj6-12/+12
2020-06-05dlg-batch-add: Set labels GtkSizeGroup in ui filerbuj2-6/+7
2020-06-05Use callback symbols defined in ui filesrbuj14-99/+94
2020-06-05gtk-utils: Remove _gtk_builder_get_widgetrbuj12-133/+119
2020-05-06Remove fr-stock.c and fr-stock.hrbuj9-137/+19
2020-04-01actions: expand the comment on about dialogrbuj1-1/+1
2020-03-25Terminate the application if the resource doesn't existsrbuj12-84/+11
2020-03-25gtk-utils: Remove _gtk_count_selectedrbuj3-25/+1
2020-03-12glib-utils: remove g_ptr_array_free_fullrbuj3-17/+4
2020-03-10fr-window: duplicated coderbuj1-79/+6
2020-03-10Add ARC archive supportrbuj4-0/+382
2020-03-08glib-utils: remove n_fields functionrbuj5-20/+4
2020-03-04Add dlg-add-files.ui and dlg-add-folder.uirbuj6-193/+549
2020-02-26Update authorsrbuj1-1/+1
2020-02-24dlg-new: Adding many callbacks at oncerbuj2-33/+12
2020-02-24new.ui: Stock icons are deprecatedrbuj2-14/+32
2020-02-24dlg-new: Use GET_WIDGET macrorbuj1-9/+9
2020-02-15autoconf: get zstd mime type using libmagic if enabledrbuj2-8/+8
2020-02-08dlg-extract: GtkFileChooserDialog instead of set extra widgetrbuj5-267/+341
2020-02-07Fix mate-desktop URLrbuj1-1/+1
2020-02-06dlg-batch-add: set dialog image from icon-name instead of pixbufrbuj1-8/+5
2020-01-30Fix build using gcc 10 -fno-common flagrbuj1-2/+0
2020-01-30fr-process: do not override LC_CTYPErbuj1-4/+10
Closes #354
2020-01-10Update copyright to 2020raveit651-1/+1
2020-01-04fr-command-rpm: Use rpm2cpio binary shipped with rpm packagerbuj5-157/+9
closes #350
2019-12-05use cpio if no binary is foundraveit651-1/+1
origin commit: https://gitlab.gnome.org/GNOME/file-roller/commit/eb8a7fa
2019-12-05add a configure environment variable to select the cpio pathJasper Lievisse Adriaanse3-5/+5
on some systems (like OpenBSD), gcpio is prefered over the base cpio. origin commit: https://gitlab.gnome.org/GNOME/file-roller/commit/8a51165
2019-12-017z: Don't set the work directory, i.e. use temporary directoryrbuj1-1/+0
closes https://github.com/mate-desktop/engrampa/issues/200
2019-12-01Check if a mime-type is an alias in compute_supported_archive_typesrbuj1-1/+14
For instance, application/x-lha is an alias of application/x-lzh-compressed, mime_type_desc.mime_type should only store non duplicated primary mime-types, to avoid duplicates in the warehouse.
2019-12-01define LOCALEDIR for bindtextdomain()Wu Xiaotian1-0/+1
2019-11-24Clean file type selection in new archive dialogrbuj2-71/+60
2019-11-20Automatically sets the maximum size of static arraysrbuj1-4/+4
2019-10-20Fix localized pause UI logicoctoghost1-1/+1
2019-10-03LHA: add test for checking compressed file integrityrbuj1-1/+12
2019-10-03Set compiler debug flags using MATE_DEBUG_CHECK and update configure summaryrbuj8-19/+33
test: $ ./autogen.sh --enable-debug=profile --prefix=/usr <cut> Configuration: Source code location: . Compiler: gcc Compiler flags: -g -pg Warning flags: -Wall -Wmissing-prototypes Linker flags: -pg Caja support: yes PackageKit support: yes Run in place no Use libmagic: no JSON support: yes Now type `make' to compile engrampa $ ./autogen.sh --enable-debug --prefix=/usr <cut> Configuration: Source code location: . Compiler: gcc Compiler flags: -g -O0 Warning flags: -Wall -Wmissing-prototypes Linker flags: Caja support: yes PackageKit support: yes Run in place no Use libmagic: no JSON support: yes Now type `make' to compile engrampa $ grep MATE_ENABLE_DEBUG config.h
2019-10-03Add application/(x-compress|x-rpm|x-lzh-compressed) in local magicrbuj1-0/+4
$ file -b --mime-type ~/test.tar.Z application/x-compress $ hexdump -C -n 2 ~/test.tar.Z 00000000 1f 9d |..| 00000002 $ file -b --mime-type ~/atril-1.23.1-1.fc30.src.rpm application/x-rpm $ hexdump -C -n 4 ~/atril-1.23.1-1.fc30.src.rpm 00000000 ed ab ee db |....| 00000004 $ file -b --mime-type ~/test.lzh application/x-lzh-compressed $ hexdump -C -s 2 -n 3 ~/test.lzh 00000002 2d 6c 68 |-lh| 00000005
2019-10-03Show archive type in properties dialogrbuj2-0/+34
2019-10-03Zstandard: read .tar.zst filesrbuj2-0/+22
$ tar cafv ~/test.tar.zst ~/test $ xdg-mime query filetype ~/test.tar.zst application/x-zstd-compressed-tar Test: $ CFLAGS="-g -O0" ./autogen.sh --enable-magic --enable-packagekit --prefix=/usr && make && sudo make install $ engrampa ~/test.tar.zst
2019-10-03Zstandard: add test for checking compressed file integrityrbuj1-1/+10
2019-10-03Zstandard: Update MIME typerbuj2-7/+7
MIME type is application/x-zstd: $ lorem-ipsum-generator -p 10000 -l -f plain > lorem.txt $ zstd lorem.txt $ file -b --mime-type lorem.txt.zst application/x-zstd Test: $ CFLAGS="-g -O0" ./autogen.sh --enable-magic --enable-packagekit --prefix=/usr && make && sudo make install
2019-10-01Ar: Update MIME type and add magic numbersrbuj3-8/+10
Changes: Replace application/x-ar with application/x-archive ar magic number: "!<arch>\n" deb magic number (Debian 0.93+): "!<arch>\ndebian-binary" REF: https://en.wikipedia.org/wiki/Ar_(Unix) https://en.wikipedia.org/wiki/Deb_(file_format) Test: $ touch a && touch b && ar r test.ar a b && cp test.ar test-2.a $ xdg-mime query filetype test.ar application/x-archive $ xdg-mime query filetype dftp_2.2-1.deb application/vnd.debian.binary-package $ gio info test.ar | grep content-type standard::content-type: application/x-archive standard::fast-content-type: application/x-archive $ gio info dftp_2.2-1.deb | grep content-type standard::content-type: application/vnd.debian.binary-package standard::fast-content-type: application/vnd.debian.binary-package $ hexdump -C -n 8 test.ar 00000000 21 3c 61 72 63 68 3e 0a |!<arch>.| 00000008 $ hexdump -C -n 21 dftp_2.2-1.deb 00000000 21 3c 61 72 63 68 3e 0a 64 65 62 69 61 6e 2d 62 |!<arch>.debian-b| 00000010 69 6e 61 72 79 |inary| 00000015 $ ./autogen.sh --prefix=/usr --disable-magic && make && sudo make install