Skip to content

Commit

Permalink
- chg: minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
menion committed Feb 8, 2019
1 parent 39fe381 commit dd0204a
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 12 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.3.4] - 2018-01-18
## [0.3.5] - 2019-02-08
### Added
- requesting tracks in certain file format

### Changed
- part of LocusUtils functions converted to IntentHelper object

## [0.3.4] - 2019-01-18
### Added
- search for visible points on the map based on coordinates & radius
- option to start navigation/gudiding on point defined by it's ID
Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
Locus API - Core: [ ![Download](https://api.bintray.com/packages/asammsoft/maven/locus-api/images/download.svg) ](https://bintray.com/asammsoft/maven/locus-api-core/_latestVersion)

Locus API - Android: [ ![Download](https://api.bintray.com/packages/asammsoft/maven/locus-api-android/images/download.svg) ](https://bintray.com/asammsoft/maven/locus-api-android/_latestVersion)
[ ![Download](https://api.bintray.com/packages/asammsoft/maven/locus-api-android/images/download.svg) ](https://bintray.com/asammsoft/maven/locus-api-android/_latestVersion)

# Locus API

Library for [Locus Map](http://www.locusmap.eu) application for Android devices.


## Current version

Latest stable LT version: **0.2.25**

Versions 3.x are in partial rewrite, so use on own risk (& report issues if found)

## Structure

Whole API is divided into two separate parts:

- library written in pure Java - **Locus API - Core**
Expand Down
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Locus API pages
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ KOTLIN_VERSION = 1.2.71
ANDROID_BUILD_TOOLS = 28.0.3

# Version
API_CODE = 35
API_VERSION = 0.3.4
API_CODE = 36
API_VERSION = 0.3.5

# ANDROID SUPPORT LIBS
# https://developer.android.com/topic/libraries/support-library/revisions.html
Expand Down
2 changes: 1 addition & 1 deletion locus-api-android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add dependency to your `build.gradle` module config
```gradle
dependencies {
// get locus API
compile 'com.asamm:locus-api-android:0.2.3'
compile 'com.asamm:locus-api-android:[version]'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ import locus.api.utils.Logger
import org.json.JSONObject

/**
* New version of "Basic tools" optimized for quick and clear users (also thanks to Kotlin).
* New version of "Basic tools" optimized for quick and clear usage.
* Most of functions are converted from `ActionTools` class.
*/
object ActionBasics {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,11 +433,8 @@ public static Track getLocusTrack(Context ctx, LocusVersion lv, long trackId)
return null;
}

//*************************************************
// PART TO REWRITE
//*************************************************

// TODO
// BELOW: PART TO REWRITE

//*************************************************
// FILE PICKER
Expand Down

0 comments on commit dd0204a

Please sign in to comment.