diff --git a/README.md b/README.md index 8c332e7..0f01748 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Misskey is a decentralized microblogging platform. Since it exists within the Fediverse (a universe where various social media platforms are organized), it is mutually linked with other social media platforms. -**Shipped version:** 12.107.0~ynh1 +**Shipped version:** 12.108.1~ynh1 diff --git a/README_fr.md b/README_fr.md index dfe5810..7f7445a 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Misskey est une plateforme de microblogging décentralisée. Puisqu'il existe au sein du Fediverse (un univers où diverses plateformes de médias sociaux sont organisées), il est mutuellement lié à d'autres plateformes de médias sociaux. -**Version incluse :** 12.107.0~ynh1 +**Version incluse :** 12.108.1~ynh1 diff --git a/conf/app.src b/conf/app.src index 752cac9..19eed93 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/misskey-dev/misskey/archive/refs/tags/12.102.1.tar.gz -SOURCE_SUM=99dfef753f0fc3c69017651df95529837357cf6d57f62173603fa54c028cbccd +SOURCE_URL=https://github.com/misskey-dev/misskey/archive/refs/tags/12.108.1.tar.gz +SOURCE_SUM=b0e05bf7a231d59190a0f666901795bb67f9fa0ca0e5070424df75c728f02a43 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/conf/default.yml b/conf/default.yml index 5aead02..203fc98 100644 --- a/conf/default.yml +++ b/conf/default.yml @@ -62,7 +62,7 @@ db: db: __DB_NAME__ # Auth - user: __DB_NAME__ + user: __DB_USER__ pass: __DB_PWD__ # Whether disable Caching queries diff --git a/conf/systemd.service b/conf/systemd.service index 170795f..9bba845 100644 --- a/conf/systemd.service +++ b/conf/systemd.service @@ -1,5 +1,5 @@ [Unit] -Description=__APP__ daemon running +Description=Misskey: microblogging platform [Service] Type=simple diff --git a/manifest.json b/manifest.json index 18fd5ea..1984051 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Microblogging platform", "fr": "Platforme de Microblogging" }, - "version": "12.107.0~ynh1", + "version": "12.108.1~ynh1", "url": "https://join.misskey.page/en/", "upstream": { "license": "AGPL-3.0", diff --git a/scripts/install b/scripts/install index 02826f6..a6ce815 100755 --- a/scripts/install +++ b/scripts/install @@ -82,7 +82,7 @@ db_name=$(ynh_sanitize_dbid --db_name=$app) db_user=$db_name ynh_app_setting_set --app=$app --key=db_name --value=$db_name ynh_psql_test_if_first_run -ynh_psql_setup_db --db_user=$db_name --db_name=$db_name +ynh_psql_setup_db --db_user=$db_user --db_name=$db_name #================================================= # CREATE DEDICATED USER diff --git a/scripts/upgrade b/scripts/upgrade index eab4cf6..bdcbe6e 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -103,9 +103,9 @@ chown -R $app:www-data "$final_path" #================================================= # NGINX CONFIGURATION #================================================= -ynh_script_progression --message="Upgrading nginx web server configuration..." --weight=1 +ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1 -# Create a dedicated nginx config +# Create a dedicated NGINX config ynh_add_nginx_config #=================================================