35 Commits

Author SHA1 Message Date
Henrik
7c037792b6 v41 2025-02-23 16:58:42 +01:00
Henrik
a035a44974 v41 2025-02-23 16:57:15 +01:00
Henrik
0b1e0234c0 v41
add interband ULCA for the following combos:
32A + 8A + 7A + 3C
20A + 8A + 7A + 3C
32A + 20A + 7A + 3C
2025-02-23 16:56:55 +01:00
GitHub Action
884406a183 Update updaterLTE.json for version 40 2025-02-22 07:00:41 +00:00
Henrik
0bba25d1b8 v40 2025-02-22 08:00:10 +01:00
Henrik
dfbc3e9151 v40 2025-02-22 07:58:30 +01:00
Henrik
c4e07a0e93 v40
Add
32A+20A+8A+3C with interband UL-CA (3-8, 3-20)
2025-02-22 07:57:50 +01:00
GitHub Action
21da62cbd8 Update updaterLTE.json for version 39 2025-02-20 18:09:46 +00:00
Henrik
3a9f91c6fd v39 2025-02-20 19:09:22 +01:00
Henrik
cd9ea8d704 v39 2025-02-20 19:08:22 +01:00
Henrik
490be7d10b v39
add ULCA for 8A+7A+3A+1A LTE CA combos
2025-02-20 19:07:57 +01:00
GitHub Action
31c993fbce Update updaterNR.json for version 27 2025-02-20 17:54:36 +00:00
Henrik
724570eb40 v27 2025-02-20 18:54:01 +01:00
Henrik
790c3aa063 v27 2025-02-20 18:52:16 +01:00
Henrik
0c7c822585 remove all EN-DC combos with 20_n1 UL and n28 (Radio Link Failure (RLF)) 2025-02-20 18:51:45 +01:00
GitHub Action
f7cce3b498 Update updaterNR.json for version 26 2025-02-20 10:29:23 +00:00
Henrik
6244f58315 Update changelog-NR.md 2025-02-20 11:28:57 +01:00
Henrik
e5a04fe91a Update module.prop 2025-02-20 11:25:35 +01:00
Henrik
abb26a8ba3 Add files via upload
+ 3-20-32_n28-n1 (20_n1 UL)
+ 20-32_n28-n1 (20_n1 UL)
+ 3-20_n28-n1 (20_n1 UL)
+ 20_n28-n1 (20_n1 UL)
2025-02-20 11:25:11 +01:00
GitHub Action
60d326b0d4 Update updaterNR.json for version 25 2025-02-12 14:51:28 +00:00
Henrik
da0bf79948 v25 2025-02-12 15:51:02 +01:00
Henrik
481d2f7995 Update module.prop 2025-02-12 15:49:05 +01:00
Henrik
d05a2a8109 Add files via upload 2025-02-12 15:48:46 +01:00
Henrik
daf7583c79 Update release-nr-mod.yml 2025-02-09 21:36:17 +01:00
Henrik
393aa2dd60 Update release-lte-mod.yml 2025-02-09 21:35:38 +01:00
Henrik
469faa43e8 Update changelog-LTE.md 2025-02-09 21:30:46 +01:00
GitHub Action
94f933751b Update updaterLTE.json for version 38 2025-02-09 20:27:02 +00:00
Henrik
1d10035a50 v38 2025-02-09 21:26:43 +01:00
Henrik
06196b8372 add 32a+20a+8a+3c with 3c UL 2025-02-09 21:26:14 +01:00
Henrik
ff55c22ed4 Update release-nr-mod.yml 2025-02-09 21:14:18 +01:00
Henrik
af7300a815 Update release-lte-mod.yml 2025-02-09 21:13:08 +01:00
Henrik
00b86a99cb Update release-lte-mod.yml 2025-02-09 20:35:14 +01:00
Henrik
1fb39e6c37 Update release-nr-mod.yml 2025-02-09 20:34:55 +01:00
Henrik
06bdc1bba4 Update changelog-NR.md 2025-02-09 10:43:22 +01:00
GitHub Action
615e3f79f7 Update updaterNR.json for version 24 2025-02-09 09:41:35 +00:00
10 changed files with 80 additions and 12 deletions

