File tree 4 files changed +18
-7
lines changed
locus-api-core/src/main/java/locus/api/objects/geocaching
4 files changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ 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.62] - 2024-11-22
8
+ ### Added
9
+ - support for 'Geocaching HQ Block Party' cache type
10
+
11
+ ### Changed
12
+ - updated compile parameters
13
+
7
14
## [ 0.9.61] - 2024-10-03
8
15
### Fixed
9
16
- incorrectly deserialized custom ` HotSpot `
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.61 **
19
+ Latest stable LT version: ** 0.9.62 **
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 2
2
# BASE
3
3
4
4
# https://developer.android.com/studio/releases/build-tools.html
5
- PARAM_COMPILE_SDK_VERSION = 34
6
- PARAM_MIN_SDK_VERSION = 21
5
+ PARAM_COMPILE_SDK_VERSION = 35
6
+ PARAM_MIN_SDK_VERSION = 23
7
7
PARAM_TARGET_SDK_VERSION = 34
8
8
9
9
# LIBRARIES
10
10
11
11
# https://developer.android.com/studio/releases/gradle-plugin.html
12
- ANDROID_PLUGIN_GRADLE = 8.5.1
12
+ ANDROID_PLUGIN_GRADLE = 8.6.0
13
13
# https://blog.jetbrains.com/kotlin/category/releases/
14
- KOTLIN_VERSION = 1.8.22
14
+ KOTLIN_VERSION = 2.0.20
15
15
# https://developer.android.com/studio/releases/build-tools.html
16
16
ANDROID_BUILD_TOOLS = 34.0.0
17
17
# https://github.com/Kotlin/dokka
@@ -23,8 +23,8 @@ GRADLE_NEXUS_STAGING = 0.30.0
23
23
LOCUS_LOGGER = 2.2
24
24
25
25
# Version
26
- API_CODE = 108
27
- API_VERSION = 0.9.61
26
+ API_CODE = 109
27
+ API_VERSION = 0.9.62
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 @@ -795,6 +795,7 @@ class GeocachingData : Storable() {
795
795
CACHE_TYPE_GC_HQ_CELEBRATION -> return " L&F Celebration"
796
796
CACHE_TYPE_GIGA_EVENT -> return " Giga-Event Cache"
797
797
CACHE_TYPE_LAB_CACHE -> return " Lab Cache"
798
+ CACHE_TYPE_GC_HQ_BLOCK_PARTY -> return " HQ Block Party"
798
799
else -> return " Geocache"
799
800
}
800
801
}
@@ -871,6 +872,8 @@ class GeocachingData : Storable() {
871
872
CACHE_TYPE_GIGA_EVENT
872
873
} else if (typeNew.equals(" Lab Cache" , ignoreCase = true )) {
873
874
CACHE_TYPE_LAB_CACHE
875
+ } else if (typeNew.equals(" Geocaching HQ Block Party" , ignoreCase = true )) {
876
+ CACHE_TYPE_GC_HQ_BLOCK_PARTY
874
877
} else {
875
878
CACHE_TYPE_UNDEFINED
876
879
}
@@ -888,6 +891,7 @@ class GeocachingData : Storable() {
888
891
|| type == CACHE_TYPE_GIGA_EVENT
889
892
|| type == CACHE_TYPE_GPS_ADVENTURE
890
893
|| type == CACHE_TYPE_CACHE_IN_TRASH_OUT
894
+ || type == CACHE_TYPE_GC_HQ_BLOCK_PARTY
891
895
}
892
896
}
893
897
}
You can’t perform that action at this time.
0 commit comments