diff --git a/xwords4/android/website/index.html b/xwords4/android/website/index.html index 2f7af1129..c152ff078 100644 --- a/xwords4/android/website/index.html +++ b/xwords4/android/website/index.html @@ -18,13 +18,26 @@ updates, or check back often.)

  • What is Crosswords/CrossW-SMS?
  • Who should NOT install this app?
  • What are the advantages of playing via SMS instead of the internet?
  • -
  • What are the app's screens and what to they do?
  • +
  • What are the app's screens and what do they do?
  • What is Crosswords/CrossW-SMS?

    + +

    Who should NOT install this app?

    +

    Only people with unlimited text messaging plans should install CrossW-SMS.

    + +

    Do the math: The typical CrossW-SMS game will mean 40 SMS messages +sent and another 40 received. (They'll be sent directly between the CrossW-SMS on the +two devices, so you'll never see them!) Let's say your carrier charges you $0.25 for +each of the 80 messages, a figure at the low end these days. You'll get charged $20 for +a single game. Imagine you play a game every day for a month: $600!

    + +

    Just don't do it! Stick with Crosswords, which uses your data plan, +unless you have unlimited SMS.

    +

    What are the advantages of playing via SMS instead of the internet?

    -

    What are the app's screens and what to they do?

    +

    What are the app's screens and what do they do?


    diff --git a/xwords4/android/website/sync_site.sh b/xwords4/android/website/sync_site.sh index a49676283..5b2e981f8 100755 --- a/xwords4/android/website/sync_site.sh +++ b/xwords4/android/website/sync_site.sh @@ -7,6 +7,8 @@ USER=eehouse WEBROOT=/var/www/xw4sms ACTION="" +EXCLUDES="--exclude=*~ --exclude=*# --exclude=$(basename $0)" + usage() { [ $# -ge 1 ] && echo "ERROR: $1" 1>&2 echo "usage: $0 --push|--pull \\" @@ -46,25 +48,10 @@ while [ $# -ge 1 ]; do done cd $(dirname $0) -FILES="" -for FILE in $(find . -type f); do - # echo "file: $FILE" - case $FILE in - */$(basename ${0})) - ;; - *~) - ;; - *) - FILES="$FILES $FILE" - ;; - esac -done - -echo $FILES -#exit 0 if [ "$ACTION" = push ]; then - rsync -avz --exclude=*~ --exclude=$(basename $0) . ${USER}@${HOST}:${WEBROOT}/ + echo rsync -avz "$EXCLUDES" . ${USER}@${HOST}:${WEBROOT}/ + rsync -avz "$EXCLUDES" . ${USER}@${HOST}:${WEBROOT}/ elif [ "$ACTION" = pull ]; then rsync ${USER}@${HOST}: . else