1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mineweb_ynh.git synced 2024-09-03 19:45:54 +02:00
* Update check_process

* Set badge to SVG

* Set badge to SVG

* Upgrade to 1.12.0 (#3)

* Upgrade to 1.13.0 (#5)

* Fix linter warnings

* Update manifest.json

* Cleaning up (#8)

* Cleaning up

* Update database.php

* [autopatch] Update issue and PR templates (#10)

* Testing (#9)

* Fix linter warnings

* [autopatch] Update issue and PR templates

Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com>
Co-authored-by: Yunohost-Bot <>

* Fix (#11)

* Fix

* Update upgrade

* 1.14.1

* Auto-update README

* 1.14.3

* Auto-update README

* 1.14.5

* Auto-update README

* Update manifest.json

* 1.14.9 (#15)

* 1.14.9

* Update manifest.json

* Auto-update README

* 4.3 (#17)

* 1.15.1

* Auto-update README

* Bullseye (#20)

* set relative path for --keep opt

* Auto-update README

* Fix

* Update restore

* Update restore

Co-authored-by: yunohost-bot <yunohost@yunohost.org>

* Update manifest.json

* Auto-update README

* Upgrade auto-updater (#22)

* [autopatch] Upgrade auto-updater

* Auto-update README

---------

Co-authored-by: tituspijean <titus@pijean.ovh>

* Version 2 (#23)

* v2

* v2

* Auto-update README

* fix

* Update manifest.toml

* Auto-update README

* Update manifest.toml

* Update backup

---------

Co-authored-by: yunohost-bot <yunohost@yunohost.org>

* Auto-update README

* Update restore

* cleaning

* Delete .DS_Store

* Auto-update README

* Update manifest.toml

* cleaning

* Update manifest.toml

Co-authored-by: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com>

* Update manifest.toml

* Auto-update README

---------

Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com>
Co-authored-by: Yunohost-Bot <>
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
Co-authored-by: tituspijean <titus@pijean.ovh>
Co-authored-by: Alexandre Aubin <alex.aubin@mailoo.org>
Co-authored-by: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com>
This commit is contained in:
eric_G 2023-11-28 09:59:15 +01:00 committed by GitHub
parent 298f99bdaf
commit fbb7e72cf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 11 additions and 9 deletions

BIN
.DS_Store vendored

Binary file not shown.

View file

@ -20,7 +20,7 @@ MineWeb is a CMS (i.e. a content management system), in simpler terms, a complet
You can keep your players up to date with news, have them buy items from the store... You can customize the CMS with all kinds of themes or plugins! These are available on the market or can be developed by yourself. You can keep your players up to date with news, have them buy items from the store... You can customize the CMS with all kinds of themes or plugins! These are available on the market or can be developed by yourself.
**Shipped version:** 1.15.2~ynh1 **Shipped version:** 1.15.2~ynh2
## Screenshots ## Screenshots

View file

@ -21,7 +21,7 @@ MineWeb est un CMS (c'est-à-dire un système de gestion de contenu), en plus si
Vous pourrez tenir vos joueurs au courant des actualités, leur faire acheter des articles sur la boutique... Vous pourrez personnaliser le CMS avec toutes sortes de thèmes ou plugins ! Ceux-ci sont disponibles sur le market ou peuvent être développés par vous-même. Vous pourrez tenir vos joueurs au courant des actualités, leur faire acheter des articles sur la boutique... Vous pourrez personnaliser le CMS avec toutes sortes de thèmes ou plugins ! Ceux-ci sont disponibles sur le market ou peuvent être développés par vous-même.
**Version incluse :** 1.15.2~ynh1 **Version incluse :** 1.15.2~ynh2
## Captures décran ## Captures décran

View file

@ -5,9 +5,9 @@ name = "MineWeb"
description.en = "Customizable and intuitive CMS" description.en = "Customizable and intuitive CMS"
description.fr = "CMS personnalisable et intuitif" description.fr = "CMS personnalisable et intuitif"
version = "1.15.2~ynh1" version = "1.15.2~ynh2"
maintainers = ["liberodark"] maintainers = []
[upstream] [upstream]
license = "AGPL-3.0-only" license = "AGPL-3.0-only"
@ -19,8 +19,11 @@ code = "https://github.com/MineWeb/MineWebCMS/"
yunohost = ">= 11.2" yunohost = ">= 11.2"
architectures = "all" architectures = "all"
multi_instance = true multi_instance = true
ldap = false ldap = false
sso = false sso = false
disk = "50M" disk = "50M"
ram.build = "50M" ram.build = "50M"
ram.runtime = "50M" ram.runtime = "50M"
@ -53,7 +56,7 @@ ram.runtime = "50M"
main.url = "/" main.url = "/"
[resources.apt] [resources.apt]
packages = "mariadb-server php7.4-zip php7.4-gd php7.4-curl" packages = "mariadb-server, php8.2-zip, php8.2-gd, php8.2-curl"
[resources.database] [resources.database]
type = "mysql" type = "mysql"

View file

@ -29,13 +29,13 @@ ynh_script_progression --message="Configuring NGINX web server..." --weight=2
ynh_add_nginx_config ynh_add_nginx_config
# Create a dedicated PHP-FPM config # Create a dedicated PHP-FPM config
ynh_add_fpm_config --usage=low --footprint=low ynh_add_fpm_config
#================================================= #=================================================
# MODIFY A CONFIG FILE # MODIFY A CONFIG FILE
#================================================= #=================================================
ynh_add_config --template="../conf/database.php" --destination="$install_dir/app/Config/database.php" ynh_add_config --template="database.php" --destination="$install_dir/app/Config/database.php"
#================================================= #=================================================
# MODIFY FIRST.CTP # MODIFY FIRST.CTP

View file

@ -17,7 +17,6 @@ ynh_script_progression --message="Stopping and removing the systemd service..."
# Remove the dedicated systemd config # Remove the dedicated systemd config
ynh_remove_systemd_config ynh_remove_systemd_config
# Remove the dedicated NGINX config # Remove the dedicated NGINX config
ynh_remove_nginx_config ynh_remove_nginx_config

View file

@ -41,7 +41,7 @@ ynh_script_progression --message="Upgrading NGINX web server configuration..." -
ynh_add_nginx_config ynh_add_nginx_config
# Create a dedicated PHP-FPM config # Create a dedicated PHP-FPM config
ynh_add_fpm_config --usage=low --footprint=low ynh_add_fpm_config
#================================================= #=================================================
# MODIFY A CONFIG FILE # MODIFY A CONFIG FILE