aboutsummaryrefslogtreecommitdiffstats
path: root/autoarchive
Commit message (Collapse)AuthorAgeFilesLines
* Remove all things related to autoarchive, which becomes a shared libraryTing-Wei Lan2013-07-3115-3322/+0
|
* Add some missing definitions and functionsTing-Wei Lan2013-07-303-8/+87
|
* Move some common functions into separate filesTing-Wei Lan2013-07-294-158/+263
|
* Fix segmentation fault in the previous commitTing-Wei Lan2013-07-291-1/+0
|
* Use g_signal_query to get signal infomationTing-Wei Lan2013-07-291-32/+28
| | | | Remove duplicate code about signal in the source file.
* Remove unneeded memory allocation and copyingTing-Wei Lan2013-07-291-17/+3
|
* Add AutoarCreate boilerplate codeTing-Wei Lan2013-07-283-0/+525
| | | | Many lines are copied or modified from AutoarExtract
* Fix incorrect properties descriptionTing-Wei Lan2013-07-282-3/+16
|
* Add more archive formats from archive.hTing-Wei Lan2013-07-281-10/+21
|
* Reject to copy the source file without doing modificationTing-Wei Lan2013-07-281-19/+54
| | | | | libarchive will just copy the source file without modifying anything if no filter can be applied. This behavior is not what users expecting.
* Fix bugs in the previous commitTing-Wei Lan2013-07-281-21/+26
|
* Fix extraction problems for archives containing only one fileTing-Wei Lan2013-07-271-35/+71
|
* Add seek and skip callback functions for libarchiveTing-Wei Lan2013-07-272-19/+126
| | | | Seek callback function is required to extract 7-zip file.
* Fix issues in non-ASCII filenameTing-Wei Lan2013-07-271-1/+5
|
* Fix some typoTing-Wei Lan2013-07-272-11/+11
|
* Show error message in download panel if extraction failedTing-Wei Lan2013-07-271-2/+2
|
* Add asynchronous archives extracting functionsTing-Wei Lan2013-07-263-40/+204
|
* Complete archive preferences support and integrate into AutoarExtractTing-Wei Lan2013-07-227-18/+197
|
* Add AutoarPref settings reading supportTing-Wei Lan2013-07-224-78/+188
| | | | These codes has not been tested, so it may contain serious bugs.
* Add .cpio check when removing the file extensionTing-Wei Lan2013-07-221-5/+4
|
* Use BUILT_SOURCES to fix some build dependencies problemTing-Wei Lan2013-07-212-7/+13
|
* Add AutoarPref boilerplate codeTing-Wei Lan2013-07-216-6/+630
|
* Fix some trivial things in the build systemTing-Wei Lan2013-07-192-5/+15
|
* Ignore unneeded files when extracting filesTing-Wei Lan2013-07-173-13/+77
|
* Set uid / gid when writing filesTing-Wei Lan2013-07-161-10/+88
|
* Change the meaning of size variable in AutoarExtractPrivateTing-Wei Lan2013-07-162-20/+16
| | | | | The meaning of the size is changed from read source archive size to the written bytes of the extracted files.
* Add functions to writing files and a new testing programTing-Wei Lan2013-07-154-172/+448
| | | | Several mistakes are discovered and fixed using the testing program.
* Add new function autoar_extract_start to do the extractionTing-Wei Lan2013-07-132-2/+230
| | | | This function is not tested and does not write files to disks currently.
* Implement callback functions for archive_read_openTing-Wei Lan2013-07-122-24/+122
|
* Add AutoarExtract class filesTing-Wei Lan2013-07-093-0/+589
AutoarExtract class is used to handle automatic extraction of archives. Currently only boilerplate code is completed.