~mati75/spacefm/+git/next:next

Last commit made on 2018-03-04
Get this branch:
git clone -b next https://git.launchpad.net/~mati75/spacefm/+git/next

Branch merges

Branch information

Name:
next
Repository:
lp:~mati75/spacefm/+git/next

Recent commits

6b37a55... by IgnorantGuru <email address hidden>

start 1.0.6+next

e6f2918... by IgnorantGuru <email address hidden>

release 1.0.6

1c130d0... by IgnorantGuru <email address hidden>

fix mktemp in mtp handler not busybox compatible #624

327a6ca... by IgnorantGuru <email address hidden>

fix file list new bookmark with topmost bookmark selected

871c810... by IgnorantGuru <email address hidden>

fix bookmark pane and toolbar two-finger right-click

296f17e... by IgnorantGuru <email address hidden>

http-davfs hanbdler don't open terminal if opening link in web browser #648

f9df84f... by IgnorantGuru <email address hidden>

fix regression de7bead1 #648

de7bead... by IgnorantGuru <email address hidden>

fix davfs is not mounted #648 [Vladimir-csp]

replaces davfs handler to one provided by Vladimir-csp.

fix fuse default protocol handler not added due to false positive test, add
mtab_fs=fuse to its whitelist to handle davfs unmount.

increment config_ver to 28 (1.0.6)

3852950... by IgnorantGuru <email address hidden>

fix segfault on drag to reorder bookmarks

Auto DND handler for reordering bookmarks uses row-inserted, row-deleted
events. GTK docs say to use row-deleted event to update data (bookmarks list)
but code there caused a crash because auto DND handler is not yet done with
the list store? So this commit moves update of the list to event drag-end.

7967bd4... by IgnorantGuru <email address hidden>

fix drag & drop segfaults #636 [BwackNinja]

Per BwackNinja: gtk_tree_drag_source_drag_data_delete should be wrapped in a
if (GTK_IS_TREE_DRAG_SOURCE (model)) because the drag source is not always a
tree, for example, dragging from the icon view to the tree sidebar. Other uses
of gtk_tree_drag_source_* are similarly wrapped in the same file.