diff --git a/CHANGELOG b/CHANGELOG index 31d7c98..c203182 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ **Changelog** +3.0.2 2017-12-29 +- Update to movim 0.13 +- Added php5-zmq + 3.0.1 2017-11-02 - Backup to fixed movim release due to issues diff --git a/README.md b/README.md index 588d9d4..cdc2e2d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Movim is a decentralized social network, written in PHP and HTML5 and based on t It is recommended to use a "valid" certificate to use Movim, auto-signed is sometimes problematic. You might want to take a look a StartSSL or Let's Encrypt. -Provided Movim version: 0.12 +Provided Movim version: 0.13 Please read CHANGELOG. diff --git a/scripts/_common.sh b/scripts/_common.sh index 1bf2667..38f4bca 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -6,8 +6,7 @@ GIT_REPO="https://github.com/movim/movim" # Commit to checkout -#HEAD_COMMIT="b7347ca7f1e95192a89fb4d922603b8daf4f8e5a" -HEAD_COMMIT="2308629fda0fa1d04b19420a60efcf9e27f8c7b4" +HEAD_COMMIT="ee249f1e37b548c71b9a339dd358fbd2136e3291" # Source code destination directory DESTDIR="/var/www/movim" diff --git a/scripts/install b/scripts/install index ab745cd..26da454 100644 --- a/scripts/install +++ b/scripts/install @@ -65,7 +65,7 @@ db_name=movim ynh_mysql_create_db "$db_name" "$db_user" "$db_pwd" # Install packages -ynh_package_install php5-gd php5-curl php5-imagick php5-cli +ynh_package_install php5-gd php5-curl php5-imagick php5-cli php5-zmq # Download Movim source code tmp_path=/tmp/movim-git diff --git a/scripts/upgrade b/scripts/upgrade index 6c898e1..701026d 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -29,6 +29,9 @@ timezone=`cat /etc/timezone` || ynh_die "Could not detect timezone, please check /etc/timezone." \ && echo "Detected timezone: $timezone" +# Since Movim 0.13, zmq is required +ynh_package_install php5-zmq + # Init git repository as needed if [ ! -d "${DESTDIR}/.git" ]; then tmp_path=/tmp/movim-git