What’s new in GVfs for GNOME 40?

Unfortunately, my contributions to various projects have been limited over the last months given the various coronavirus-related restrictions. Also, I took over gnome-autoar maintainership recently on which I spent some time. So GVfs doesn’t bring as much news as I would like, but there are some which are worth mentioning. Google Shared Drives and Shared …

What’s new in Files (and GVfs) for GNOME 3.36?

After Carlos Soriano and Ernestas Kulik left Files (Nautilus) development, António Fernandes and I are now officially new maintainers. Given the limited manpower, the focus is more on fixing bugs, but some neat new features have been added to Files and GVfs as well. I just explain shortly that GVfs provides access to various protocols …

How to call asynchronous function synchronously

GLib provides a lot of asynchronous functions, especially to deal with I/O. Unfortunately, some functions don’t have synchronous equivalents and the code has to be split into several callbacks. This is not handy in some cases. My this year’s GSoC student recently asked me whether it is possible to create synchronous function from asynchronous. He …