diff --git a/README.md b/README.md index bca7b27..7713806 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ This Dockerfile installs Tiny Tiny RSS (TT-RSS) with the following features: - Integrated [Feedly theme](https://github.com/levito/tt-rss-feedly-theme) - Integrated [FeedIron plugin](https://github.com/m42e/ttrss_plugin-feediron) to get modify feeds - Integrated [Mobilize plugin](https://github.com/sepich/tt-rss-mobilize) for using Readability, Instapaper + Google Mobilizer -- Integrated [News+ plugin](https://github.com/hrk/tt-rss-newsplus-plugin) for [News+](https://play.google.com/store/apps/details?id=com.noinnion.android.newsplus) on Android - Optional: Self-signed 2048-bit RSA TLS certificate for accessing TT-RSS via https - Originally was based on [clue/docker-ttrss](https://github.com/clue/docker-ttrss) diff --git a/root/srv/setup-ttrss.sh b/root/srv/setup-ttrss.sh index d462332..19661b7 100755 --- a/root/srv/setup-ttrss.sh +++ b/root/srv/setup-ttrss.sh @@ -64,7 +64,6 @@ setup_ttrss() git clone --depth=1 ${TTRSS_REPO_URL} ${TTRSS_PATH} fi git clone --depth=1 https://github.com/sepich/tt-rss-mobilize.git ${TTRSS_PATH}/plugins/mobilize - git clone --depth=1 https://github.com/hrk/tt-rss-newsplus-plugin.git ${TTRSS_PATH}/plugins/api_newsplus git clone --depth=1 https://github.com/m42e/ttrss_plugin-feediron.git ${TTRSS_PATH}/plugins/feediron git clone --depth=1 https://github.com/levito/tt-rss-feedly-theme.git ${TTRSS_PATH}/themes/feedly-git fi @@ -113,12 +112,11 @@ setup_ttrss() # Enable additional system plugins. if [ -z ${TTRSS_PLUGINS} ]; then - # api_newsplus (API for News+ Android App). - TTRSS_PLUGINS=api_newsplus + TTRSS_PLUGINS= # Only if SSL/TLS is enabled: af_zz_imgproxy (Loads insecure images via built-in proxy). if [ "$TTRSS_PROTO" = "https" ]; then - TTRSS_PLUGINS=${TTRSS_PLUGINS},af_zz_imgproxy + TTRSS_PLUGINS=${TTRSS_PLUGINS}af_zz_imgproxy fi fi