Skip to content

Commit

Permalink
Add support for 1.0.1n
Browse files Browse the repository at this point in the history
  • Loading branch information
bladeSk committed Dec 13, 2024
1 parent 88842fb commit 1105c04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion apply_readabletro.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ IF NOT EXIST %file% (

if %size% EQU 55575314 goto :sizeok
if %size% EQU 55738838 goto :sizeok
if %size% EQU 56041328 goto :sizeok

echo %file% has an unexpected size - only an unmodified version 1.0.1g-FULL or 1.0.1m-FULL is supported.
echo %file% has an unexpected size - only an unmodified version 1.0.1g-FULL or 1.0.1n-FULL is supported.
pause
goto :eof

Expand Down
4 changes: 2 additions & 2 deletions apply_readabletro.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ fi

ACTUAL_SIZE="$(du -b $FILE | cut -f1)"

if [ $ACTUAL_SIZE != '55575314' ] && [ $ACTUAL_SIZE != '55738838' ]; then
echo "$FILE has an unexpected size - only an unmodified version 1.0.1g-FULL or 1.0.1m-FULL is supported."
if [ $ACTUAL_SIZE != '55575314' ] && [ $ACTUAL_SIZE != '55738838' ]; && [ $ACTUAL_SIZE != '56041328' ]; then
echo "$FILE has an unexpected size - only an unmodified version 1.0.1g-FULL or 1.0.1n-FULL is supported."
exit 1
fi

Expand Down

0 comments on commit 1105c04

Please sign in to comment.