Revision: 1395 http://svn.sourceforge.net/geany/?rev=1395&view=rev Author: ntrel Date: 2007-03-14 05:36:59 -0700 (Wed, 14 Mar 2007)
Log Message: ----------- Make suggested New Project filename use the projects/ directory as parent directory, instead of projects/name/.
Modified Paths: -------------- trunk/ChangeLog trunk/src/project.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2007-03-14 12:11:50 UTC (rev 1394) +++ trunk/ChangeLog 2007-03-14 12:36:59 UTC (rev 1395) @@ -6,6 +6,9 @@ * src/treeviews.c, src/notebook.c: Don't recreate the open files items when DnD reordering tabs, now that the open files treeview is sorted alphabetically. + * src/project.c: + Make suggested New Project filename use the projects/ directory as + parent directory, instead of projects/name/.
2007-03-13 Enrico Tröger enrico.troeger@uvena.de
Modified: trunk/src/project.c =================================================================== --- trunk/src/project.c 2007-03-14 12:11:50 UTC (rev 1394) +++ trunk/src/project.c 2007-03-14 12:36:59 UTC (rev 1395) @@ -710,7 +710,7 @@ name, G_DIR_SEPARATOR_S, NULL); file_name = g_strconcat( GEANY_HOME_DIR, G_DIR_SEPARATOR_S, PROJECT_DIR, G_DIR_SEPARATOR_S, - name, G_DIR_SEPARATOR_S, name, "." GEANY_PROJECT_EXT, NULL); + name, "." GEANY_PROJECT_EXT, NULL); g_free(name); } else
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.