40 Commits
NR-v40 ... main

Author SHA1 Message Date
Gitea Action
879263b6e7 Update updaterNR.json for version 44 2026-01-08 11:44:36 +00:00
f2bf47b30b v44 2026-01-08 12:44:13 +01:00
432e30abe0 p9_nr_platform_mod/module.prop aktualisiert 2026-01-08 12:43:30 +01:00
Gitea Action
b3e8eaad75 Update updaterLTE.json for version 42 2026-01-08 11:40:52 +00:00
50e3fabacd changelog-LTE.md aktualisiert 2026-01-08 12:40:21 +01:00
30f6351d77 p9_lte_combos_mod/module.prop aktualisiert 2026-01-08 12:39:44 +01:00
01b736c27f p9_lte_combos_mod/module.prop aktualisiert 2025-11-30 10:53:37 +01:00
42d610ee92 p9_nr_platform_mod/module.prop aktualisiert 2025-11-30 10:53:11 +01:00
cabb0bde8c updaterLTE.json aktualisiert 2025-11-30 10:51:55 +01:00
1c51152fd0 README.md aktualisiert 2025-11-26 10:01:39 +01:00
1e824d9675 README.md aktualisiert 2025-11-26 09:44:45 +01:00
7d8733feac .gitea/workflows/release-lte-mod.yml aktualisiert 2025-11-16 13:13:51 +01:00
8d19c09a89 .gitea/workflows/release-nr-mod.yml aktualisiert 2025-11-16 13:13:30 +01:00
b77edec8a4 .gitea/workflows/test-telegram.yml gelöscht 2025-11-16 13:12:46 +01:00
Gitea Action
4cf69b0361 Update updaterNR.json for version 42 2025-11-16 12:10:59 +00:00
1da7443671 p9_nr_platform_mod/module.prop aktualisiert 2025-11-16 13:10:44 +01:00
9d4baeb89b changelog-NR.md aktualisiert 2025-11-16 13:10:28 +01:00
Gitea Action
d70219a909 Update updaterNR.json for version 43 2025-11-16 12:04:43 +00:00
aa5d226863 changelog-NR.md aktualisiert 2025-11-16 13:04:28 +01:00
8215cb77ff p9_nr_platform_mod/module.prop aktualisiert 2025-11-16 13:04:10 +01:00
917fb03d42 Dateien nach ".gitea/workflows" hochladen 2025-11-16 12:59:59 +01:00
Gitea Action
22f86a5d22 Update updaterNR.json for version 42 2025-11-16 11:53:40 +00:00
853c77cfe8 .gitea/workflows/release-lte-mod.yml aktualisiert 2025-11-16 12:53:26 +01:00
63b66e72fc .gitea/workflows/release-nr-mod.yml aktualisiert 2025-11-16 12:53:01 +01:00
077175174d .gitea/workflows/release-nr-mod.yml aktualisiert 2025-11-16 12:46:45 +01:00
687487d79f .gitea/workflows/release-lte-mod.yml aktualisiert 2025-11-16 12:46:33 +01:00
25de5e5b08 .gitea/workflows/release-lte-mod.yml aktualisiert 2025-11-16 12:35:47 +01:00
8aec26308c .gitea/workflows/release-nr-mod.yml aktualisiert 2025-11-16 12:34:42 +01:00
08a8e0798b .github/workflows/release-nr-mod.yml gelöscht 2025-11-16 12:21:12 +01:00
6806c0b929 .github/workflows/release-lte-mod.yml gelöscht 2025-11-16 12:21:07 +01:00
ed9319275d Dateien nach ".gitea/workflows" hochladen 2025-11-16 12:20:55 +01:00
827954484c Dateien nach "p9_nr_platform_mod/system/vendor/firmware/uecapconfig" hochladen 2025-11-16 11:58:39 +01:00
208d7cbaa1 p9_nr_platform_mod/module.prop aktualisiert 2025-11-16 11:57:53 +01:00
cffad166be changelog-NR.md aktualisiert 2025-11-16 11:57:22 +01:00
Henrik
721674f0b1 Update README.md 2025-07-15 07:23:26 +02:00
GitHub Action
a8a5944b8d Update updaterNR.json for version 41 2025-06-29 18:42:39 +00:00
Henrik
8f142fb73d v41 2025-06-29 20:42:26 +02:00
Henrik
b9a9d93cfe v41 2025-06-29 20:41:25 +02:00
Henrik
10fcfe5311 v41 2025-06-29 20:41:09 +02:00
GitHub Action
c9e1e0468f Update updaterNR.json for version 40 2025-06-05 10:20:28 +00:00
10 changed files with 87 additions and 50 deletions

View File

