1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ifm_ynh.git synced 2024-09-03 18:45:52 +02:00

Merge pull request #9 from YunoHost-Apps/testing

Testing
This commit is contained in:
Éric Gaspar 2023-01-13 20:26:28 +01:00 committed by GitHub
commit 0a569dbe5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 5 additions and 8 deletions

View file

@ -29,7 +29,7 @@ The IFM is a web-based filemanager, which comes as a single file solution using
- simple authentication (LDAP via `ldap_bind` possible)
**Shipped version:** 4.0.0~ynh1
**Shipped version:** 4.0.0~ynh2
**Demo:** https://ifmdemo.gitea.de/
@ -42,7 +42,6 @@ The IFM is a web-based filemanager, which comes as a single file solution using
The IFM is usually locked to it's own directory (`/home/yunohost.app/ifm`), so you are not able to go above. You can change that by setting `env[IFM_ROOT_DIR] = /home/yunohost.app/ifm` in the PHP config `/etc/php/7.3/fpm/pool.d/ifm.conf` L.434 with the help of this [documentation](https://github.com/misterunknown/ifm/wiki/Configuration).
## Documentation and resources
* Official app website: <https://github.com/misterunknown/ifm>
* Upstream app code repository: <https://github.com/misterunknown/ifm>
* YunoHost documentation for this app: <https://yunohost.org/app_ifm>
* Report a bug: <https://github.com/YunoHost-Apps/ifm_ynh/issues>

View file

@ -28,7 +28,7 @@ L'IFM est un gestionnaire de fichiers basé sur le Web, qui se présente sous la
- aperçu de l'image
- authentification simple (LDAP via `ldap_bind` possible)
**Version incluse :** 4.0.0~ynh1
**Version incluse :** 4.0.0~ynh2
**Démo :** https://ifmdemo.gitea.de/
@ -41,7 +41,6 @@ L'IFM est un gestionnaire de fichiers basé sur le Web, qui se présente sous la
L'IFM est généralement verrouillé dans son propre répertoire (`/home/yunohost.app/ifm`), vous ne pouvez donc pas aller sur d'autres répertoires. Vous pouvez changer cela en définissant `env[IFM_ROOT_DIR] = /home/yunohost.app/ifm` dans la configuration PHP `/etc/php/7.3/fpm/pool.d/ifm.conf` L.434 en vous aidant de cette [documentation](https://github.com/misterunknown/ifm/wiki/Configuration).
## Documentations et ressources
* Site officiel de l'app : <https://github.com/misterunknown/ifm>
* Dépôt de code officiel de l'app : <https://github.com/misterunknown/ifm>
* Documentation YunoHost pour cette app : <https://yunohost.org/app_ifm>
* Signaler un bug : <https://github.com/YunoHost-Apps/ifm_ynh/issues>

View file

@ -6,11 +6,10 @@
"en": "Improved File Manager",
"fr": "Gestionnaire de fichiers amélioré"
},
"version": "4.0.0~ynh1",
"version": "4.0.0~ynh2",
"url": "https://github.com/misterunknown/ifm",
"upstream": {
"license": "MIT",
"website": "https://github.com/misterunknown/ifm",
"demo": "https://ifmdemo.gitea.de/",
"code": "https://github.com/misterunknown/ifm"
},

View file

@ -70,7 +70,7 @@ ynh_script_progression --message="Setting up source files..." --weight=3
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
mkdir -p $final_path
mv "../conf/ifm.php" "$final_path/ifm.php"
mv "../sources/ifm.php" "$final_path/ifm.php"
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"

View file

@ -67,7 +67,7 @@ if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=2
mv -f "../conf/ifm.php" "$final_path/ifm.php"
mv -f "../sources/ifm.php" "$final_path/ifm.php"
fi
chmod 750 "$final_path"