Add docs images and make build target configurable
10
README.md
@@ -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
|
After Width: | Height: | Size: 67 KiB |
BIN
docs/3.27.1.png
Normal file
|
After Width: | Height: | Size: 97 KiB |
BIN
docs/acc.png
Normal file
|
After Width: | Height: | Size: 135 KiB |
|
Before Width: | Height: | Size: 247 KiB |
BIN
docs/setup.png
Normal file
|
After Width: | Height: | Size: 494 KiB |
BIN
docs/syncing.png
Normal file
|
After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 220 KiB |
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
|||||||