@@ -31,17 +31,32 @@ jobs:
cd ..
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.RELEASE_TAG }}
name: Release ${{ env.RELEASE_TAG }}
draft: false
prerelease: false
files: |
p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip
GITEA_TOKEN: ${{ secrets.REPO_TOKEN }}
run: |
# Create the release using Gitea API
curl -X POST \
"https://git.hnrk.io/api/v1/repos/henrik/pixel9-EU-combos/releases" \
-H "Authorization: token ${GITEA_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"tag_name": "${{ env.RELEASE_TAG }}",
"name": "Release ${{ env.RELEASE_TAG }}",
"body": "LTE Module Release ${{ env.MOD_VERSION }}",
"draft": false,
"prerelease": false
}'
# Upload the release asset
RELEASE_ID=$(curl -s \
"https://git.hnrk.io/api/v1/repos/henrik/pixel9-EU-combos/releases/tags/${{ env.RELEASE_TAG }}" \
-H "Authorization: token ${GITEA_TOKEN}" | grep -o '"id":[0-9]*' | head -1 | cut -d: -f2)
curl -X POST \
"https://git.hnrk.io/api/v1/repos/henrik/pixel9-EU-combos/releases/${RELEASE_ID}/assets?name=p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip" \
-H "Authorization: token ${GITEA_TOKEN}" \
-H "Content-Type: application/zip" \
--data-binary @"p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip"
- name: Update updater JSON
run: |
@@ -49,15 +64,15 @@ jobs:
{
"version": "${{ env.MOD_VERSION }}",
"versionCode": ${{ env.MOD_VERSIONCODE }},
"zipUrl": "https://github.com/${{ github.repository }}/releases/download/${{ env.RELEASE_TAG }}/p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip",
"changelog": "https://raw.githubusercontent.com/${{ github.repository }}/main/changelog-LTE.md"
"zipUrl": "https://git.hnrk.io/henrik/pixel9-EU-combos/releases/download/${{ env.RELEASE_TAG }}/p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip",
"changelog": "https://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/changelog-LTE.md"
}
EOF
- name: Commit and push updater JSON
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git config --local user.email "action@gitea.com"
git config --local user.name "Gitea Action"
git add updaterLTE.json
git commit -m "Update updaterLTE.json for version ${{ env.MOD_VERSION }}"
git push
@@ -82,4 +97,4 @@ jobs:
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_2}"; then
echo "Failed to send to second chat"
exit 1
fi
fi

View File

@@ -31,17 +31,32 @@ jobs:
cd ..
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.RELEASE_TAG }}
name: Release ${{ env.RELEASE_TAG }}
draft: false
prerelease: false
files: |
p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip
GITEA_TOKEN: ${{ secrets.REPO_TOKEN }}
run: |
# Create the release using Gitea API
curl -X POST \
"https://git.hnrk.io/api/v1/repos/henrik/pixel9-EU-combos/releases" \
-H "Authorization: token ${GITEA_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"tag_name": "${{ env.RELEASE_TAG }}",
"name": "Release ${{ env.RELEASE_TAG }}",
"body": "NR Module Release ${{ env.MOD_VERSION }}",
"draft": false,
"prerelease": false
}'
# Upload the release asset
RELEASE_ID=$(curl -s \
"https://git.hnrk.io/api/v1/repos/henrik/pixel9-EU-combos/releases/tags/${{ env.RELEASE_TAG }}" \
-H "Authorization: token ${GITEA_TOKEN}" | grep -o '"id":[0-9]*' | head -1 | cut -d: -f2)
curl -X POST \
"https://git.hnrk.io/api/v1/repos/henrik/pixel9-EU-combos/releases/${RELEASE_ID}/assets?name=p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip" \
-H "Authorization: token ${GITEA_TOKEN}" \
-H "Content-Type: application/zip" \
--data-binary @"p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip"
- name: Update updater JSON
run: |
@@ -49,15 +64,15 @@ jobs:
{
"version": "${{ env.MOD_VERSION }}",
"versionCode": ${{ env.MOD_VERSIONCODE }},
"zipUrl": "https://github.com/${{ github.repository }}/releases/download/${{ env.RELEASE_TAG }}/p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip",
"changelog": "https://raw.githubusercontent.com/${{ github.repository }}/main/changelog-NR.md"
"zipUrl": "https://git.hnrk.io/henrik/pixel9-EU-combos/releases/download/${{ env.RELEASE_TAG }}/p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip",
"changelog": "https://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/changelog-NR.md"
}
EOF
- name: Commit and push updater JSON
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git config --local user.email "action@gitea.com"
git config --local user.name "Gitea Action"
git add updaterNR.json
git commit -m "Update updaterNR.json for version ${{ env.MOD_VERSION }}"
git push
@@ -82,4 +97,4 @@ jobs:
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_2}"; then
echo "Failed to send to second chat"
exit 1
fi
fi

View File

