Skip to content

Commit

Permalink
- support for 'Geocaching HQ Block Party' cache type
Browse files Browse the repository at this point in the history
- updated compile parameters
  • Loading branch information
menion committed Nov 22, 2024
1 parent 63ae530 commit 025016d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.9.62] - 2024-11-22
### Added
- support for 'Geocaching HQ Block Party' cache type

### Changed
- updated compile parameters

## [0.9.61] - 2024-10-03
### Fixed
- incorrectly deserialized custom `HotSpot`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Library for [Locus Map](https://www.locusmap.app) application for Android device

## Current version

Latest stable LT version: **0.9.61**
Latest stable LT version: **0.9.62**
Available versions on the maven repository: [here](https://repo1.maven.org/maven2/com/asamm/).

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).
Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# BASE

# https://developer.android.com/studio/releases/build-tools.html
PARAM_COMPILE_SDK_VERSION = 34
PARAM_MIN_SDK_VERSION = 21
PARAM_COMPILE_SDK_VERSION = 35
PARAM_MIN_SDK_VERSION = 23
PARAM_TARGET_SDK_VERSION = 34

# LIBRARIES

# https://developer.android.com/studio/releases/gradle-plugin.html
ANDROID_PLUGIN_GRADLE = 8.5.1
ANDROID_PLUGIN_GRADLE = 8.6.0
# https://blog.jetbrains.com/kotlin/category/releases/
KOTLIN_VERSION = 1.8.22
KOTLIN_VERSION = 2.0.20
# https://developer.android.com/studio/releases/build-tools.html
ANDROID_BUILD_TOOLS = 34.0.0
# https://github.com/Kotlin/dokka
Expand All @@ -23,8 +23,8 @@ GRADLE_NEXUS_STAGING = 0.30.0
LOCUS_LOGGER = 2.2

# Version
API_CODE = 108
API_VERSION = 0.9.61
API_CODE = 109
API_VERSION = 0.9.62

# ANDROID SUPPORT LIBS
# https://developer.android.com/topic/libraries/support-library/revisions.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,7 @@ class GeocachingData : Storable() {
CACHE_TYPE_GC_HQ_CELEBRATION -> return "L&F Celebration"
CACHE_TYPE_GIGA_EVENT -> return "Giga-Event Cache"
CACHE_TYPE_LAB_CACHE -> return "Lab Cache"
CACHE_TYPE_GC_HQ_BLOCK_PARTY -> return "HQ Block Party"
else -> return "Geocache"
}
}
Expand Down Expand Up @@ -871,6 +872,8 @@ class GeocachingData : Storable() {
CACHE_TYPE_GIGA_EVENT
} else if (typeNew.equals("Lab Cache", ignoreCase = true)) {
CACHE_TYPE_LAB_CACHE
} else if (typeNew.equals("Geocaching HQ Block Party", ignoreCase = true)) {
CACHE_TYPE_GC_HQ_BLOCK_PARTY
} else {
CACHE_TYPE_UNDEFINED
}
Expand All @@ -888,6 +891,7 @@ class GeocachingData : Storable() {
|| type == CACHE_TYPE_GIGA_EVENT
|| type == CACHE_TYPE_GPS_ADVENTURE
|| type == CACHE_TYPE_CACHE_IN_TRASH_OUT
|| type == CACHE_TYPE_GC_HQ_BLOCK_PARTY
}
}
}

0 comments on commit 025016d

Please sign in to comment.