Added track name and description to the gpx file
authorDr. Johann Pfefferl <pfefferl@nghape.jpnet>
Sun, 30 May 2010 09:42:24 +0000 (11:42 +0200)
committerDr. Johann Pfefferl <pfefferl@nghape.jpnet>
Sun, 30 May 2010 09:42:24 +0000 (11:42 +0200)
debian/changelog
gps-tracker.c

index 5bfc5d7..544dd66 100644 (file)
@@ -1,8 +1,9 @@
 gps-tracker (1.0-9) unstable; urgency=low
 
   * Changed name of application
+  * Added track name and description to the gpx file
 
- -- Dr. Johann Pfefferl <pfefferl@gmx.net>  Sun, 30 May 2010 11:19:32 +0200
+ -- Dr. Johann Pfefferl <pfefferl@gmx.net>  Sun, 30 May 2010 11:41:41 +0200
 
 gps-tracker (1.0-8) unstable; urgency=low
 
index 90f08b7..69247c3 100644 (file)
@@ -58,11 +58,13 @@ static void write_gpx_header(FILE *fp)
   g_fprintf(fp,
       "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
       "<gpx version=\"1.0\"\n"
-      "creator=\"GPS tracker for Maemo\"\n"
+      "creator=\"GPS Træcker for Maemo\"\n"
       "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
       "xmlns=\"http://www.topografix.com/GPX/1/0\"\n"
       "xsi:schemaLocation=\"http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd\">\n"
-      "<trk>\n<trkseg>\n"
+      "<trk>\n"
+      "<name>gps-tracker</name>\n"
+      "<desc>This is a track recorded by 'GPS Træcker' on Maemo</desc>\n<trkseg>\n"
       );
 }