View File

@@ -50,7 +50,7 @@ jobs:
"version": "${{ env.MOD_VERSION }}", "version": "${{ env.MOD_VERSION }}",
"versionCode": ${{ env.MOD_VERSIONCODE }}, "versionCode": ${{ env.MOD_VERSIONCODE }},
"zipUrl": "https://github.com/${{ github.repository }}/releases/download/${{ env.RELEASE_TAG }}/p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip", "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/high3eam/pixel9-EU-combos/main/changelog-LTE.md" "changelog": "https://raw.githubusercontent.com/${{ github.repository }}/main/changelog-LTE.md"
} }
EOF EOF
@@ -61,3 +61,25 @@ jobs:
git add updaterLTE.json git add updaterLTE.json
git commit -m "Update updaterLTE.json for version ${{ env.MOD_VERSION }}" git commit -m "Update updaterLTE.json for version ${{ env.MOD_VERSION }}"
git push git push
- name: Send to Telegram
env:
BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
CHAT_ID_1: ${{ secrets.TELEGRAM_CHAT_ID_1_GROUP }}
CHAT_ID_2: ${{ secrets.TELEGRAM_CHAT_ID_2 }}
run: |
# Send to first chat (with error checking)
if ! curl -s -f -o /dev/null -F document=@"p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip" \
-F caption="New LTE Module Release ${{ env.RELEASE_TAG }}" \
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_1}"; then
echo "Failed to send to first chat"
exit 1
fi
# Send to second chat (with error checking)
if ! curl -s -f -o /dev/null -F document=@"p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip" \
-F caption="New LTE Module Release ${{ env.RELEASE_TAG }}" \
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_2}"; then
echo "Failed to send to second chat"
exit 1
fi

View File

@@ -50,7 +50,7 @@ jobs:
"version": "${{ env.MOD_VERSION }}", "version": "${{ env.MOD_VERSION }}",
"versionCode": ${{ env.MOD_VERSIONCODE }}, "versionCode": ${{ env.MOD_VERSIONCODE }},
"zipUrl": "https://github.com/${{ github.repository }}/releases/download/${{ env.RELEASE_TAG }}/p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip", "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/high3eam/pixel9-EU-combos/main/changelog-NR.md" "changelog": "https://raw.githubusercontent.com/${{ github.repository }}/main/changelog-NR.md"
} }
EOF EOF
@@ -61,3 +61,25 @@ jobs:
git add updaterNR.json git add updaterNR.json
git commit -m "Update updaterNR.json for version ${{ env.MOD_VERSION }}" git commit -m "Update updaterNR.json for version ${{ env.MOD_VERSION }}"
git push git push
- name: Send to Telegram
env:
BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
CHAT_ID_1: ${{ secrets.TELEGRAM_CHAT_ID_1_GROUP }}
CHAT_ID_2: ${{ secrets.TELEGRAM_CHAT_ID_2 }}
run: |
# Send to first chat (with error checking)
if ! curl -s -f -o /dev/null -F document=@"p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip" \
-F caption="New NR Module Release ${{ env.RELEASE_TAG }}" \
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_1}"; then
echo "Failed to send to first chat"
exit 1
fi
# Send to second chat (with error checking)
if ! curl -s -f -o /dev/null -F document=@"p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip" \
-F caption="New NR Module Release ${{ env.RELEASE_TAG }}" \
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_2}"; then
echo "Failed to send to second chat"
exit 1
fi

View File

