28 Commits

Author SHA1 Message Date
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
Henrik
c5b795bc7f Update module.prop 2025-02-09 10:41:18 +01:00
Henrik
67edf75b6d Add 32A+20A+8A+3C_n1A EN-DC combo with different bcs 2025-02-09 10:41:03 +01:00
GitHub Action
10be123202 Update updaterLTE.json for version 37 2025-02-08 23:12:02 +00:00
Henrik
30d2da5804 Update release-lte-mod.yml 2025-02-09 00:10:27 +01:00
GitHub Action
6a488256f8 Update updaterLTE.json for version 37 2025-02-08 23:04:00 +00:00
Henrik
67255f13fa Update release-nr-mod.yml 2025-02-09 00:03:15 +01:00
Henrik
864cf358ee Update release-lte-mod.yml 2025-02-09 00:03:03 +01:00
Henrik
4898883a69 Update updaterNR.json 2025-02-09 00:02:36 +01:00
Henrik
bd879507e6 Update changelog-NR.md 2025-02-09 00:02:15 +01:00
Henrik
d9ed0c9980 Update changelog-LTE.md 2025-02-09 00:01:44 +01:00
Henrik
e50d2189be Create changelog-LTE.md 2025-02-09 00:00:24 +01:00
Henrik
c97896ae40 Rename changelog.md to changelog-NR.md 2025-02-09 00:00:04 +01:00
Henrik
f6eeff91f8 Update module.prop 2025-02-08 23:59:33 +01:00
Henrik
a8ce46a3e0 Add files via upload 2025-02-08 23:59:05 +01:00
Henrik
75f8320041 Update release-lte-mod.yml 2025-02-08 23:45:14 +01:00
Henrik
b1e0b00c3d Update release-nr-mod.yml 2025-02-08 23:44:19 +01:00
Henrik
8499321115 Update updaterNR.json 2025-02-08 23:40:15 +01:00
Henrik
86b59a2f99 Update release-lte-mod.yml 2025-02-08 23:40:01 +01:00
Henrik
afe031be8d Update release-nr-mod.yml 2025-02-08 23:39:38 +01:00
GitHub Action
d5e802adaf Update updaterNR.json for version 23 2025-02-08 22:35:57 +00:00
11 changed files with 67 additions and 18 deletions

View File

@@ -27,7 +27,7 @@ jobs:
working-directory: ./ working-directory: ./
run: | run: |
cd p9_lte_combos_mod cd p9_lte_combos_mod
zip -r ../p9_lte_combos_mod.zip ./* zip -r ../p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip ./*
cd .. cd ..
- name: Create Release - name: Create Release
@@ -41,7 +41,7 @@ jobs:
draft: false draft: false
prerelease: false prerelease: false
files: | files: |
p9_lte_combos_mod.zip p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip
- name: Update updater JSON - name: Update updater JSON
run: | run: |
@@ -49,8 +49,8 @@ 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.zip", "zipUrl": "https://github.com/${{ github.repository }}/releases/download/${{ env.RELEASE_TAG }}/p9_lte_combos_mod_v${{ env.MOD_VERSION }}.zip",
"changelog": "https://github.com/${{ github.repository }}/releases/tag/${{ env.RELEASE_TAG }}" "changelog": "https://raw.githubusercontent.com/${{ github.repository }}/main/changelog-LTE.md"
} }
EOF EOF
@@ -61,3 +61,19 @@ 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
curl -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}"
# Send to second chat
curl -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}"

View File

@@ -27,7 +27,7 @@ jobs:
working-directory: ./ working-directory: ./
run: | run: |
cd p9_nr_platform_mod cd p9_nr_platform_mod
zip -r ../p9_nr_platform_mod.zip ./* zip -r ../p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip ./*
cd .. cd ..
- name: Create Release - name: Create Release
@@ -41,7 +41,7 @@ jobs:
draft: false draft: false
prerelease: false prerelease: false
files: | files: |
p9_nr_platform_mod.zip p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip
- name: Update updater JSON - name: Update updater JSON
run: | run: |
@@ -49,8 +49,8 @@ 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.zip", "zipUrl": "https://github.com/${{ github.repository }}/releases/download/${{ env.RELEASE_TAG }}/p9_nr_platform_mod_v${{ env.MOD_VERSION }}.zip",
"changelog": "https://github.com/${{ github.repository }}/releases/tag/${{ env.RELEASE_TAG }}" "changelog": "https://raw.githubusercontent.com/${{ github.repository }}/main/changelog-NR.md"
} }
EOF EOF
@@ -61,3 +61,19 @@ 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
curl -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}"
# Send to second chat
curl -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}"

4
changelog-LTE.md Normal file
View File

@@ -0,0 +1,4 @@
## v37
- 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)

7
changelog-NR.md Normal file
View File

@@ -0,0 +1,7 @@
## 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
- 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)

View File

@@ -1,4 +0,0 @@
## 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

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=35 version=38
versionCode=35 versionCode=38
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=23 version=24
versionCode=23 versionCode=24
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 +1,6 @@
{
"version": "37",
"versionCode": 37,
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/LTE-v37/p9_lte_combos_mod_v37.zip",
"changelog": "https://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/changelog-LTE.md"
}

View File

@@ -1 +1,6 @@
{
"version": "24",
"versionCode": 24,
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/NR-v24/p9_nr_platform_mod_v24.zip",
"changelog": "https://raw.githubusercontent.com/high3eam/pixel9-EU-combos/main/changelog-NR.md"
}