mixtly87
mixtly87
I deleted macFUSE and then installed the OSXFUSE latest version, restarted the MBP, but I'm still getting the error: ``` kext load failed: -603946996 mount_osxfuse: the file system is not...
When I try manually: ``` cd /Library/Filesystems/osxfuse.fs/Contents/Extensions/10.11 sudo kextload osxfuse.kext Password: Executing: /usr/bin/kmutil load -p /Library/Filesystems/osxfuse.fs/Contents/Extensions/10.11/osxfuse.kext Validating extension failed: KernelExtension com.github.osxfuse.filesystems.osxfuse v3.11.2 in executable kext bundle com.github.osxfuse.filesystems.osxfuse at /Library/Filesystems/osxfuse.fs/Contents/Extensions/10.11/osxfuse.kext: Filesystem...
> > 1. Is there a rough estimate when will 4.0.1 be released to general public? > > I'm currently working on 4.0.3. It will address some compatibility issues. >...
What finally worked for me: 1. Uninstall macFUSE 2. Reboot into Recovery mode and in Terminal do `csrutil disable` - but as @bfleischer this step is probably not needed. 3....
I can confirm that apps linked with OSXFUSE will work on systems having macFUSE installed. However, vice versa does not apply of course: if you link your app with macFUSE,...
> > Conclusion would be that we should continue to link our apps with OSXFUSE for a while to give customers enough time to update their FUSE to macFUSE -...
I fixed it like this: in ADFlipTransition.m, line 335 where last completion block begins: ``` objc if (modal) { [srcViewController presentViewController:[self destinationViewController] animated:NO completion:^{ [destView removeFromSuperview]; }]; [[self sourceView] setHidden:NO];...
Thank you @bfleischer for the quick answer. I tried various things: 1. using decomposedStringWithCompatibilityMapping 2. using decomposedStringWithCanonicalMapping 3. converting path to Data with utf8encoding and then buliding the string with...
Tried with HelloFS example where I return single Däm.txt file and file is properly shown in Finder. Will continue investigation...
@bfleischer setting mount options as: ``` NSArray* options = @[ volName, @"modules=iconv", volIcon, @"from_code=UTF-8", @"to_code=UTF-8" ]; ``` gives a hint. Now UTF-8 chars are appearing in Finder. Also another hint:...