File tree 6 files changed +11
-84
lines changed
locus-api-core/src/main/java/locus/api/objects/styles
6 files changed +11
-84
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 0.9.61] - 2024-10-03
8
+ ### Fixed
9
+ - incorrectly deserialized custom ` HotSpot `
10
+
7
11
## [ 0.9.60] - 2024-09-19
8
12
### Changed
9
13
- rename of ` HotSpot ` object (from ` KmlVec2 ` ) & optimization in it's usage
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Library for [Locus Map](https://www.locusmap.app) application for Android device
16
16
17
17
## Current version
18
18
19
- Latest stable LT version: ** 0.9.60 **
19
+ Latest stable LT version: ** 0.9.61 **
20
20
Available versions on the maven repository: [ here] ( https://repo1.maven.org/maven2/com/asamm/ ) .
21
21
22
22
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 ) .
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ GRADLE_NEXUS_STAGING = 0.30.0
23
23
LOCUS_LOGGER = 2.2
24
24
25
25
# Version
26
- API_CODE = 107
27
- API_VERSION = 0.9.60
26
+ API_CODE = 108
27
+ API_VERSION = 0.9.61
28
28
29
29
# ANDROID SUPPORT LIBS
30
30
# https://developer.android.com/topic/libraries/support-library/revisions.html
Original file line number Diff line number Diff line change @@ -104,10 +104,10 @@ data class HotSpot(
104
104
105
105
// return custom hotStop
106
106
return HotSpot (
107
- x = dr.readDouble() ,
108
- xUnits = Units .values()[dr.readInt()] ,
109
- y = dr.readDouble() ,
110
- yUnits = Units .values()[dr.readInt()]
107
+ x = x ,
108
+ xUnits = xUnits ,
109
+ y = y ,
110
+ yUnits = yUnits
111
111
)
112
112
}
113
113
You can’t perform that action at this time.
0 commit comments