From 651b0fc0da9529842a2057d0ee7979e0cc0daa56 Mon Sep 17 00:00:00 2001 From: Joy <29514446+fillwithjoy1@users.noreply.github.com> Date: Thu, 16 May 2024 12:59:14 +1000 Subject: [PATCH 1/2] docs: add france and update orange pl (#254) --- docs/compatibility-chart.en.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/compatibility-chart.en.md b/docs/compatibility-chart.en.md index 9977a34..568861a 100644 --- a/docs/compatibility-chart.en.md +++ b/docs/compatibility-chart.en.md @@ -29,10 +29,11 @@ Carrier not being listed on the table does not mean that this patch won't work f | South America | Peru (716) | Claro (10) | O | X | [Reference](https://github.com/kyujin-cho/pixel-volte-patch/discussions/93) | | Europe | Bulgaria (284) | Yettel (05) | O | Not operational | [Reference](https://github.com/kyujin-cho/pixel-volte-patch/discussions/1#discussioncomment-5012767) | | Europe | Czech Republic (230) | O2 (02) | O | O | Tested on my own Pixel 6a, both VoLTE & VoWiFi work [Reference](https://github.com/kyujin-cho/pixel-volte-patch/pull/130) | +| Europe | France (208) | Bouygues (20, 21) | O | O | [Reference](https://github.com/kyujin-cho/pixel-volte-patch/issues/175) | | Europe | Various countries | Elisa | O | O | [Reference](https://github.com/kyujin-cho/pixel-volte-patch/issues/125#issue-1698533656) | | Europe | Various countries | Saunalahti | O | O | [Reference](https://github.com/kyujin-cho/pixel-volte-patch/issues/125#issue-1698533656) | | Europe | Switzerland (228) | Salt (03) | O | O | [Reference](https://github.com/kyujin-cho/pixel-volte-patch/issues/125#issuecomment-1546696568) | -| Europe | Poland (260) | Orange PL (03) | O | O | [Reference](https://github.com/kyujin-cho/pixel-volte-patch/issues/17) | +| Europe | Poland (260) | Orange PL (03) | O | O | [Reference](https://github.com/kyujin-cho/pixel-volte-patch/issues/17). If Vo-Wifi isn't working, you may need to add the `ims` APN [Reference](https://github.com/kyujin-cho/pixel-volte-patch/issues/136#issuecomment-1565598716) | | Europe | Poland (260) | Plus (01) | O | O | [Reference](https://github.com/kyujin-cho/pixel-volte-patch/issues/17) | | Europe | Poland (260) | Play (06) | O | O | Need to set APN as `ims`. [Reference](https://github.com/kyujin-cho/pixel-volte-patch/issues/17) | | Europe | Romania (226) | Vodafone (01) | O | O | [Reference](https://github.com/kyujin-cho/pixel-volte-patch/discussions/6) | From ef16fb05ddc185609872c8903051b74aa4b74e47 Mon Sep 17 00:00:00 2001 From: Kyujin Cho Date: Thu, 16 May 2024 12:03:16 +0900 Subject: [PATCH 2/2] chore(ci): add lint checker also to `build-debug-apk` action --- .github/workflows/build-debug-apk.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/build-debug-apk.yml b/.github/workflows/build-debug-apk.yml index 49688b5..60c7323 100644 --- a/.github/workflows/build-debug-apk.yml +++ b/.github/workflows/build-debug-apk.yml @@ -11,6 +11,21 @@ permissions: pull-requests: write jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: install ktlint + run: | + curl -sSLO https://github.com/pinterest/ktlint/releases/download/0.48.2/ktlint && chmod a+x ktlint && sudo mv ktlint /usr/local/bin/ + - name: run ktlint + run: | + ktlint --reporter=checkstyle,output=build/ktlint-report.xml + continue-on-error: true + - uses: yutailang0119/action-ktlint@v3 + with: + report-path: build/*.xml # Support glob patterns by https://www.npmjs.com/package/@actions/glob + continue-on-error: false # If annotations contain error of severity, action-ktlint exit 1. build-debug-apk: needs: [lint] if: github.event_name == 'pull_request'