summaryrefslogtreecommitdiffstats
path: root/lib/private/preview
Commit message (Collapse)AuthorAgeFilesLines
* Move \OC\Preview to PSR-4Roeland Jago Douma2016-04-2025-1247/+0
|
* To be safe don't unload until end (#23752)Joshua Ruehlig2016-04-111-1/+1
| | | | | | * To be safe don't unload until end * unlink needs to be before return to actually do anything
* Replace getid3 with ID3ParserLukas Reschke2016-04-061-6/+10
|
* Move `-an` after the input arg because it is an output optionJoas Schilling2016-02-221-2/+2
|
* Happy new year!Thomas Müller2016-01-1225-26/+28
|
* Use TempManager instead of tmpFileMorris Jobke2015-12-181-2/+2
|
* Reduce OC_Config usage in lib/Morris Jobke2015-12-021-2/+3
| | | | * replaced by proper public interfaces
* deduplicate @xenopathicMorris Jobke2015-10-061-1/+1
|
* update licence headers via scriptMorris Jobke2015-10-0513-11/+6
|
* Merge pull request #19468 from owncloud/fix-36-vs-32-previewsThomas Müller2015-09-301-1/+1
|\ | | | | Change small thumbnails to 32 px
| * Change small thumbnails to 32 pxMorris Jobke2015-09-301-1/+1
| | | | | | | | | | * fixes #16913 * fixes issues in IE8 where the thumbnail is too big
* | Clean temp files used for thumbnail generationRobin Appelman2015-09-301-1/+5
|/
* Remove get_temp_dir()Robin McCorkell2015-09-151-1/+1
|
* Remove OC_LogThomas Müller2015-07-033-3/+3
|
* update license headers and authorsMorris Jobke2015-06-2519-18/+18
|
* Fix max preview, some resizing and caching issues and force preview ↵Olivier Paroz2015-06-066-21/+44
| | | | | | | | | | providers to resize their previews properly * introduces a method in OC_Image which doesn't stretch images when trying to make them fit in a box * adds the method to all key providers so that they can do their job, as expected by the Preview class * improves the caching mechanism of Preview in order to reduce I/O and to avoid filling the available disk space * fixes some long standing issues * **contains mostly tests**
* show txt preview when file contains textGeorg Ehrke2015-05-271-1/+1
|
* Scale up the font on larger previewsJoas Schilling2015-04-151-1/+1
|
* Merge pull request #15346 from oparoz/split-image-providerMorris Jobke2015-04-026-8/+157
|\ | | | | Split image provider in one sub-class per media type
| * Split image provider in one sub-class per media typeOlivier Paroz2015-04-026-8/+157
| |
* | The bitmap preview class now takes maxX and maxY into considerationOlivier Paroz2015-04-011-9/+70
|/ | | | | | This is a fix for owncloud#13607 and is part of the global programme: owncloud#13609 The image aspect ratio is kept intact.
* Merge pull request #13654 from oparoz/tmpfile-with-extensionVincent Petry2015-03-261-3/+7
|\ | | | | Keep the extension in temp files
| * Fix the office classOlivier Paroz2015-03-191-3/+7
| | | | | | | | The office converter already replaces the original extension with '.pdf', so we need to switch the extensions of the tmp file instead of appending '.pdf' to it
* | Update license headersJenkins for ownCloud2015-03-2620-78/+382
| |
* | Create an interface for OC_Image and OCP\Image for the public APIJoas Schilling2015-03-163-6/+3
| |
* | Add more type hintingJoas Schilling2015-03-162-2/+2
| |
* | Use DI for the configJoas Schilling2015-03-161-1/+6
| |
* | Add an interface for the preview providersJoas Schilling2015-03-161-1/+3
| |
* | Register preview providers on the preview manager instead of OC\PreviewJoas Schilling2015-03-161-1/+1
|/
* Merge pull request #13648 from oparoz/sfnt-fonts-previewMorris Jobke2015-03-111-0/+19
|\ | | | | Add support for font previews
| * Add support for font previewsOlivier Paroz2015-02-241-0/+19
| |
* | Revert "Updating license headers"Morris Jobke2015-02-2619-347/+80
|/ | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-2319-80/+347
|
* add config-option for an image's maximum filesize when generating previewsGeorg Ehrke2015-01-221-0/+7
|
* Split bitmap providers into one per fileJoas Schilling2014-11-286-72/+119
|
* Split office providers into one class per fileJoas Schilling2014-11-287-124/+166
|
* Fix intendation and doc blocks of preview providersJoas Schilling2014-11-287-111/+143
|
* Move registration of core preview providers to previewJoas Schilling2014-11-279-130/+16
| | | | So the class files only have class code and don't execute code
* The class name is Movie NOT MoviesOlivier Paroz2014-11-251-0/+0
|
* Merge pull request #12303 from owncloud/windows-unknown-command-commandMorris Jobke2014-11-241-19/+3
|\ | | | | Deduplicate findBinaryPath() and do not try "command -v" on windows
| * Simplify the binary finding code in the movie preview classJoas Schilling2014-11-201-11/+3
| |
| * Deduplicate function by moving it to the OC_HelperJoas Schilling2014-11-201-10/+2
| |
* | remove ugly hack and don't use OC\Preview\Image for tiffs and svgsGeorg Ehrke2014-11-231-1/+1
|/
* Replace deprecated switchesOlivier Paroz2014-11-181-1/+1
| | | | Warning: -convert-to is deprecated. Use --convert-to instead. Warning: -outdir is deprecated. Use --outdir instead.
* Merge pull request #11390 from Nemesiz/masterMorris Jobke2014-10-061-1/+1
|\ | | | | Preview large TXT files fix
| * Preview large TXT files fixNmz2014-10-021-1/+1
| | | | | | Limit the size of the string generating the preview image for TXT files
* | New generic class for Imagemagick conversionsOlivier Paroz2014-10-043-96/+117
|/
* Add a configuration switch for enabled preview mimetypesLukas Reschke2014-09-222-49/+5
|
* Merge pull request #9554 from owncloud/fix_preview_orientationLukas Reschke2014-09-171-0/+1
|\ | | | | fix orientation in image-backend, not in preview system itself
| * fix orientation in image-backend, not in preview system itselfGeorg Ehrke2014-07-091-0/+1
| |