Add support for reMarkable app v3.28.0

Adds a new 3.28.0 build target with its macro, Qt 6.10.3 toolchain version, and iOS target settings in `script/build.sh`. Updates hook offsets in `src/Tweak.xm` for `QNetworkAccessManager::createRequest` and `QWebSocket::open`, bumps package version in `src/control` to 3.28.0, and aligns README setup instructions with the new Qt/app version mapping.
This commit is contained in:
√(noham)²
2026-08-20 17:28:03 +02:00
parent 11da20c4a9
commit 44e8d9e0b2
4 changed files with 13 additions and 5 deletions

View File

@@ -23,8 +23,12 @@ elif [ "$VERSION" == "3.27.1" ]; then
MACRO="-DV3_27_1=1"
QT_VERSION="6.10.0"
TARGET="iphone:latest:17.0"
elif [ "$VERSION" == "3.28.0" ]; then
MACRO="-DV3_28_0=1"
QT_VERSION="6.10.3"
TARGET="iphone:latest:17.0"
else
echo "Error: Unknown version '$VERSION'. Supported versions are: 3.17.0, 3.25.0, 3.26.0, 3.27.0, 3.27.1"
echo "Error: Unknown version '$VERSION'. Supported versions are: 3.17.0, 3.25.0, 3.26.0, 3.27.0, 3.27.1 and 3.28.0."
exit 1
fi