Merge pull request #596 from afischerdev/new-apk
Prepare new release 1.7.2
This commit is contained in:
commit
cabdea1e94
5 changed files with 15 additions and 9 deletions
6
.github/workflows/gradle-publish.yml
vendored
6
.github/workflows/gradle-publish.yml
vendored
|
@ -4,7 +4,7 @@
|
||||||
name: Gradle Package
|
name: Gradle Package
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
release:
|
release:
|
||||||
types: [created]
|
types: [created]
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ jobs:
|
||||||
uses: actions/setup-java@v3
|
uses: actions/setup-java@v3
|
||||||
with:
|
with:
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
distribution: 'adopt'
|
distribution: 'temurin'
|
||||||
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
|
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
|
||||||
settings-path: ${{ github.workspace }} # location for the settings.xml file
|
settings-path: ${{ github.workspace }} # location for the settings.xml file
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ jobs:
|
||||||
ORG_GRADLE_PROJECT_RELEASE_KEY_ALIAS: ${{ secrets.BROUTER_KEY_ALIAS }}
|
ORG_GRADLE_PROJECT_RELEASE_KEY_ALIAS: ${{ secrets.BROUTER_KEY_ALIAS }}
|
||||||
ORG_GRADLE_PROJECT_RELEASE_KEY_PASSWORD: ${{ secrets.BROUTER_KEY_PASSWORD }}
|
ORG_GRADLE_PROJECT_RELEASE_KEY_PASSWORD: ${{ secrets.BROUTER_KEY_PASSWORD }}
|
||||||
ORG_GRADLE_PROJECT_RELEASE_STORE_PASSWORD: ${{ secrets.BROUTER_STORE_PASSWORD }}
|
ORG_GRADLE_PROJECT_RELEASE_STORE_PASSWORD: ${{ secrets.BROUTER_STORE_PASSWORD }}
|
||||||
run: gradle build
|
run: gradle build bundle
|
||||||
|
|
||||||
# The USERNAME and TOKEN need to correspond to the credentials environment variables used in
|
# The USERNAME and TOKEN need to correspond to the credentials environment variables used in
|
||||||
# the publishing section of your build.gradle
|
# the publishing section of your build.gradle
|
||||||
|
|
2
.github/workflows/gradle.yml
vendored
2
.github/workflows/gradle.yml
vendored
|
@ -20,7 +20,7 @@ jobs:
|
||||||
uses: actions/setup-java@v3
|
uses: actions/setup-java@v3
|
||||||
with:
|
with:
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
distribution: 'zulu'
|
distribution: 'temurin'
|
||||||
cache: gradle
|
cache: gradle
|
||||||
- name: Create local.properties
|
- name: Create local.properties
|
||||||
run: touch local.properties
|
run: touch local.properties
|
||||||
|
|
|
@ -36,8 +36,8 @@ import btools.util.FrozenLongMap;
|
||||||
import btools.util.StringUtils;
|
import btools.util.StringUtils;
|
||||||
|
|
||||||
public final class OsmTrack {
|
public final class OsmTrack {
|
||||||
final public static String version = "1.7.2-beta-1";
|
final public static String version = "1.7.2";
|
||||||
final public static String versionDate = "12072023+";
|
final public static String versionDate = "19072023";
|
||||||
|
|
||||||
// csv-header-line
|
// csv-header-line
|
||||||
private static final String MESSAGES_HEADER = "Longitude\tLatitude\tElevation\tDistance\tCostPerKm\tElevCost\tTurnCost\tNodeCost\tInitialCost\tWayTags\tNodeTags\tTime\tEnergy";
|
private static final String MESSAGES_HEADER = "Longitude\tLatitude\tElevation\tDistance\tCostPerKm\tElevCost\tTurnCost\tNodeCost\tInitialCost\tWayTags\tNodeTags\tTime\tEnergy";
|
||||||
|
|
|
@ -22,7 +22,7 @@ allprojects {
|
||||||
// app: build.gradle (versionCode only)
|
// app: build.gradle (versionCode only)
|
||||||
// OsmTrack (version and versionDate)
|
// OsmTrack (version and versionDate)
|
||||||
// docs revisions.md (version and versionDate)
|
// docs revisions.md (version and versionDate)
|
||||||
project.version "1.7.2-beta-1"
|
project.version "1.7.2"
|
||||||
group 'org.btools'
|
group 'org.btools'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
|
|
@ -2,7 +2,13 @@
|
||||||
|
|
||||||
(ZIP-Archives including APK, readme + profiles)
|
(ZIP-Archives including APK, readme + profiles)
|
||||||
|
|
||||||
### [brouter-1.7.1.zip](../brouter_bin/brouter-1.7.1.zip) (current revision, 12.07.2023)
|
### [brouter-1.7.2.zip](../brouter_bin/brouter-1.7.2.zip) (current revision, 19.07.2023)
|
||||||
|
|
||||||
|
- Re-index Json output
|
||||||
|
Note: This is different to releases 1.7.0 and 1.7.1. It is recommended to use the current version to avoid breaks in voice hint output for GeoJson.
|
||||||
|
|
||||||
|
|
||||||
|
### [brouter-1.7.1.zip](../brouter_bin/brouter-1.7.1.zip) (12.07.2023)
|
||||||
|
|
||||||
Android
|
Android
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue