| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-08-29 | Python3, now with less features | jvoisin | |
| I want to release a new version ASAP, so lets ditch some features for now. | |||
| 2016-03-28 | Even more python3 portability | jvoisin | |
| 2016-03-28 | First step toward python3 | jvoisin | |
| 2015-12-30 | Fix some pep8-related issues | jvoisin | |
| 2015-12-18 | Enhance CLI's error display by tweaking log level | jvoisin | |
| 2015-12-02 | Misc pep8 conformity | jvoisin | |
| 2015-12-02 | Remove two useless methods from the archive stripper | jvoisin | |
| 2015-12-02 | Remove hachoir from MAT. | jvoisin | |
| This (huge) commit removes completely hachoir from MAT. Audio files are now processed with mutagen, and images with exiftool, since the main python imaging library (PIL) isn't super-great to deal with metadata (and damaged/non-standard files). Package maintainer should change the dependencies to reflect this. | |||
| 2015-11-26 | Remove two useless variables | jvoisin | |
| 2015-11-26 | Make the logging more pep-282 compliant | jvoisin | |
| See https://www.python.org/dev/peps/pep-0282/ for details, but basically this is commit leaves the string replacement to the logging function, instead of doing it in place in its parameters with the '%' operator. | |||
| 2015-11-03 | Add more type hint | jvoisin | |
| 2015-11-02 | Some minors pep8 modifications | jvoisin | |
| 2015-08-19 | Revert the ZIP_EPOCH date to 1980-01-01 00:00:00 | jvoisin | |
| This was a typo from my side, spotted by intrigeri. | |||
| 2015-08-18 | Improves the way MAT deals with ZipTimestamps | jvoisin | |
| It seems that using os.utime is TZ-dependent, so lets use a ZipInfo thing instead. | |||
| 2015-08-01 | archive: explicitly treat text we got from tarfile as encoded UTF-8 (Closes: ↵ | intrigeri | |
| MAT#9831). Without this, I see test failures caused by: test_remove_bz2 (libtest.TestArchiveProcessing) Test MAT's ability to process .tar.bz2 ... /usr/lib/python2.7/tarfile.py:1993: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal if self.name is not None and os.path.abspath(name) == self.name: This change seems to make sense because we're creating our tarin and tarout objects with encoding='utf-8' in the first place, so it's no big surprise that what we get from it is UTF-8 -encoded text. | |||
| 2015-08-01 | archive: use correct epoch time. | intrigeri | |
| epoch is 1970-01-01 00:00:00 UTC, not 1970-01-01 01:00:00 UTC. This mistake was introduced in commit ef5a32c to fix the test suite. I guess that it was a hack that workaround'ed an actual bug for a specific timezone only. If that bug reappears, we'll have to fix that by making this module timezone-aware, not by setting a wrong epoch value. | |||
| 2015-07-25 | _MASSIVE_ pep8 revamp | jvoisin | |
| Thank you so much PyCharm | |||
| 2014-06-08 | Rename the MAT folder to libmat. | jvoisin | |
| This commit fixes some issues for dump operating systems who doesn't handle capitalization. | |||
| 2014-06-08 | Improves zip handling | jvoisin | |
| - ZIP_EPOCH is now set correctly - list_unsupported should now work This also fix the testsuite. | |||
| 2014-06-08 | Better handling of utf8 inside archives | jvoisin | |
| 2014-01-31 | Fix office-format handling by the GUI | jvoisin | |
| 2014-01-20 | Fix https://labs.riseup.net/code/issues/6609 | jvoisin | |
| Fix "MAT's GUI traceback when cleaning files" | |||
| 2014-01-19 | Improves some comments in archive.py | jvoisin | |
| 2014-01-19 | Improves archive.py code consistency | jvoisin | |
| 2014-01-19 | MAT will now process read-only files inside tar.* archives | jvoisin | |
| 2014-01-18 | Fix https://labs.riseup.net/code/issues/6604 | jvoisin | |
| 2014-01-18 | Fix a zipinfo issue | jvoisin | |
| MAT will now returns correct results when asked to get non-supported files from a zip archive with a comment | |||
| 2014-01-15 | Add support for zipfiles! | jvoisin | |
| 2014-01-06 | GUI-archive-unsupported-handling, 2nd iteration | jvoisin | |
| 2014-01-06 | The user can now chose if he wants to includes unsupported files to archive | jvoisin | |
| 2014-01-06 | Fix a pyflakes warning | jvoisin | |
| 2014-01-06 | Nested archives are not supported by the GUI | jvoisin | |
| 2014-01-06 | Add a test got get_unsupported_archive | jvoisin | |
| 2014-01-06 | Fix a design mistake in archives handling | jvoisin | |
| MAT should now return a set of non-supported files currectly. | |||
| 2014-01-02 | Fix archive's get_meta | jvoisin | |
| Python's typing system is a piece of crap. | |||
| 2014-01-02 | Greatly improves tarfiles handling | jvoisin | |
| 2013-10-27 | Improves documentation | jvoisin | |
| 2013-10-05 | mat is now able to check non-writables files | jvoisin | |
| This is an implementaion of this suggestion: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=721572 | |||
| 2013-07-16 | Gramatical and spelling corrections | jvoisin | |
| 2013-07-16 | Format + remove useless comment in archive.py | jvoisin | |
| 2013-04-02 | Fix unit tests | jvoisin | |
| 2013-03-06 | Some minor syntastic sugar | jvoisin | |
| 2013-01-20 | preliminary support of gtk3 (one test fails for PDF) | jvoisin | |
| 2012-12-27 | Refactor the archive parser | jvoisin | |
| Refactoring of the archive and office parser, in order to simplify the code and reduce abstraction | |||
| 2012-12-19 | Preliminary support of producted pdf quality choice | jvoisin | |
| 2012-12-16 | archive.py is now python's implementation independent | jvoisin | |
| 2012-12-13 | Reorganize source tree and files installation location, cleanup setup.py ↵ | jvoisin | |
| (Closes: #689409) | |||
| 2012-02-06 | Merge the two processing mode into a unique one | jvoisin | |
| 2012-02-01 | Rename mat-cli to mat-gui | jvoisin | |
| 2012-01-22 | Revert "Preliminary handling of ctime/mtime reset" | jvoisin | |
| This reverts commit e96e5b8ac44095668198e3e6797a3f77d9fb4634. Everything is already in a branch | |||
