From 8833b07195c223da862fa88d560766b5d6ec5fdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Tue, 3 Nov 2020 22:35:43 +0100 Subject: [PATCH 1/3] Add screenshot --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e220dad..1cf0f63 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,10 @@ Grav is a modern open source flat-file CMS. Provided version: **1.6.28** +## Screenshots + +![](https://framalibre.org/sites/default/files/Screenshot_2019-05-30_at_02.09_.36_.png) + ## Documentation * Official documentation: https://learn.getgrav.org/16/ From 44961dcfa97252bced2582721f5222588f249bad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Tue, 5 Jan 2021 15:46:08 +0100 Subject: [PATCH 2/3] Add svg badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1cf0f63..4715b6a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Grav for YunoHost [![Integration level](https://dash.yunohost.org/integration/grav.svg)](https://dash.yunohost.org/appci/app/grav) ![](https://ci-apps.yunohost.org/ci/badges/grav.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/grav.maintain.svg) -[![Install Grav with YunoHost](https://install-app.yunohost.org/install-with-yunohost.png)](https://install-app.yunohost.org/?app=grav) +[![Install Grav with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=grav) > *This package allows you to install Grav quickly and simply on a YunoHost server. If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to know how to install and enjoy it.* From f8e758cb85c87039e0b433200118c205f632a791 Mon Sep 17 00:00:00 2001 From: Kay0u Date: Wed, 6 Jan 2021 18:21:30 +0100 Subject: [PATCH 3/3] fix the ci/upgrade script --- scripts/install | 2 +- scripts/upgrade | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index e3f57fc..d9ba789 100644 --- a/scripts/install +++ b/scripts/install @@ -110,7 +110,7 @@ find $final_path -type d -exec chmod +s {} \; ynh_script_progression --message="Installing and configuring LDAP plugin..." --weight=1 pushd "$final_path" - exec_as $app php${YNH_PHP_VERSION} bin/gpm install login-ldap -y + exec_as $app php${YNH_PHP_VERSION} bin/gpm install login-ldap --all-yes --no-interaction exec_as $app mkdir -p user/config/plugins/login-ldap exec_as $app touch user/accounts/admin.yaml popd diff --git a/scripts/upgrade b/scripts/upgrade index c2bc997..51e3c31 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -176,7 +176,7 @@ find $final_path -type d -exec chmod +s {} \; ynh_script_progression --message="Updating all plugins..." --time --weight=1 pushd "$final_path" - exec_as $app php${YNH_PHP_VERSION} bin/gpm update -y + exec_as $app php${YNH_PHP_VERSION} bin/gpm update --all-yes --no-interaction popd #================================================= @@ -185,7 +185,7 @@ popd ynh_script_progression --message="Installing and configuring LDAP plugin..." --time --weight=1 pushd "$final_path" - exec_as $app php${YNH_PHP_VERSION} bin/gpm install login-ldap -y + exec_as $app php${YNH_PHP_VERSION} bin/gpm install login-ldap --all-yes --no-interaction exec_as $app mkdir -p user/config/plugins/login-ldap exec_as $app touch user/accounts/admin.yaml popd