In the preferences menu there is an option to "Show hidden files". However this as no effect at all, even after pressing the "Refresh" button. as a result there is no way to burn hidden files or folders. This bug was tested on xfburn 0.3.2
I don't know how to create a patch, this is how I "fix" it. //----------------------------------------------------------------- // file: "xfburn/trunk/xfburn/xfburn-utils.c", line: 64 gboolean xfburn_hidden_files(const gchar *temp) { if(temp != '.') return TRUE; else return xfburn_settings_get_boolean("show-hidden-files",TRUE); } //----------------------------------------------------------------- // file: "xfburn/trunk/xfburn/xfburn-utils.h", line: 35 gboolean xfburn_hidden_files(const gchar *); //----------------------------------------------------------------- // file: "xfburn/trunk/xfburn/xfburn-fs-browser.c", line: 155/156 if (xfburn_hidden_files(dir_entry[0]) && g_file_test (full_path, G_FILE_TEST_IS_DIR) && !g_file_test (full_path, G_FILE_TEST_IS_SYMLINK)) { //----------------------------------------------------------------- // file: "xfburn/trunk/xfburn/xfburn-directory-browser.c", line: 269 if (xfburn_hidden_files(dir_entry[0]) && (stat (full_path, &s) == 0)) { //----------------------------------------------------------------- The refresh button, doesn't refresh the fs browser, so if the settings change, only in the directory browse (after clicking refresh) will show or hide the hidden files/folders. (revision 7175) Jorge Zuanon
Thanks for the info Jorge. Creating a patch is quite easy, specially if you work from svn. Just create the changes in the checked out directory, and then run 'svn diff'. That would be more useful, otherwise this will have to wait a bit, since I'm pretty busy at the moment.
Created attachment 2312 Show hidden files Hi David, here is the patch.
Thanks again for the patch, and sorry it took so long. I implemented it a bit differently, let me know if you still have trouble. *** This bug has been marked as a duplicate of bug 5500 ***