Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 50e3fabacd | |||
| 30f6351d77 | |||
| 01b736c27f | |||
| 42d610ee92 | |||
| cabb0bde8c | |||
| 1c51152fd0 | |||
| 1e824d9675 | |||
| 7d8733feac | |||
| 8d19c09a89 | |||
| b77edec8a4 | |||
|
|
4cf69b0361 | ||
| 1da7443671 | |||
| 9d4baeb89b | |||
|
|
d70219a909 | ||
| aa5d226863 | |||
| 8215cb77ff | |||
| 917fb03d42 | |||
|
|
22f86a5d22 | ||
| 853c77cfe8 | |||
| 63b66e72fc | |||
| 077175174d | |||
| 687487d79f | |||
| 25de5e5b08 | |||
| 8aec26308c | |||
| 08a8e0798b | |||
| 6806c0b929 | |||
| ed9319275d | |||
| 827954484c | |||
| 208d7cbaa1 | |||
| cffad166be | |||
|
|
721674f0b1 | ||
|
|
a8a5944b8d |
@@ -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
|
||||||
@@ -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
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
## [Check Releases for Magisk modules](https://github.com/high3eam/pixel9-EU-combos/releases)
|
## [Check Releases for Magisk modules](https://git.hnrk.io/henrik/pixel9-EU-combos/releases) (Module includes a built-in updater)
|
||||||
### 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))
|
||||||
## Edit combos yourself
|
|
||||||
- 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,5 @@
|
|||||||
|
## v42
|
||||||
|
- Maintenance release for new updater path
|
||||||
## v41
|
## v41
|
||||||
- Added interband ULCA for combos 32A+8A+7A+3C, 20A+8A+7A+3C and 32A+20A+7A+3C
|
- 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)
|
- 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)
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
|
## 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
|
## v41
|
||||||
- Add 3xNR-CA NSA combos with 3xLTE-CA for Telekom & Vodafone
|
- 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)
|
- 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)
|
||||||
|
|||||||
@@ -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=41
|
version=42
|
||||||
versionCode=41
|
versionCode=42
|
||||||
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://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/updaterLTE.json
|
||||||
|
|||||||
@@ -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=41
|
version=42
|
||||||
versionCode=41
|
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://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/updaterNR.json
|
||||||
|
|||||||
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": "41",
|
"version": "41",
|
||||||
"versionCode": 41,
|
"versionCode": 41,
|
||||||
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/LTE-v41/p9_lte_combos_mod_v41.zip",
|
"zipUrl": "https://git.hnrk.io/henrik/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://git.hnrk.io/henrik/pixel9-EU-combos/raw/branch/main/changelog-LTE.md"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": "40",
|
"version": "42",
|
||||||
"versionCode": 40,
|
"versionCode": 42,
|
||||||
"zipUrl": "https://github.com/high3eam/pixel9-EU-combos/releases/download/NR-v40/p9_nr_platform_mod_v40.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