Compare commits
47 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
96d04e012d | ||
|
|
c6474804a0 | ||
|
|
735126bfdd | ||
|
|
4277b194d0 | ||
|
|
85c6b7f6ab | ||
|
|
21b998f21f | ||
|
|
e09af2aeb3 | ||
|
|
496001b093 | ||
|
|
d3b33aae5a | ||
|
|
07faafb006 | ||
|
|
3027f7acf8 | ||
|
|
1a0580ff85 | ||
|
|
b4d84a0705 | ||
|
|
3cc34f0272 | ||
|
|
0b2f2dab0d | ||
|
|
99cc6203e0 | ||
|
|
37fad0769c | ||
|
|
282fc11d02 | ||
|
|
a5aafb8c53 | ||
|
|
5ef99966fd | ||
|
|
7c037792b6 | ||
|
|
a035a44974 | ||
|
|
0b1e0234c0 | ||
|
|
884406a183 | ||
|
|
0bba25d1b8 | ||
|
|
dfbc3e9151 | ||
|
|
c4e07a0e93 | ||
|
|
21da62cbd8 | ||
|
|
3a9f91c6fd | ||
|
|
cd9ea8d704 | ||
|
|
490be7d10b | ||
|
|
31c993fbce | ||
|
|
724570eb40 | ||
|
|
790c3aa063 | ||
|
|
0c7c822585 | ||
|
|
f7cce3b498 | ||
|
|
6244f58315 | ||
|
|
e5a04fe91a | ||
|
|
abb26a8ba3 | ||
|
|
60d326b0d4 | ||
|
|
da0bf79948 | ||
|
|
481d2f7995 | ||
|
|
d05a2a8109 | ||
|
|
daf7583c79 | ||
|
|
393aa2dd60 | ||
|
|
469faa43e8 | ||
|
|
94f933751b |
18
.github/workflows/release-lte-mod.yml
vendored
18
.github/workflows/release-lte-mod.yml
vendored
@@ -68,12 +68,18 @@ jobs:
|
|||||||
CHAT_ID_1: ${{ secrets.TELEGRAM_CHAT_ID_1_GROUP }}
|
CHAT_ID_1: ${{ secrets.TELEGRAM_CHAT_ID_1_GROUP }}
|
||||||
CHAT_ID_2: ${{ secrets.TELEGRAM_CHAT_ID_2 }}
|
CHAT_ID_2: ${{ secrets.TELEGRAM_CHAT_ID_2 }}
|
||||||
run: |
|
run: |
|
||||||
# Send to first chat
|
# Send to first chat (with error checking)
|
||||||
curl -F document=@"p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip" \
|
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 }}" \
|
-F caption="New LTE Module Release ${{ env.RELEASE_TAG }}" \
|
||||||
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_1}"
|
"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
|
# Send to second chat (with error checking)
|
||||||
curl -F document=@"p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip" \
|
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 }}" \
|
-F caption="New LTE Module Release ${{ env.RELEASE_TAG }}" \
|
||||||
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_2}"
|
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_2}"; then
|
||||||
|
echo "Failed to send to second chat"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|||||||
18
.github/workflows/release-nr-mod.yml
vendored
18
.github/workflows/release-nr-mod.yml
vendored
@@ -68,12 +68,18 @@ jobs:
|
|||||||
CHAT_ID_1: ${{ secrets.TELEGRAM_CHAT_ID_1_GROUP }}
|
CHAT_ID_1: ${{ secrets.TELEGRAM_CHAT_ID_1_GROUP }}
|
||||||
CHAT_ID_2: ${{ secrets.TELEGRAM_CHAT_ID_2 }}
|
CHAT_ID_2: ${{ secrets.TELEGRAM_CHAT_ID_2 }}
|
||||||
run: |
|
run: |
|
||||||
# Send to first chat
|
# Send to first chat (with error checking)
|
||||||
curl -F document=@"p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip" \
|
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 }}" \
|
-F caption="New NR Module Release ${{ env.RELEASE_TAG }}" \
|
||||||
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_1}"
|
"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
|
# Send to second chat (with error checking)
|
||||||
curl -F document=@"p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip" \
|
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 }}" \
|
-F caption="New NR Module Release ${{ env.RELEASE_TAG }}" \
|
||||||
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_2}"
|
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_2}"; then
|
||||||
|
echo "Failed to send to second chat"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
@@ -1,4 +1,28 @@
|
|||||||
|
|
||||||
|
## v32
|
||||||
|
- Removed incompatible combos with 20_n1 and 20_n78 EN-DC UL (to prevent RLF)
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=5d69e423-612c-4b33-b542-4c01d46af65c](https://uecaps.hennes.xyz/view/multi/?id=5d69e423-612c-4b33-b542-4c01d46af65c)
|
||||||
|
## v31
|
||||||
|
- Adding some EN-DC test combos with n78-n28-n1
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=1cfacf14-34c0-46d7-b8e0-53cdbc397514](https://uecaps.hennes.xyz/view/multi/?id=1cfacf14-34c0-46d7-b8e0-53cdbc397514)
|
||||||
|
## v30
|
||||||
|
- Testing EN-DC with 3CC NR (n78-n28-n3)
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=9ff1e2cb-bafe-4679-b3ac-405f39b1600b](https://uecaps.hennes.xyz/view/multi/?id=9ff1e2cb-bafe-4679-b3ac-405f39b1600b)
|
||||||
|
## v29
|
||||||
|
- Add NR FDD UL MIMO to 2x and 3xCA combos used in Germany: n28-n3, n78-n3, n78-n28-n3, n28-n1, n78-n1, n78-n28-n1
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=d22ba6f9-f23b-4a98-820b-e6969a6784c8](https://uecaps.hennes.xyz/view/multi/?id=d22ba6f9-f23b-4a98-820b-e6969a6784c8)
|
||||||
|
## v28
|
||||||
|
- Attempt to fix NR-SA FDD UL MIMO (n1, n3)
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=2f4c5473-c26e-47a2-9ff2-cacd9ec87532](https://uecaps.hennes.xyz/view/multi/?id=2f4c5473-c26e-47a2-9ff2-cacd9ec87532)
|
||||||
|
## 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
|
## v24
|
||||||
- Add new EN-DC combo 32A+20A+8A+3C_n1A with different bcs
|
- 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)
|
- 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)
|
||||||
|
|||||||
@@ -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=38
|
version=41
|
||||||
versionCode=38
|
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
|
||||||
|
|||||||
Binary file not shown.
@@ -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=32
|
||||||
versionCode=24
|
versionCode=32
|
||||||
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
|
||||||
|
|||||||
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": "37",
|
"version": "41",
|
||||||
"versionCode": 37,
|
"versionCode": 41,
|
||||||
"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-v41/p9_lte_combos_mod_v41.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"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": "24",
|
"version": "31",
|
||||||
"versionCode": 24,
|
"versionCode": 31,
|
||||||
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/NR-v24/p9_nr_platform_mod_v24.zip",
|
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/NR-v31/p9_nr_platform_mod_v31.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"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user