This commit is contained in:
Arndt 2015-10-18 23:53:05 +02:00
parent b21cc2e931
commit 850e8049fb
5 changed files with 6 additions and 6 deletions

View file

@ -253,7 +253,7 @@ public final class OsmTrack
sb.append( " xmlns=\"http://www.topografix.com/GPX/1/1\" \n" );
sb.append( " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" \n" );
sb.append( " xsi:schemaLocation=\"http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd\" \n" );
sb.append( " creator=\"BRouter-1.3\" version=\"1.1\">\n" );
sb.append( " creator=\"BRouter-1.3.1\" version=\"1.1\">\n" );
sb.append( " <trk>\n" );
sb.append(" <name>").append(name).append("</name>\n");
sb.append( " <trkseg>\n" );

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="7"
android:versionName="1.3" package="btools.routingapp">
android:versionCode="8"
android:versionName="1.3.1" package="btools.routingapp">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".BRouterActivity"
android:label="@string/app_name"

View file

@ -533,7 +533,7 @@ private long startTime = 0L;
}
else
{
String result = "version = BRouter-1.3\n"
String result = "version = BRouter-1.3.1\n"
+ "distance = " + cr.getDistance()/1000. + " km\n"
+ "filtered ascend = " + cr.getAscend() + " m\n"
+ "plain ascend = " + cr.getPlainAscend();

View file

@ -88,7 +88,7 @@ public class BRouter
}
System.exit(0);
}
System.out.println("BRouter 1.3 / 18102015 / abrensch");
System.out.println("BRouter 1.3.1 / 18102015 / abrensch");
if ( args.length < 6 )
{
System.out.println("Find routes in an OSM map");

View file

@ -138,7 +138,7 @@ public class RouteServer extends Thread
public static void main(String[] args) throws Exception
{
System.out.println("BRouter 1.3 / 18102015");
System.out.println("BRouter 1.3.1 / 18102015");
if ( args.length != 5 )
{
System.out.println("serve BRouter protocol");