Add docs images and make build target configurable

This commit is contained in:
√(noham)²
2026-05-15 21:32:55 +02:00
parent 39687a43d4
commit 6aa11a2345
10 changed files with 15 additions and 3 deletions

View File

@@ -23,6 +23,16 @@ Looking for the Desktop versions? Check out:
- reMarkable iOS v3.25.0 - reMarkable iOS v3.25.0
- reMarkable iOS v3.27.1 - reMarkable iOS v3.27.1
<p align="center">
<img src="docs/3.25.0.png" width="45%" />
<img src="docs/syncing.png" width="45%" />
</p>
<p align="center">
<img src="docs/3.27.1.png" width="45%" />
<img src="docs/acc.png" width="45%" />
</p>
## Installation and usage ## Installation and usage
⚠️ **For legal reasons, this repository does not include the reMarkable app.** However, a pre-built `.deb` package and a pre-patched `.ipa` are available in the [Releases](https://github.com/NohamR/RMHook-iOS/releases) section. ⚠️ **For legal reasons, this repository does not include the reMarkable app.** However, a pre-built `.deb` package and a pre-patched `.ipa` are available in the [Releases](https://github.com/NohamR/RMHook-iOS/releases) section.

BIN
docs/3.25.0.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

BIN
docs/3.27.1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

BIN
docs/acc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 247 KiB

BIN
docs/setup.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 KiB

BIN
docs/syncing.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 220 KiB

View File

@@ -6,9 +6,11 @@ VERSION=${1:-3.25.0}
if [ "$VERSION" == "3.25.0" ]; then if [ "$VERSION" == "3.25.0" ]; then
MACRO="-DV3_25_0=1" MACRO="-DV3_25_0=1"
QT_VERSION="6.8.2" QT_VERSION="6.8.2"
TARGET="iphone:latest:16.0"
elif [ "$VERSION" == "3.27.1" ]; then elif [ "$VERSION" == "3.27.1" ]; then
MACRO="-DV3_27_1=1" MACRO="-DV3_27_1=1"
QT_VERSION="6.10.0" QT_VERSION="6.10.0"
TARGET="iphone:latest:17.0"
else else
echo "Error: Unknown version '$VERSION'. Supported versions are: 3.25.0, 3.27.1" echo "Error: Unknown version '$VERSION'. Supported versions are: 3.25.0, 3.27.1"
exit 1 exit 1
@@ -23,7 +25,7 @@ make clean
if [ "$MODE" == "release" ]; then if [ "$MODE" == "release" ]; then
# Modify control file to set the version to match the target app version # Modify control file to set the version to match the target app version
sed -i '' "s/^Version: .*/Version: $VERSION/" control sed -i '' "s/^Version: .*/Version: $VERSION/" control
make package THEOS_PACKAGE_SCHEME=rootless FINALPACKAGE=1 RM_VERSION_FLAG="$MACRO" QT_VERSION="$QT_VERSION" make package THEOS_PACKAGE_SCHEME=rootless FINALPACKAGE=1 RM_VERSION_FLAG="$MACRO" QT_VERSION="$QT_VERSION" TARGET="$TARGET"
else else
make package THEOS_PACKAGE_SCHEME=rootless DEBUG=0 RM_VERSION_FLAG="$MACRO" QT_VERSION="$QT_VERSION" make package THEOS_PACKAGE_SCHEME=rootless DEBUG=0 RM_VERSION_FLAG="$MACRO" QT_VERSION="$QT_VERSION" TARGET="$TARGET"
fi fi

View File

@@ -1,4 +1,4 @@
TARGET = iphone:latest:17.0 TARGET = $(target)
INSTALL_TARGET_PROCESSES = remarkable_mobile INSTALL_TARGET_PROCESSES = remarkable_mobile
ARCHS = arm64 ARCHS = arm64