Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparing for version 1.7.6 #713

Merged
merged 2 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions brouter-core/src/main/java/btools/router/OsmTrack.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import btools.util.FrozenLongMap;

public final class OsmTrack {
final public static String version = "1.7.5";
final public static String versionDate = "05062024";
final public static String version = "1.7.6";
final public static String versionDate = "20062024";

// csv-header-line
private static final String MESSAGES_HEADER = "Longitude\tLatitude\tElevation\tDistance\tCostPerKm\tElevCost\tTurnCost\tNodeCost\tInitialCost\tWayTags\tNodeTags\tTime\tEnergy";
Expand Down
2 changes: 1 addition & 1 deletion brouter-routing-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
namespace 'btools.routingapp'
applicationId "btools.routingapp"

versionCode 52
versionCode 53
versionName project.version

resValue('string', 'app_version', defaultConfig.versionName)
Expand Down
8 changes: 8 additions & 0 deletions brouter-routing-app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,11 @@
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

-keep class btools.codec.** { *; }
-keep class btools.router.** { *; }
-keep class btools.expressions.** { *; }
-keep class btools.mapaccess.** { *; }
-keep class btools.server.** { *; }
-keep class btools.util.** { *; }
-keep class btools.routingapp.** { *; }
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
// app: build.gradle (versionCode only)
// OsmTrack (version and versionDate)
// docs revisions.md (version and versionDate)
version '1.7.5'
version '1.7.6'
11 changes: 10 additions & 1 deletion docs/revisions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@

(ZIP-Archives including APK, readme + profiles)

### [brouter-1.7.5.zip](../brouter_bin/brouter-1.7.5.zip) (current revision, 05.06.2024)
### [brouter-1.7.6.zip](../brouter_bin/brouter-1.7.6.zip) (current revision, 20.06.2024)

Android

- bug fix for car profiles

[Solved issues](https://github.com/abrensch/brouter/issues?q=is%3Aissue+milestone%3A%22Version+1.7.6%22+is%3Aclosed)


### [brouter-1.7.5.zip](../brouter_bin/brouter-1.7.5.zip) (05.06.2024)

Android

Expand Down
Loading