Skip to content

Commit 2a63170

Browse files
committed
- var: stupidy in practice fix
1 parent 830fe3f commit 2a63170

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

Diff for: CHANGELOG.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [0.9.59] - 2024-09-19
8-
### Fixed
9-
- restored missing `getCoords` method of `HotSpot`
10-
11-
## [0.9.58] - 2024-09-19
7+
## [0.9.60] - 2024-09-19
128
### Changed
139
- rename of `HotSpot` object (from `KmlVec2`) & optimization in it's usage
1410
- minor refactoring

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Library for [Locus Map](https://www.locusmap.app) application for Android device
1616

1717
## Current version
1818

19-
Latest stable LT version: **0.9.59**
19+
Latest stable LT version: **0.9.60**
2020
Available versions on the maven repository: [here](https://repo1.maven.org/maven2/com/asamm/).
2121

2222
How to **update to new 0.9.x** version? More about it [here](https://github.com/asamm/locus-api/wiki/Update-to-version-0.9.0).

Diff for: gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ GRADLE_NEXUS_STAGING = 0.30.0
2323
LOCUS_LOGGER = 2.2
2424

2525
# Version
26-
API_CODE = 106
27-
API_VERSION = 0.9.59
26+
API_CODE = 107
27+
API_VERSION = 0.9.60
2828

2929
# ANDROID SUPPORT LIBS
3030
# https://developer.android.com/topic/libraries/support-library/revisions.html

Diff for: locus-api-core/src/main/java/locus/api/objects/styles/HotSpot.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ data class HotSpot(
1717
/**
1818
* Compute reference coordinates of certain image based on the defined hotSpot parameters.
1919
*/
20-
fun HotSpot.getCoords(sourceWidth: Double, sourceHeight: Double, result: DoubleArray? = DoubleArray(2)): DoubleArray {
20+
fun getCoords(sourceWidth: Double, sourceHeight: Double, result: DoubleArray? = DoubleArray(2)): DoubleArray {
2121
var resultNew = result
2222

2323
// check container for results

0 commit comments

Comments
 (0)