Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-03-27 | github release for stable branch | raveit65 | 1 | -0/+19 | |
2019-03-21 | [Security] fr-process: avoid 'strcpy' and 'strcat' | Pablo Barciela | 1 | -16/+16 | |
Use 'g_strlcpy' instead of 'strcpy', and 'g_strlcat' instead of 'strcat' Fixes Clang static analyzer warnings: fr-process.c:696:5: warning: Call to function 'strcpy' is insecure as it does not provide bounding of the memory buffer. Replace unbounded copy functions with analogous functions that support length arguments such as 'strlcpy'. CWE-119 strcpy(rarfile, argv[2]); ^~~~~~ fr-process.c:698:5: warning: Call to function 'strcat' is insecure as it does not provide bounding of the memory buffer. Replace unbounded copy functions with analogous functions that support length arguments such as 'strlcat'. CWE-119 strcat(rarfile, "part1.rar"); ^~~~~~ fr-process.c:705:32: warning: Out of bound memory access (accessed memory precedes memory block) rarfile[strlen(rarfile)-5]=0; ~~~~~~~~~~~~~~~~~~~~~~~~~~^~ | |||||
2019-03-20 | tx: update resource for transifex | rbuj | 1 | -117/+121 | |
2019-03-14 | fr-process: Fix memory leak | rbuj | 1 | -3/+1 | |
Fixes Clang static analyzer warning: fr-process.c:740:3: warning: Potential leak of memory pointed to by 'argv' g_warning ("The files could not be move: %s\n", commandline); ^~~~~~~~~ | |||||
2019-03-11 | tx: update transifex config | raveit65 | 1 | -2/+2 | |
2019-03-10 | Help: Fix version to 1.22 and update pot file | rbuj | 2 | -5/+5 | |
2019-03-10 | help: update copyright | raveit65 | 1 | -2/+2 | |
2019-03-10 | Upgrade the manual to docbook 5.0 | rbuj | 3 | -1025/+992 | |
To upgrade the manual: sudo dnf install -y docbook5-schemas xsltproc --output index-new.docbook /usr/share/xml/docbook5/stylesheet/upgrade/db4-upgrade.xsl index.docbook xsltproc --output legal-new.xml /usr/share/xml/docbook5/stylesheet/upgrade/db4-upgrade.xsl legal.xml To validate the manual: xmllint --noout --relaxng /usr/share/xml/docbook5/schema/rng/5.0/docbook.rng help/C/index.docbook jing /usr/share/xml/docbook5/schema/rng/5.0/docbook.rng help/C/index.docbook yelp-check validate help/C/index.docbook To view the manual: yelp file:///full_path/index.docbook Note: docbook5-schemas should be installed in your system in order to view the manual (DEPENDENCY) | |||||
2019-02-25 | release 1.22.0v1.22.0 | raveit65 | 2 | -1/+37 | |
2019-02-25 | tx: sync with transifex | raveit65 | 15 | -40/+1815 | |
2019-02-20 | Avoid array index out of bounds parsing dpkg-deb --info | rbuj | 1 | -2/+4 | |
The first line of "dpkg-deb -I" output has only 5 words: old Debian package, version 0.939000. or new Debian package, version 2.0. Examples: $ wget http://archive.debian.org/debian/dists/Debian-0.93R6/binary/admin/acct-5-10.deb $ LANG=C dpkg-deb -I acct-5-10.deb old Debian package, version 0.939000. size 18338 bytes: control archive=1064, main archive=17260. 61 bytes, 3 lines conffiles 889 bytes, 20 lines control 570 bytes, 23 lines * postinst #!/bin/sh 107 bytes, 7 lines * postrm #!/bin/sh 212 bytes, 12 lines * preinst #!/bin/sh 212 bytes, 12 lines * prerm #!/bin/sh ... $ wget http://archive.debian.org/debian/dists/bo/main/binary-all/admin/alien_3.3.deb $ LANG=C dpkg-deb -I alien_3.3.deb new Debian package, version 2.0. size 20748 bytes: control archive=850 bytes. 394 bytes, 11 lines control 785 bytes, 13 lines md5sums | |||||
2019-02-20 | warning: Use of memory after it is freed | rbuj | 1 | -1/+1 | |
$ scan-build ./configure ... $ scan-build --keep-cc make ... fr-command-dpkg.c:76:23: warning: Use of memory after it is freed fdata->name = g_strdup (name); ^~~~~~~~~~~~~~~ ... | |||||
2019-02-19 | Read authors (updated) from engrampa.about gresource | rbuj | 8 | -10/+107 | |
2019-02-15 | Enable Travis CI | Wu Xiaotian | 1 | -0/+97 | |
2019-02-05 | tx: sync with transifex | raveit65 | 224 | -52071/+304634 | |
2019-01-22 | eggsmclient: avoid deprecated 'g_type_class_add_private' | Pablo Barciela | 1 | -6/+2 | |
2019-01-08 | update copyright year to 2019 | Pablo Barciela | 2 | -2/+2 | |
2019-01-03 | rar/unrar: Fix: "overwrite existing files" disabled must work | Pablo Barciela | 1 | -1/+1 | |
Fixes https://github.com/mate-desktop/engrampa/issues/243 | |||||
2018-12-28 | #225 fix a typo | Sergey Ponomarev | 1 | -1/+1 | |
2018-12-28 | fix fr-command-cfile.c: fr_process_set_working_dir | Sergey Ponomarev | 1 | -1/+1 | |
2018-12-28 | fr-command-cfile.c: fix indentation | sponomarev | 1 | -61/+61 | |
2018-12-28 | Added test integrity for brotli | sponomarev | 1 | -0/+3 | |
2018-12-28 | Added test integrity for the cfile compressors: gzip, bzip2, etc. But since ↵ | Sergey Ponomarev | 2 | -19/+60 | |
most of them shows the message with file status to STDERR instead of STDOUT whe should show both in Test result window. | |||||
2018-12-19 | move appdata to metainfo directory | monsta | 1 | -1/+1 | |
fixes https://github.com/mate-desktop/engrampa/issues/195 | |||||
2018-12-11 | fr-window: show the pause button only if the dialog is working | Pablo Barciela | 1 | -0/+3 | |
2018-12-11 | disable deprecation warnings for distcheck | raveit65 | 1 | -1/+3 | |
2018-12-11 | fr-window: avoid 'gtk_dialog_add_button' with stock ids | Pablo Barciela | 1 | -3/+3 | |
2018-12-08 | fr-window: hide the progress bar if the process is paused | Pablo Barciela | 1 | -5/+7 | |
2018-12-08 | tx: update resource for transifex | raveit65 | 1 | -151/+173 | |
2018-12-08 | fr-window: change the info label if process is paused/resumed | Pablo Barciela | 1 | -4/+9 | |
2018-12-05 | tx: fix typo | raveit65 | 1 | -1/+1 | |
2018-12-03 | fr-window: little improvements in the look of pause/resume button | Pablo Barciela | 1 | -6/+34 | |
2018-12-02 | Adding pause and start functions | zhuyaliang | 3 | -5/+98 | |
change kill mode | |||||
2018-11-28 | Fix implementation and use of the alternative package name | Iain Nicol | 1 | -5/+7 | |
lookup Any real_name'' which was found was not getting used before. Also, when the lookup is unsuccessful, this means there is no /alternative/ package name. Thus we should use the hard-coded package name as the real_name for our PackageKit installation request. [bug #603757] origin commit: https://gitlab.gnome.org/GNOME/file-roller/commit/95aafc3c | |||||
2018-11-10 | Added support for brotli (*.tar.br) compressed tar archives | Sergey Ponomarev | 6 | -5/+52 | |
2018-10-30 | Add brotli support | Sergey Ponomarev | 8 | -4/+31 | |
2018-10-06 | Use make functions for HELP_LINGUAS | rbuj | 1 | -1/+5 | |
2018-10-04 | tx: update help source | raveit65 | 1 | -42/+36 | |
2018-10-04 | Replace -Dokumentationteam | rbuj | 1 | -1/+1 | |
2018-10-04 | Replace -Dokumentationsprojekt with Documentation Project | rbuj | 1 | -3/+3 | |
2018-10-04 | Manual: Update file format descriptions using shared-mime-info | rbuj | 1 | -17/+17 | |
REF: https://cgit.freedesktop.org/xdg/shared-mime-info/tree/freedesktop.org.xml.in | |||||
2018-09-30 | Fix url of ulinks to point to mate-user-guide | rbuj | 1 | -2/+2 | |
2018-09-29 | tx: update source for help translations | raveit65 | 1 | -2/+2 | |
2018-09-29 | tx: improve makepot script | raveit65 | 1 | -0/+1 | |
2018-09-29 | UNIX and Linux systems -> Linux and UNIX-like systems | rbuj | 1 | -1/+1 | |
2018-09-26 | tx: add atril help to transifex config | raveit65 | 3 | -1/+2420 | |
2018-09-05 | update engrampa.pot | raveit65 | 1 | -80/+116 | |
2018-09-05 | fr-window: fix typo | raveit65 | 1 | -1/+1 | |
2018-08-22 | Add the ability to support 'unar' over .zip archives | Pablo Barciela | 4 | -5/+33 | |
Closes https://github.com/mate-desktop/engrampa/issues/210 | |||||
2018-08-01 | Add support for OpenDocument formats | Victor Kareh | 2 | -1/+20 | |