Index: plugins.h =================================================================== --- plugins.h (revision 23991) +++ plugins.h (revision 23992) @@ -14,6 +14,7 @@ plugin_def("lib_legacy_func", "legacy functions", sbuildin, 1) plugin_def("lib_netmap", "map nets and objects", sdisable, 0) plugin_def("lib_polyhelp", "polygon helpers", sbuildin, 1) +plugin_def("lib_vfs", "fetch data for VFS export", sdisable, 0) plugin_header("\nFeature plugins:\n") plugin_def("acompnet", "net auto-completion", sdisable, 1) @@ -90,7 +91,7 @@ plugin_def("export_gerber", "Gerber pcb_exporter", sbuildin, 1) plugin_def("export_ipcd356", "IPC-D-356 Netlist pcb_exporter", sbuildin, 1) plugin_def("export_lpr", "lpr pcb_exporter (printer)", sbuildin, 1) -plugin_def("export_oldconn", "export connection data in an old format",sbuildin, 1) +plugin_def("export_oldconn", "old connection data format", sbuildin, 1) plugin_def("export_openems", "openems exporter", sdisable, 1) plugin_def("export_openscad", "openscad pcb_exporter", sbuildin, 1) plugin_def("export_png", "png/gif/jpg pcb_exporter", sbuildin, 1) @@ -98,6 +99,8 @@ plugin_def("export_stat", "export board statistics", sbuildin, 1) plugin_def("export_svg", "SVG pcb_exporter", sbuildin, 1) plugin_def("export_test", "dummy test pcb_exporter", sdisable, 1) +plugin_def("export_vfs_fuse", "FUSE VFS server", sdisable, 1) +plugin_def("export_vfs_mc", "GNU mc VFS server", sdisable, 1) plugin_def("export_xy", "xy (centroid) pcb_exporter", sbuildin, 1) plugin_header("\nIO plugins (file formats):\n") @@ -132,6 +135,8 @@ plugin_dep("export_lpr", "export_ps") plugin_dep("export_openems", "lib_polyhelp") plugin_dep("export_openscad", "lib_polyhelp") +plugin_dep("export_vfs_fuse", "lib_vfs") +plugin_dep("export_vfs_mc", "lib_vfs") plugin_dep("export_xy", "export_bom") plugin_dep("extedit", "io_lihata") plugin_dep("fp_wget", "fp_fs")