summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-12-30MAT 0.60.6jvoisin
2015-12-30Import translationsjvoisin
2015-12-30Improves a bit the release processjvoisin
2015-12-30Update translationsjvoisin
2015-12-30Fix some pep8-related issuesjvoisin
2015-12-30Hopefully make test suite work once copied out of the build treejvoisin
This should fix https://labs.riseup.net/code/issues/10065
2015-12-20Fix some typoes pointed by intrigerijvoisin
2015-12-20Correct wording for absent dependenciesjvoisin
There is _no_ image support without exiftool, and _no_ audio support without mutagen. Not "limited" support.
2015-12-20Improves the previous commit thanks to intrigerijvoisin
I forgot to add `gi.require_version('Poppler', '0.18')` everywhere, and `gi.require_version('Gtk', '3.0')` in mat-gui too
2015-12-19Add `gi.require_version('Poppler', '0.18')` to silence warningsjvoisin
Closes https://labs.riseup.net/code/issues/10550 Also known as "pygi is emitting a lot of warnings"
2015-12-19The GUI proposes to add supported files only by defaultjvoisin
Now, the popup to add files to the interface only shows supported files by default. It's of course still possible to chose to show every possible files, but it's not the default behaviour anymore.
2015-12-18Enhance CLI's error display by tweaking log leveljvoisin
2015-12-18Fix the GUI for goodjvoisin
a027c0b989f7c7a5182db25aa628d2c138d024ae was a mistake.
2015-12-16Document the fact that MAT now supports .tiff filesjvoisin
2015-12-16Update localization filejvoisin
2015-12-16Fix the gui's metadata popupjvoisin
It seems that Python is still sucking hard when it comes to encoding.
2015-12-16Various minor refactorizationsjvoisin
2015-12-09refined argument exceptionsMuri Nicanor
2015-12-09Add the same kind of test than in 80244ecjvoisin
Namely, file-format specific ones
2015-12-09Fix a typo in --low-pdf-quality handlingjvoisin
2015-12-08Add a PDF-specific testjvoisin
2015-12-08Add tests for the help commandjvoisin
2015-12-08Improves mat's cli behaviour on faulty optionsjvoisin
`mat` will now show help message
2015-12-07added check for readaccess to fileMuri Nicanor
2015-12-05Add some resources about why we're using python-pdfrwjvoisin
2015-12-04Silence exiftool's stderrjvoisin
In the past, this might have been useful, but now, exiftool works on pretty much every file passed to it by MAT. Also, if something goes wrong, MAT will know about this thanks to the return code != 0.
2015-12-04Fix mutagen's behaviour on file without metadata blockjvoisin
2015-12-03Add some file-attribute related testsjvoisin
2015-12-02Misc pep8 conformityjvoisin
2015-12-02Document and simplify a bit the nautilus extension codejvoisin
- Document some methods and the class - Simplify a condition
2015-12-02Remove two useless methods from the archive stripperjvoisin
2015-12-02Add some pragma to avoid testing some functionsjvoisin
2015-12-02Improves the way torrents are handledjvoisin
This commit makes metadata removal of torrents recursive. It's close to useless, because I haven't seen any torrent with a recursive structure, but the documentation says that it can happen, and the method was already implemented, so better safe than sorry.
2015-12-02Remove 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-27Update a bit the README.md filejvoisin
- PIL is not used anymore - The testsuite should be launched with `python test.py test`
2015-11-27Add pip caching for travis-cijvoisin
2015-11-27`--local` is now the default when running the testsuitejvoisin
2015-11-27Add some missing docstringsjvoisin
2015-11-26Add fancy badgesjvoisin
2015-11-26Improves the travis-ci configurationjvoisin
2015-11-26Simplify a bit the hachoir-powered image parserjvoisin
2015-11-26Remove a useless rant in a commentjvoisin
2015-11-26Remove a superfluous `pass` instructionjvoisin
2015-11-26Clean up a bit the nautilus-extensio codejvoisin
2015-11-26Remove two useless variablesjvoisin
2015-11-26Make the logging more pep-282 compliantjvoisin
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-26Improves the way tests are handled with `python setup.py test`jvoisin
2015-11-26The README file now has a `.md` extension.jvoisin
2015-11-25`python setup.py test` will now run the testsuitejvoisin
It's basically a simple wrapper around `cd test/ ; python test.py --local`.
2015-11-25Import (lib|cli)test.py in the test module to ease its usagejvoisin
Thanks again to Raphaƫl Vinot