Compare commits

..

1 Commits

Author SHA1 Message Date
Jean-Baptiste
554e423a43 Bump Github actions
Signed-off-by: Jean-Baptiste <jeanbaptiste.charron@outlook.fr>
2026-01-01 14:04:38 +01:00
3 changed files with 5 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 1
@@ -78,7 +78,7 @@ jobs:
pip install "protobuf<3.21" --break-system-packages
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 200 # enough to get all commits for the current day
@@ -103,7 +103,7 @@ jobs:
./gradlew -P${{ matrix.arch }} assemble${{ matrix.flavor }}
- name: Upload ${{ matrix.flavor }} apk
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: android-${{ matrix.flavor }}
path: android/app/build/outputs/apk/**/CoMaps-*.apk

View File

@@ -35,7 +35,7 @@ jobs:
xcodebuild -downloadPlatform iOS
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Parallel submodules checkout
shell: bash

View File

@@ -25,6 +25,7 @@ public class ElevationProfileChart extends LineChart
@Override
public boolean onInterceptTouchEvent(MotionEvent ev)
{
getParent().requestDisallowInterceptTouchEvent(true);
return hasZoom() || super.onInterceptTouchEvent(ev);
}