aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-11 08:28:07 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-11 08:28:07 +0200
commit39e95258afa8721ea671459bde5d1b732948a388 (patch)
treea6a90b4d579d94baf7ba14bece2def359bf69cad
parentclean (diff)
downloadnewspipe-39e95258afa8721ea671459bde5d1b732948a388.tar.gz
newspipe-39e95258afa8721ea671459bde5d1b732948a388.tar.bz2
newspipe-39e95258afa8721ea671459bde5d1b732948a388.zip
Updated install.sh
-rw-r--r--CHANGELOG.rst1
-rwxr-xr-xinstall.sh6
2 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 1cd1ead9..1595d657 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -5,6 +5,7 @@ Release History
7.1.2 (not yet released)
------------------------
New:
+ * the new name of JARR is now Newspipe;
* the user can now add its twitter link through the profile page.
Improvements:
* improved the layout of the profile page;
diff --git a/install.sh b/install.sh
index 6cbdafa1..05ceacb8 100755
--- a/install.sh
+++ b/install.sh
@@ -1,7 +1,7 @@
#! /usr/bin/env bash
#
-# This script install all dependencies and configure JARR.
+# This script install all dependencies and configure Newspipe.
# Usage:
# ./install.sh (sqlite|postgres)
#
@@ -67,7 +67,7 @@ elif [ "$1" == sqlite ]; then
echo "Configuring the SQLite database..."
echo '[database]' >> src/conf/conf.cfg
- echo 'database_url = sqlite:///jarr.db' >> src/conf/conf.cfg
+ echo 'database_url = sqlite:///newspipe.db' >> src/conf/conf.cfg
fi
@@ -83,5 +83,5 @@ git submodule update > /dev/null
echo "Installation terminated."
-echo "Launch JARR with the command:"
+echo "Launch Newspipe with the command:"
echo -e "\tpython$PYTHON_VERSION src/runserver.py"
bgstack15