OSDN Git Service

android-x86/external-exfat.git
2013-04-20 resver@gmail.comAllow arbitrary changing of lower 9 bits of mode. Allow...
2013-04-20 resver@gmail.comFixed grammar in mount.exfat-fuse manpage.
2013-04-20 resver@gmail.comAdded "quiet" option that makes chmod() and chown(...
2013-03-29 resver@gmail.comAllow -v option for compatibility with mount utility...
2013-03-29 resver@gmail.comUse getopt() for options parsing.
2013-03-28 resver@gmail.comUse -V instead of -v option to print version for consis...
2013-03-18 resver@gmail.comAllow -n option for automount/autofs compatibility.
2013-02-26 resver@gmail.comAvoid extra erase on writes to the end of a file.
2013-02-13 resverAdd fsname parameter as is, without canonicalization...
2013-02-10 resverUse bool type.
2013-01-26 resverMade next_entry() function static.
2013-01-25 resverFixed unexpected removal of a directory if it is moved...
2013-01-25 resverFixed "Operation not permitted" error on reading an...
2013-01-19 resverBumped version to 1.0.0 and updated changelog.
2013-01-19 resverUpdated copyright years.
2013-01-14 resverFixed clusters allocation: a cluster beyond valid clust...
2013-01-11 resverAvoid using PATH_MAX constant.
2013-01-11 resverOS X: disable permission checks made by FUSE.
2013-01-10 resverRemoved duplicate code in reset_cache(): now it uses...
2013-01-10 resverMoved tree_attach() and tree_detach() upper so that...
2013-01-09 resverFixed extra decrement of reference counter of hanging...
2013-01-09 resverFixed cleaning of libexfat broken in r312.
2013-01-09 resverGet PATH and SYSROOT variables from environment if...
2013-01-09 resverRespect AR and RANLIB environment variables in SConscript.
2012-12-29 resverSeek to the beginning of the device after detecting...
2012-12-29 resverPrint device name in the error message.
2012-12-26 resverFixed indentation.
2012-12-26 resverImproved trace macros.
2012-12-25 resverEnabled big_writes. This improves write speed (larger...
2012-12-25 resverFUSE read and write ops should return either buffer...
2012-12-25 resverFixed exfat_generic_pwrite(): it should return -1 on...
2012-12-19 resverReplace fixed PATH to the value from environment. This...
2012-12-19 resverCheck compiler presense in SConscript.
2012-12-18 resverCheck size of off_t type in SConscript.
2012-12-18 resverDo not configure when cleaning.
2012-12-18 resverRemove symlinks on cleaning the install alias.
2012-12-15 resverFixed crash in exfat_rename() when renaming a file...
2012-12-15 resverOS X: fixed raw device size detection. Each disk has...
2012-12-12 resverUse bool type.
2012-12-12 resverOS X: correctly detect device size.
2012-12-11 resverRenamed exfat_mode() to exfat_get_mode().
2012-12-11 resverRemoved extra include.
2012-12-08 resverCheck file size after all name entries are parsed and...
2012-12-08 resverDo not print directory name on size check failure becau...
2012-12-08 resverUse bool type.
2012-12-08 resverOS X: set deployment target to Mac OS X 10.5 Leopard.
2012-12-04 resverOn Linux do BLKROGET ioctl to make sure the device...
2012-12-04 resverRefactored device access mode handling.
2012-12-04 resverOS X support:
2012-12-04 resverOS X utilities report error if fchmod() fails. Added...
2012-11-25 resverImproved invalid clusters handling.
2012-11-24 resverReorganized directories checking: check directory befor...
2012-10-28 resverImproved error handling.
2012-08-09 resverBumped version to 0.9.8 and updated changelog.
2012-06-09 resverAvoid integer truncation.
2012-06-09 resverFixed erasing of label buffer.
2012-06-02 resverThe new mkfs rewritten in more declarative style.
2012-05-18 resverExplicitly require C99 and define _GNU_SOURCE to enable...
2012-05-18 resverDefine FUSE_USE_VERSION only before inclusion of fuse...
2012-05-18 resverFixed _FILE_OFFSET_BITS check for the case when it...
2012-05-18 resverFixed copyright years in SConscript.
2012-05-17 resverRespect CPPFLAGS environment variable in SConscript.
2012-05-14 resverFixed handling of characters beyond BMP: UTF-16 surroga...
2012-05-07 resverFixed file name in heading.
2012-05-01 resverFix copyright years.
2012-04-03 resverEcho messages to syslog only if stderr is not connected...
2012-03-19 resverSuggest valid cluster size if user specified too small...
2012-03-19 resverSelect suitable cluster size when creating a huge FS...
2012-03-18 resverFail to create FS if specified cluster size is too...
2012-03-18 resverAdded constant for the last possible valid cluster...
2012-03-18 resverFixed huge sizes formatting.
2012-03-08 resverBumped version to 0.9.7 and updated changelog.
2012-03-04 resverFixed format warnings produced by clang.
2012-03-04 resverCorrected error message about device type.
2012-03-04 resverAdded ublio support for FreeBSD.
2012-03-03 resverUse a list of libraries in SConscript.
2012-03-03 resverRepresent device as an extensible structure instead...
2012-03-03 resverSupport building on FreeBSD.
2012-03-03 resverMoved platform-specific configuration code after common.
2012-03-01 resverFixed use of write() missed in r262.
2012-03-01 resverAdded exfat_seek() interface (wrapper for lseek()).
2012-02-20 resverFixed double close on failure to convert volume label...
2012-02-20 resverUse exfat_read() and exfat_write() interfaces.
2012-02-20 resverAdded exfat_read() and exfat_write() interfaces (curren...
2012-02-14 resverUse appropriate feature test macro to enable pread...
2012-02-14 resverAdded exfat_fsync() function that performs fsync agains...
2012-02-14 resverAdded exfat_close() function that closes the device...
2012-02-12 resverRenamed read/write functions:
2012-02-04 resverFixed mtime centiseconds field initialization for newly...
2012-02-04 resverUse a more portable way to obtain timezone offset.
2012-02-02 resverMoved time-related stuff into a separate file.
2012-02-01 resverRemove _XOPEN_SOURCE define since it looks to be not...
2012-01-31 resverPut _XOPEN_SOURCE define before any includes as recomme...
2012-01-31 resverFixed minutes field extraction.
2012-01-31 resverIncreased comments indentation.
2012-01-29 resverRemoved obsolete FIXME comment.
2012-01-29 resverRemoved obsolete FIXME comment.
2012-01-29 resverAdded default compiler flags for clang.
2012-01-29 resverRespect CC, CCFLAGS and LDFLAGS environment variables...
2012-01-28 resverRemove EOD entry handling. The end of a directory shoul...
next