diff --git a/Changelog.asciidoc b/Changelog.asciidoc index 18bab1ab..7bc86e2f 100644 --- a/Changelog.asciidoc +++ b/Changelog.asciidoc @@ -5,9 +5,10 @@ v1.1 (2017.1):: This release brings some major new components and improvements. -- A .NET layer that allows the creation of file systems in managed mode. -- A simple C++ layer. -- FUSE now has a `-ovolname=VOLNAME` parameter. Thanks @samkelly. +- A .NET layer that allows the creation of file systems in managed mode. This is contained in the new `winfsp-msil.dll`. +- A simple C++ layer can be found in `inc/winfsp/winfsp.hpp`. +- FUSE for Cygwin is now included with the installer. +- FUSE now has a `-ovolname=VOLNAME` parameter that allows setting the volume label. Thanks @samkelly. v1.0:: diff --git a/build/VStudio/installer/Product.wxs b/build/VStudio/installer/Product.wxs index 383f5702..42dcf986 100644 --- a/build/VStudio/installer/Product.wxs +++ b/build/VStudio/installer/Product.wxs @@ -39,6 +39,7 @@ + @@ -269,6 +270,19 @@ NOT VersionNT64 + + + + + + + + + + + + + @@ -411,6 +425,11 @@ + + + + + @@ -508,6 +527,16 @@ + + + diff --git a/opt/cygfuse/dist/fuse-2.8-4.tar.xz b/opt/cygfuse/dist/fuse-2.8-4.tar.xz new file mode 100644 index 00000000..925bc40b Binary files /dev/null and b/opt/cygfuse/dist/fuse-2.8-4.tar.xz differ diff --git a/opt/cygfuse/dist/install.sh b/opt/cygfuse/dist/install.sh new file mode 100644 index 00000000..29590ac5 --- /dev/null +++ b/opt/cygfuse/dist/install.sh @@ -0,0 +1 @@ +tar -C/ -xaf fuse-2.8-*.tar.xz diff --git a/opt/cygfuse/dist/uninstall.sh b/opt/cygfuse/dist/uninstall.sh new file mode 100644 index 00000000..a910fe1f --- /dev/null +++ b/opt/cygfuse/dist/uninstall.sh @@ -0,0 +1 @@ +tar -taf fuse-2.8-*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f