@@ -1,6 +1,5 @@
## [Check Releases for Magisk modules](https://github.com/high3eam/pixel9-EU-combos/releases)
### Module includes a built-in updater
## Edit combos yourself
## [Check Releases for Magisk modules](https://git.hnrk.io/henrik/pixel9-EU-combos/releases) (Module includes a built-in updater)
## Edit combos yourself (or even better, use the binarypb editor here: [https://nxij.github.io/pixel-pb/](https://nxij.github.io/pixel-pb/), thanks to [@NXij](https://github.com/NXij))
- Download [`protoc`](https://github.com/protocolbuffers/protobuf/releases) as well as the ShannonUeCap `.proto template` files from this repo.
- Then use protoc to decode the protobuf binary file.
For NR combos, use:

View File

@@ -1,4 +1,5 @@
## v42
- Maintenance release for new updater path
## v41
- Added interband ULCA for combos 32A+8A+7A+3C, 20A+8A+7A+3C and 32A+20A+7A+3C
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=24d0b9ab-70e6-4ab5-8b7e-6627e007c73e](https://uecaps.hennes.xyz/view/multi/?id=24d0b9ab-70e6-4ab5-8b7e-6627e007c73e)

View File

@@ -1,4 +1,11 @@
## v44
- Maintenance update for new updater path
## v42
- Add n78-n78-n28-n1 SA combo with ULCA
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=ab2eb2f3-9ad0-4e4e-9d1e-55deeda23ef1](https://uecaps.hennes.xyz/view/multi/?id=ab2eb2f3-9ad0-4e4e-9d1e-55deeda23ef1)
## v41
- Add 3xNR-CA NSA combos with 3xLTE-CA for Telekom & Vodafone
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=4d071d16-0a93-491d-9b04-1f4ee503dc0e](https://uecaps.hennes.xyz/view/multi/?id=4d071d16-0a93-491d-9b04-1f4ee503dc0e)
## v40
- Revert n28 UL MIMO (kinda works on DTAG, but DL/UL thput performance gets a huge hit and BLER becomes massive)
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=1d3a64d5-4588-4000-8e0a-e15ed70889ac](https://uecaps.hennes.xyz/view/multi/?id=1d3a64d5-4588-4000-8e0a-e15ed70889ac)
@@ -52,4 +59,4 @@
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=87ffbc9c-2da9-4f65-8849-0bd06735d94a](https://uecaps.hennes.xyz/view/multi/?id=87ffbc9c-2da9-4f65-8849-0bd06735d94a)
## v23
- Removed intraband EN-DC combos, because these interfere with legitimate EN-DC combos including NR-CA (E/// RAN bug?)
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=3277c022-ba8e-4eed-96da-f2c58a6fa91a](https://uecaps.hennes.xyz/view/multi/?id=3277c022-ba8e-4eed-96da-f2c58a6fa91a)
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=3277c022-ba8e-4eed-96da-f2c58a6fa91a](https://uecaps.hennes.xyz/view/multi/?id=3277c022-ba8e-4eed-96da-f2c58a6fa91a)

View File

@@ -1,7 +1,7 @@
id=custom_lte_p9_tokay
name=Pixel 9 custom LTE uecap
version=41
versionCode=41
version=42
versionCode=42
author=high3eam
description=replaces lte uecaps binarypb with custom one for added lowband ca
updateJson=https://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/updaterLTE.json
updateJson=https://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/updaterLTE.json

View File

@@ -1,7 +1,7 @@
id=custom_platform_p9_tokay
name=Pixel 9 custom uecap platform 2CC 3CC FDD NRULCA NR UL MIMO
version=40
versionCode=40
version=44
versionCode=44
author=high3eam
description=replaces default platform binarypb with custom one, 2CC 3CC FDD NRULCA and FDD NR UL MIMO
updateJson=https://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/updaterNR.json
updateJson=https://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/updaterNR.json

View File

@@ -1,6 +1,6 @@
{
"version": "41",
"versionCode": 41,
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/LTE-v41/p9_lte_combos_mod_v41.zip",
"changelog": "https://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/changelog-LTE.md"
"version": "42",
"versionCode": 42,
"zipUrl": "https://git.hnrk.io/henrik/pixel9-EU-combos/releases/download/LTE-v42/p9_lte_combos_mod_v42.zip",
"changelog": "https://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/changelog-LTE.md"
}

View File

@@ -1,6 +1,6 @@
{
"version": "39",
"versionCode": 39,
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/NR-v39/p9_nr_platform_mod_v39.zip",
"changelog": "https://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/changelog-NR.md"
"version": "44",
"versionCode": 44,
"zipUrl": "https://git.hnrk.io/henrik/pixel9-EU-combos/releases/download/NR-v44/p9_nr_platform_mod_v44.zip",
"changelog": "https://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/changelog-NR.md"
}