Compare commits
84 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 917fb03d42 | |||
|
|
22f86a5d22 | ||
| 853c77cfe8 | |||
| 63b66e72fc | |||
| 077175174d | |||
| 687487d79f | |||
| 25de5e5b08 | |||
| 8aec26308c | |||
| 08a8e0798b | |||
| 6806c0b929 | |||
| ed9319275d | |||
| 827954484c | |||
| 208d7cbaa1 | |||
| cffad166be | |||
|
|
721674f0b1 | ||
|
|
a8a5944b8d | ||
|
|
8f142fb73d | ||
|
|
b9a9d93cfe | ||
|
|
10fcfe5311 | ||
|
|
c9e1e0468f | ||
|
|
cefee96208 | ||
|
|
086bcc22a1 | ||
|
|
03cec34398 | ||
|
|
a957839b19 | ||
|
|
c3415a4f61 | ||
|
|
428be0aa1a | ||
|
|
3b2a3fd00b | ||
|
|
eda5b73731 | ||
|
|
1109a746d9 | ||
|
|
207c7f6bc6 | ||
|
|
386c7ad0d1 | ||
|
|
5250d6eaad | ||
|
|
2d2c0fe74e | ||
|
|
7761dd581a | ||
|
|
9cc1d996b8 | ||
|
|
e3aabe1d36 | ||
|
|
c98a21b837 | ||
|
|
1a4896bcf6 | ||
|
|
e947eaa3cf | ||
|
|
94d43c85f0 | ||
|
|
aa83d310c1 | ||
|
|
768dbb2231 | ||
|
|
94fcbb0c94 | ||
|
|
127a5a7667 | ||
|
|
8be78fb47d | ||
|
|
f0ee58267f | ||
|
|
ead54e8170 | ||
|
|
ea11e45ad0 | ||
|
|
ad881d17a3 | ||
|
|
08df8f26d3 | ||
|
|
813210fb6b | ||
|
|
20390d2e7f | ||
|
|
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 |
@@ -31,17 +31,32 @@ jobs:
|
|||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
id: create_release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITEA_TOKEN: ${{ secrets.REPO_TOKEN }}
|
||||||
with:
|
run: |
|
||||||
tag_name: ${{ env.RELEASE_TAG }}
|
# Create the release using Gitea API
|
||||||
name: Release ${{ env.RELEASE_TAG }}
|
curl -X POST \
|
||||||
draft: false
|
"https://git.hnrk.io/api/v1/repos/henrik/pixel9-EU-combos/releases" \
|
||||||
prerelease: false
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
files: |
|
-H "Content-Type: application/json" \
|
||||||
p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip
|
-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
|
- name: Update updater JSON
|
||||||
run: |
|
run: |
|
||||||
@@ -49,15 +64,15 @@ 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://git.hnrk.io/henrik/pixel9-EU-combos/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"
|
"changelog": "https://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/changelog-LTE.md"
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
- name: Commit and push updater JSON
|
- name: Commit and push updater JSON
|
||||||
run: |
|
run: |
|
||||||
git config --local user.email "action@github.com"
|
git config --local user.email "action@gitea.com"
|
||||||
git config --local user.name "GitHub Action"
|
git config --local user.name "Gitea Action"
|
||||||
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
|
||||||
@@ -77,9 +92,9 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Send to second chat (with error checking)
|
# 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" \
|
# 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}"; then
|
# "https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_2}"; then
|
||||||
echo "Failed to send to second chat"
|
# echo "Failed to send to second chat"
|
||||||
exit 1
|
# exit 1
|
||||||
fi
|
# fi
|
||||||
@@ -31,17 +31,32 @@ jobs:
|
|||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
id: create_release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITEA_TOKEN: ${{ secrets.REPO_TOKEN }}
|
||||||
with:
|
run: |
|
||||||
tag_name: ${{ env.RELEASE_TAG }}
|
# Create the release using Gitea API
|
||||||
name: Release ${{ env.RELEASE_TAG }}
|
curl -X POST \
|
||||||
draft: false
|
"https://git.hnrk.io/api/v1/repos/henrik/pixel9-EU-combos/releases" \
|
||||||
prerelease: false
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
files: |
|
-H "Content-Type: application/json" \
|
||||||
p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip
|
-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
|
- name: Update updater JSON
|
||||||
run: |
|
run: |
|
||||||
@@ -49,15 +64,15 @@ 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://git.hnrk.io/henrik/pixel9-EU-combos/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"
|
"changelog": "https://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/changelog-NR.md"
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
- name: Commit and push updater JSON
|
- name: Commit and push updater JSON
|
||||||
run: |
|
run: |
|
||||||
git config --local user.email "action@github.com"
|
git config --local user.email "action@gitea.com"
|
||||||
git config --local user.name "GitHub Action"
|
git config --local user.name "Gitea Action"
|
||||||
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
|
||||||
@@ -77,9 +92,9 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Send to second chat (with error checking)
|
# 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" \
|
# 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}"; then
|
# "https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_2}"; then
|
||||||
echo "Failed to send to second chat"
|
# echo "Failed to send to second chat"
|
||||||
exit 1
|
# exit 1
|
||||||
fi
|
# fi
|
||||||
93
.gitea/workflows/test-telegram.yml
Normal file
93
.gitea/workflows/test-telegram.yml
Normal file
@@ -0,0 +1,93 @@
|
|||||||
|
name: Test Telegram Send
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
test_message:
|
||||||
|
description: 'Test message to send'
|
||||||
|
required: false
|
||||||
|
default: 'Test message from Gitea Actions'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test-telegram:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Test Telegram Bot Connection
|
||||||
|
env:
|
||||||
|
BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
|
||||||
|
CHAT_ID_1: ${{ secrets.TELEGRAM_CHAT_ID_1_GROUP }}
|
||||||
|
run: |
|
||||||
|
echo "=== Telegram Configuration Check ==="
|
||||||
|
echo "Bot token configured: $([ -n "$BOT_TOKEN" ] && echo 'YES' || echo 'NO')"
|
||||||
|
echo "Bot token length: ${#BOT_TOKEN}"
|
||||||
|
echo "Chat ID configured: $([ -n "$CHAT_ID_1" ] && echo 'YES' || echo 'NO')"
|
||||||
|
echo "Chat ID value: ${CHAT_ID_1}"
|
||||||
|
echo "===================================="
|
||||||
|
|
||||||
|
# Test 1: Check if bot token is valid
|
||||||
|
echo ""
|
||||||
|
echo "Test 1: Checking bot token validity..."
|
||||||
|
BOT_INFO=$(curl -s "https://api.telegram.org/bot${BOT_TOKEN}/getMe")
|
||||||
|
echo "Bot info response: $BOT_INFO"
|
||||||
|
|
||||||
|
if echo "$BOT_INFO" | grep -q '"ok":true'; then
|
||||||
|
echo "✓ Bot token is valid!"
|
||||||
|
BOT_USERNAME=$(echo "$BOT_INFO" | grep -o '"username":"[^"]*"' | cut -d'"' -f4)
|
||||||
|
echo " Bot username: @${BOT_USERNAME}"
|
||||||
|
else
|
||||||
|
echo "✗ Bot token is invalid or there's an API issue"
|
||||||
|
echo " Please check your TELEGRAM_BOT_TOKEN secret"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Test 2: Send a simple text message
|
||||||
|
echo ""
|
||||||
|
echo "Test 2: Sending text message..."
|
||||||
|
TEXT_RESPONSE=$(curl -s -w "\nHTTP_CODE:%{http_code}" \
|
||||||
|
-d "chat_id=${CHAT_ID_1}" \
|
||||||
|
-d "text=${{ github.event.inputs.test_message }}" \
|
||||||
|
"https://api.telegram.org/bot${BOT_TOKEN}/sendMessage")
|
||||||
|
|
||||||
|
HTTP_CODE=$(echo "$TEXT_RESPONSE" | grep "HTTP_CODE:" | cut -d: -f2)
|
||||||
|
RESPONSE_BODY=$(echo "$TEXT_RESPONSE" | sed '/HTTP_CODE:/d')
|
||||||
|
|
||||||
|
echo "HTTP Status: $HTTP_CODE"
|
||||||
|
echo "Response: $RESPONSE_BODY"
|
||||||
|
|
||||||
|
if [ "$HTTP_CODE" = "200" ]; then
|
||||||
|
echo "✓ Text message sent successfully!"
|
||||||
|
else
|
||||||
|
echo "✗ Failed to send text message"
|
||||||
|
echo " Common issues:"
|
||||||
|
echo " - Chat ID is incorrect (should be negative for groups: -1001234567890)"
|
||||||
|
echo " - Bot is not a member of the group/channel"
|
||||||
|
echo " - Bot doesn't have permission to send messages"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Test 3: Create and send a test file
|
||||||
|
echo ""
|
||||||
|
echo "Test 3: Sending test file..."
|
||||||
|
echo "This is a test file from Gitea Actions" > test_file.txt
|
||||||
|
|
||||||
|
FILE_RESPONSE=$(curl -s -w "\nHTTP_CODE:%{http_code}" \
|
||||||
|
-F document=@"test_file.txt" \
|
||||||
|
-F caption="Test file upload from Gitea Actions" \
|
||||||
|
"https://api.telegram.org/bot${BOT_TOKEN}/sendDocument?chat_id=${CHAT_ID_1}")
|
||||||
|
|
||||||
|
HTTP_CODE=$(echo "$FILE_RESPONSE" | grep "HTTP_CODE:" | cut -d: -f2)
|
||||||
|
RESPONSE_BODY=$(echo "$FILE_RESPONSE" | sed '/HTTP_CODE:/d')
|
||||||
|
|
||||||
|
echo "HTTP Status: $HTTP_CODE"
|
||||||
|
echo "Response: $RESPONSE_BODY"
|
||||||
|
|
||||||
|
if [ "$HTTP_CODE" = "200" ]; then
|
||||||
|
echo "✓ File sent successfully!"
|
||||||
|
else
|
||||||
|
echo "✗ Failed to send file"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "=== All tests passed! ==="
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
## [Check Releases for Magisk modules](https://github.com/high3eam/pixel9-EU-combos/releases)
|
## [Check Releases for Magisk modules](https://github.com/high3eam/pixel9-EU-combos/releases)
|
||||||
### Module includes a built-in updater
|
### Module includes a built-in updater
|
||||||
## Edit combos yourself
|
## 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.
|
- 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.
|
- Then use protoc to decode the protobuf binary file.
|
||||||
For NR combos, use:
|
For NR combos, use:
|
||||||
|
|||||||
@@ -1,4 +1,13 @@
|
|||||||
|
|
||||||
|
## 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
|
## v38
|
||||||
- Added 32A+20A+8A+3C LTE-CA combo with 3C UL
|
- 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)
|
- 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)
|
||||||
|
|||||||
@@ -1,4 +1,49 @@
|
|||||||
|
|
||||||
|
## 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)
|
||||||
|
## v39
|
||||||
|
- Testing n28 UL MIMO (single band combo for now)
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=f0d5c22a-f762-41ff-b053-09ccfc26d03f](https://uecaps.hennes.xyz/view/multi/?id=f0d5c22a-f762-41ff-b053-09ccfc26d03f)
|
||||||
|
## v38
|
||||||
|
- Added various German carrier 3xNRCA NSA combos
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=10826629-fe17-499b-9ba8-729a431ee81f](https://uecaps.hennes.xyz/view/multi/?id=10826629-fe17-499b-9ba8-729a431ee81f)
|
||||||
|
## v37
|
||||||
|
- Added n40-n78C and n40-n78-n78 EN-DC combos for DK networks
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=4ee8b250-9bb0-4fe0-9c5e-934fdbca9961](https://uecaps.hennes.xyz/view/multi/?id=4ee8b250-9bb0-4fe0-9c5e-934fdbca9961)
|
||||||
|
## v36
|
||||||
|
- Added n78-n78-n28 3CC NR-CA combos in EN-DC
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=96a0568b-500b-4225-8874-1ca9e1bc393d](https://uecaps.hennes.xyz/view/multi/?id=96a0568b-500b-4225-8874-1ca9e1bc393d)
|
||||||
|
## v35
|
||||||
|
- Added n78C-n28 3CC NR-CA combos in EN-DC
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=86b2b418-5452-402f-9f29-a33007dc7e4d](https://uecaps.hennes.xyz/view/multi/?id=86b2b418-5452-402f-9f29-a33007dc7e4d)
|
||||||
|
## v34
|
||||||
|
- Added 32A-8A combos with n78-n1 EN-DC NR-CA
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=c5f61dd3-0a03-4470-b795-226c74b20900](https://uecaps.hennes.xyz/view/multi/?id=c5f61dd3-0a03-4470-b795-226c74b20900)
|
||||||
|
## v33
|
||||||
|
- Added 32A-7A-3C_n78A-n1A combos for DTAG
|
||||||
|
- All included combos: [https://uecaps.hennes.xyz/view/multi/?id=059cb8b3-cae3-46ec-a80f-1b8de1fc6d7c](https://uecaps.hennes.xyz/view/multi/?id=059cb8b3-cae3-46ec-a80f-1b8de1fc6d7c)
|
||||||
|
## 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
|
## v27
|
||||||
- Remove all EN-DC combos with 20_n1 EN-DC UL and n28 (these result in RLF)
|
- 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)
|
- 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)
|
||||||
|
|||||||
@@ -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=27
|
version=42
|
||||||
versionCode=27
|
versionCode=42
|
||||||
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": "38",
|
"version": "41",
|
||||||
"versionCode": 38,
|
"versionCode": 41,
|
||||||
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/LTE-v38/p9_lte_combos_mod_v38.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": "26",
|
"version": "42",
|
||||||
"versionCode": 26,
|
"versionCode": 42,
|
||||||
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/NR-v26/p9_nr_platform_mod_v26.zip",
|
"zipUrl": "https://git.hnrk.io/henrik/pixel9-EU-combos/releases/download/NR-v42/p9_nr_platform_mod_v42.zip",
|
||||||
"changelog": "https://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/changelog-NR.md"
|
"changelog": "https://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/changelog-NR.md"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user