Updated embedded FAQ using organicmaps.app content #8878

Merged
root merged 3 commits from embedded-faq-update into master 2024-08-09 10:32:26 +00:00
2 changed files with 1330 additions and 3641 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,14 @@
#!/bin/sh
SCRIPT_DIR=$(dirname -- "${BASH_SOURCE[0]}")
OUTPUT_FILE="$SCRIPT_DIR/../../data/faq.html"
echo "Downloading latest FAQ page from organicmaps.app website ..."
curl -s -L -f -o $OUTPUT_FILE https://organicmaps.app/faq/embedded-faq
res=$?
if test "$res" != "0"; then
echo "The curl command failed with: $res"
else
echo "Success!"
fi