Skip to content

Commit

Permalink
Prepare MapLibre Native Android 11.5.0 release (#2866)
Browse files Browse the repository at this point in the history
  • Loading branch information
louwers authored Sep 23, 2024
1 parent c19bb7a commit a1526ce
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
16 changes: 16 additions & 0 deletions platform/android/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@

### 🐞 Bug fixes

## 11.5.0

### ✨ Features and improvements

- Expose `RENDERMODE_CONTINUOUSLY` and `RENDERMODE_WHEN_DIRTY` ([#2801](https://github.com/maplibre/maplibre-native/pull/2801)). Toggling this can be helpful for development (e.g. when testing and optimizing performance).
- Compile for Android with support for 16 KB page sizes ([#2852](https://github.com/maplibre/maplibre-native/pull/2852)).
- Enable crash mitigation when running OpenGL in the Android emulator ([#2858](https://github.com/maplibre/maplibre-native/pull/2858)). Technically the crashes were caused by an issue with the Android Emulator, but we were able to find a workaround.
- Add array support for `icon-padding` ([#2845](https://github.com/maplibre/maplibre-native/pull/2845)).
More information can be found in the [MapLibre Style Spec Documentation](https://maplibre.org/maplibre-style-spec/types/#padding). This is the first (code) contribution from [@random3940](https://github.com/random3940)! 🎉
- Use `thread_local` for thread local scheduler ([#2863](https://github.com/maplibre/maplibre-native/pull/2863)).

### 🐞 Bug fixes

- Move WeakPtrFactory in `map_renderer.hpp` ([#2861](https://github.com/maplibre/maplibre-native/pull/2861)).
- Fix updates hillshade geometry ([#2842](https://github.com/maplibre/maplibre-native/pull/2842)).

## 11.4.0

### ✨ Features and improvements
Expand Down
2 changes: 1 addition & 1 deletion platform/android/MapLibreAndroid/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=11.4.0
VERSION_NAME=11.5.0

# Only build native dependencies for the current ABI
# See https://code.google.com/p/android/issues/detail?id=221098#c20
Expand Down
2 changes: 2 additions & 0 deletions scripts/generate-changelog.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ function getTagLastVersion() {

const tagLastVersion = getTagLastVersion();

if (!process.env.GITHUB_ACCESS_TOKEN) throw new Error("!process.env.GITHUB_ACCESS_TOKEN");

const git = simpleGit();
const octokit = new Octokit({
auth: process.env.GITHUB_ACCESS_TOKEN
Expand Down

0 comments on commit a1526ce

Please sign in to comment.