aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorV.Krishn <vkrishn4@gmail.com>2020-01-29 16:41:15 +0530
committerV.Krishn <vkrishn4@gmail.com>2020-01-29 16:41:15 +0530
commit4d6b36e81ec07fc6ec8d5c4c1fa464e3cd934ddb (patch)
treeb24729d52c26487677e75c4aa1a10defa2564808
parent2d75b643d6de303e83cd73c9cbd2967e91b42375 (diff)
downloadnbreader-4d6b36e81ec07fc6ec8d5c4c1fa464e3cd934ddb.tar.bz2
fix broken image links
-rw-r--r--README.md4
-rw-r--r--doc/install.md2
-rw-r--r--run.sh4
3 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 0000655..2895f17 100644
--- a/README.md
+++ b/README.md
@@ -31,9 +31,9 @@ _NOTE: Beta-release_
9. Rest api for accessing via web (json).
10. Convert existing newsbeuter db to nbreader format (experimental).
-![Layout](http://dev1.insteps.net/nbreader/layout-features.png)
+![Layout](http://download.tuxfamily.org/pmreader/screenshots/nbreader-layout-01.png)
-![Layout](http://dev1.insteps.net/nbreader/layout-alpha-todo.png)
+![Layout](http://download.tuxfamily.org/pmreader/screenshots/nbreader-layout-02.png)
## Why a hybrid application
diff --git a/doc/install.md b/doc/install.md
index e8c9d60..7706cfd 100644
--- a/doc/install.md
+++ b/doc/install.md
@@ -6,7 +6,7 @@
2. Download 3rd party libs/css used in application,
extract libs content it in `public/lib/` accordingly.
-_For convenience the bundle can be found at `http://dev1.insteps.net/nbreader/lib.tar.gz`_
+_For convenience the bundle can be found at `http://download.tuxfamily.org/pmreader/nb/lib.01-20200129.tar.gz`_
## B. Configs
diff --git a/run.sh b/run.sh
index f4d7ee6..ea1955c 100644
--- a/run.sh
+++ b/run.sh
@@ -29,8 +29,6 @@ PWD=$(pwd)
source $APPDIR/scripts/env.sh
source $APPDIR/scripts/date.inc
-## examples/execs
-# newsbeuter -u urls -c u.db -x reload
#usage: sh run.sh newsbeuter <dbname>
if [ "$1" = 'newsbeuter' ]; then
@@ -48,6 +46,8 @@ if [ "$1" = 'newsbeuter' ]; then
db='news';
fi
if [ -f "$DBDIR/$db.loc.db" ]; then
+ ## examples/execs
+ # newsbeuter -u urls -c u.db -x reload
newsbeuter -u "$CONFIGDIR/url.local/$db" -c $DBDIR/$db.loc.db
fi
fi