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
8
.github/workflows/gradle-publish.yml
vendored
8
.github/workflows/gradle-publish.yml
vendored
|
@ -4,7 +4,7 @@
|
|||
name: Gradle Package
|
||||
|
||||
on:
|
||||
|
||||
workflow_dispatch:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
|
@ -24,7 +24,7 @@ jobs:
|
|||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '11'
|
||||
distribution: 'adopt'
|
||||
distribution: 'temurin'
|
||||
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
|
||||
settings-path: ${{ github.workspace }} # location for the settings.xml file
|
||||
|
||||
|
@ -38,8 +38,8 @@ jobs:
|
|||
ORG_GRADLE_PROJECT_RELEASE_STORE_FILE: ${{ secrets.BROUTER_KEYSTORE_FILE }}
|
||||
ORG_GRADLE_PROJECT_RELEASE_KEY_ALIAS: ${{ secrets.BROUTER_KEY_ALIAS }}
|
||||
ORG_GRADLE_PROJECT_RELEASE_KEY_PASSWORD: ${{ secrets.BROUTER_KEY_PASSWORD }}
|
||||
ORG_GRADLE_PROJECT_RELEASE_STORE_PASSWORD: ${{ secrets.BROUTER_STORE_PASSWORD }}
|
||||
run: gradle build
|
||||
ORG_GRADLE_PROJECT_RELEASE_STORE_PASSWORD: ${{ secrets.BROUTER_STORE_PASSWORD }}
|
||||
run: gradle build bundle
|
||||
|
||||
# The USERNAME and TOKEN need to correspond to the credentials environment variables used in
|
||||
# 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
|
||||
with:
|
||||
java-version: '11'
|
||||
distribution: 'zulu'
|
||||
distribution: 'temurin'
|
||||
cache: gradle
|
||||
- name: Create local.properties
|
||||
run: touch local.properties
|
||||
|
|
|
@ -36,8 +36,8 @@ import btools.util.FrozenLongMap;
|
|||
import btools.util.StringUtils;
|
||||
|
||||
public final class OsmTrack {
|
||||
final public static String version = "1.7.2-beta-1";
|
||||
final public static String versionDate = "12072023+";
|
||||
final public static String version = "1.7.2";
|
||||
final public static String versionDate = "19072023";
|
||||
|
||||
// csv-header-line
|
||||
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)
|
||||
// OsmTrack (version and versionDate)
|
||||
// docs revisions.md (version and versionDate)
|
||||
project.version "1.7.2-beta-1"
|
||||
project.version "1.7.2"
|
||||
group 'org.btools'
|
||||
|
||||
repositories {
|
||||
|
|
|
@ -2,7 +2,13 @@
|
|||
|
||||
(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
|
||||
|
||||
|
|
Loading…
Reference in a new issue