@@ -1,4 +1,16 @@
## 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)
## v40
- Added interband UL-CA combos for 32A+20A+8A+3C
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=30b0294d-a7e2-41b8-84ce-0aacdeb28c53](https://uecaps.hennes.xyz/view/multi/?id=30b0294d-a7e2-41b8-84ce-0aacdeb28c53)
## v39
- Added UL-CA for 8A+7A+3A+1A combos
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=14d44ecb-915f-4c07-98a1-44e8bf23648e](https://uecaps.hennes.xyz/view/multi/?id=14d44ecb-915f-4c07-98a1-44e8bf23648e)
## v38
- Added 32A+20A+8A+3C LTE-CA combo with 3C UL
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=abceef22-1a1b-4fe6-9e26-29c6687a9ed4](https://uecaps.hennes.xyz/view/multi/?id=abceef22-1a1b-4fe6-9e26-29c6687a9ed4)
## v37 ## v37
- Added 32A+20A+7A+3C LTE-CA combos - Added 32A+20A+7A+3C LTE-CA combos
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=3277c022-ba8e-4eed-96da-f2c58a6fa91a](https://uecaps.hennes.xyz/view/multi/?id=02a0527b-48f7-4859-9e39-3c035ba2c350) - All included combos: [https://uecaps.hennes.xyz/view/multi/?id=3277c022-ba8e-4eed-96da-f2c58a6fa91a](https://uecaps.hennes.xyz/view/multi/?id=02a0527b-48f7-4859-9e39-3c035ba2c350)

View File

@@ -1,4 +1,16 @@
## v27
- Remove all EN-DC combos with 20_n1 EN-DC UL and n28 (these result in RLF)
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=99c8d9de-3544-44c3-aa1c-bf4e26a35382](https://uecaps.hennes.xyz/view/multi/?id=99c8d9de-3544-44c3-aa1c-bf4e26a35382)
## v26
- Add EN-DC combos: + 32A+20A+3A_n28A+n1A (20_n1 UL) + 32A+20A_n28A+n1A (20_n1 UL) + 20A+3A_n28A+n1A (20_n1 UL) + 20A_n28A+n1A (20_n1 UL)
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=c7386325-79d8-4949-8dc2-a4c198f73cb0](https://uecaps.hennes.xyz/view/multi/?id=c7386325-79d8-4949-8dc2-a4c198f73cb0)
## v25
- Add EN-DC combos: 20A+8A+7A+3A+1A_n78A & 28A+20A+7A+3A+1A_n78A
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=29ee1dc7-b1a8-4ba5-acc9-ca76efd71116](https://uecaps.hennes.xyz/view/multi/?id=29ee1dc7-b1a8-4ba5-acc9-ca76efd71116)
## v24
- Add new EN-DC combo 32A+20A+8A+3C_n1A with different bcs
- 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 ## v23
- Removed intraband EN-DC combos, because these interfere with legitimate EN-DC combos including NR-CA (E/// RAN bug?) - 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 id=custom_lte_p9_tokay
name=Pixel 9 custom LTE uecap name=Pixel 9 custom LTE uecap
version=37 version=41
versionCode=37 versionCode=41
author=high3eam author=high3eam
description=replaces lte uecaps binarypb with custom one for added lowband ca 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://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/updaterLTE.json

View File

@@ -1,7 +1,7 @@
id=custom_platform_p9_tokay id=custom_platform_p9_tokay
name=Pixel 9 custom uecap platform 2CC 3CC FDD NRULCA NR UL MIMO name=Pixel 9 custom uecap platform 2CC 3CC FDD NRULCA NR UL MIMO
version=24 version=27
versionCode=24 versionCode=27
author=high3eam author=high3eam
description=replaces default platform binarypb with custom one, 2CC 3CC FDD NRULCA and FDD NR UL MIMO 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://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/updaterNR.json

View File

@@ -1,6 +1,6 @@
{ {
"version": "37", "version": "40",
"versionCode": 37, "versionCode": 40,
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/LTE-v37/p9_lte_combos_mod_v37.zip", "zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/LTE-v40/p9_lte_combos_mod_v40.zip",
"changelog": "https://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/changelog-LTE.md" "changelog": "https://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/changelog-LTE.md"
} }

View File

@@ -1,6 +1,6 @@
{ {
"version": "23", "version": "27",
"versionCode": 23, "versionCode": 27,
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/NR-v23/p9_nr_platform_mod.zip", "zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/NR-v27/p9_nr_platform_mod_v27.zip",
"changelog": "https://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/changelog-NR.md" "changelog": "https://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/changelog-NR.md"
} }