mirror of
https://github.com/YunoHost-Apps/filebrowser_ynh.git
synced 2024-09-03 18:36:05 +02:00
commit
5af1b3be61
7 changed files with 41 additions and 36 deletions
11
.github/workflows/updater.sh
vendored
11
.github/workflows/updater.sh
vendored
|
@ -66,15 +66,18 @@ echo "Handling asset at $asset_url"
|
||||||
# Here we base the source file name upon a unique keyword in the assets url (admin vs. update)
|
# Here we base the source file name upon a unique keyword in the assets url (admin vs. update)
|
||||||
# Leave $src empty to ignore the asset
|
# Leave $src empty to ignore the asset
|
||||||
case $asset_url in
|
case $asset_url in
|
||||||
*"/linux-amd64-filebrowser.tar.gz")
|
*"linux-amd64-filebrowser.tar.gz")
|
||||||
src="amd64"
|
src="amd64"
|
||||||
;;
|
;;
|
||||||
*"/linux-arm64-filebrowser.tar.gz")
|
*"linux-arm64-filebrowser.tar.gz")
|
||||||
src="arm64"
|
src="arm64"
|
||||||
;;
|
;;
|
||||||
*"/linux-armv7-filebrowser.tar.gz")
|
*"linux-armv7-filebrowser.tar.gz")
|
||||||
src="armhf"
|
src="armhf"
|
||||||
;;
|
;;
|
||||||
|
*)
|
||||||
|
src=""
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# If $src is not empty, let's process the asset
|
# If $src is not empty, let's process the asset
|
||||||
|
@ -104,7 +107,7 @@ SOURCE_URL=$asset_url
|
||||||
SOURCE_SUM=$checksum
|
SOURCE_SUM=$checksum
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=$extension
|
SOURCE_FORMAT=$extension
|
||||||
SOURCE_IN_SUBDIR=true
|
SOURCE_IN_SUBDIR=false
|
||||||
SOURCE_FILENAME=
|
SOURCE_FILENAME=
|
||||||
EOT
|
EOT
|
||||||
echo "... conf/$src.src updated"
|
echo "... conf/$src.src updated"
|
||||||
|
|
23
README.md
23
README.md
|
@ -5,7 +5,7 @@ It shall NOT be edited by hand.
|
||||||
|
|
||||||
# Filebrowser for YunoHost
|
# Filebrowser for YunoHost
|
||||||
|
|
||||||
[](https://dash.yunohost.org/appci/app/filebrowser)  
|
[](https://dash.yunohost.org/appci/app/filebrowser)  
|
||||||
[](https://install-app.yunohost.org/?app=filebrowser)
|
[](https://install-app.yunohost.org/?app=filebrowser)
|
||||||
|
|
||||||
*[Lire ce readme en français.](./README_fr.md)*
|
*[Lire ce readme en français.](./README_fr.md)*
|
||||||
|
@ -18,13 +18,11 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
||||||
filebrowser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files. It allows the creation of multiple users and each user can have its own directory. It can be used as a standalone app or as a middleware.
|
filebrowser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files. It allows the creation of multiple users and each user can have its own directory. It can be used as a standalone app or as a middleware.
|
||||||
|
|
||||||
|
|
||||||
**Shipped version:** 2.21.1~ynh3
|
**Shipped version:** 2.22.0~ynh1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Screenshots
|
## Screenshots
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Disclaimers / important information
|
## Disclaimers / important information
|
||||||
|
|
||||||
|
@ -43,21 +41,22 @@ By default, the root path is set to `/home/yunohost.app/filebrowser`. You can ch
|
||||||
|
|
||||||
## Documentation and resources
|
## Documentation and resources
|
||||||
|
|
||||||
* Official app website: https://filebrowser.org
|
* Official app website: <https://filebrowser.org>
|
||||||
* Official admin documentation: https://filebrowser.org/
|
* Official admin documentation: <https://filebrowser.org/>
|
||||||
* Upstream app code repository: https://github.com/filebrowser/filebrowser
|
* Upstream app code repository: <https://github.com/filebrowser/filebrowser>
|
||||||
* YunoHost documentation for this app: https://yunohost.org/app_filebrowser
|
* YunoHost documentation for this app: <https://yunohost.org/app_filebrowser>
|
||||||
* Report a bug: https://github.com/YunoHost-Apps/filebrowser_ynh/issues
|
* Report a bug: <https://github.com/YunoHost-Apps/filebrowser_ynh/issues>
|
||||||
|
|
||||||
## Developer info
|
## Developer info
|
||||||
|
|
||||||
Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing).
|
Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing).
|
||||||
|
|
||||||
To try the testing branch, please proceed like that.
|
To try the testing branch, please proceed like that.
|
||||||
```
|
|
||||||
|
``` bash
|
||||||
sudo yunohost app install https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing --debug
|
sudo yunohost app install https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing --debug
|
||||||
or
|
or
|
||||||
sudo yunohost app upgrade filebrowser -u https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing --debug
|
sudo yunohost app upgrade filebrowser -u https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing --debug
|
||||||
```
|
```
|
||||||
|
|
||||||
**More info regarding app packaging:** https://yunohost.org/packaging_apps
|
**More info regarding app packaging:** <https://yunohost.org/packaging_apps>
|
||||||
|
|
29
README_fr.md
29
README_fr.md
|
@ -1,10 +1,14 @@
|
||||||
|
<!--
|
||||||
|
N.B.: This README was automatically generated by https://github.com/YunoHost/apps/tree/master/tools/README-generator
|
||||||
|
It shall NOT be edited by hand.
|
||||||
|
-->
|
||||||
|
|
||||||
# Filebrowser pour YunoHost
|
# Filebrowser pour YunoHost
|
||||||
|
|
||||||
[](https://dash.yunohost.org/appci/app/filebrowser)  
|
[](https://dash.yunohost.org/appci/app/filebrowser)  
|
||||||
[](https://install-app.yunohost.org/?app=filebrowser)
|
[](https://install-app.yunohost.org/?app=filebrowser)
|
||||||
|
|
||||||
*[Read this readme in english.](./README.md)*
|
*[Read this readme in english.](./README.md)*
|
||||||
*[Lire ce readme en français.](./README_fr.md)*
|
|
||||||
|
|
||||||
> *Ce package vous permet d'installer Filebrowser rapidement et simplement sur un serveur YunoHost.
|
> *Ce package vous permet d'installer Filebrowser rapidement et simplement sur un serveur YunoHost.
|
||||||
Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.*
|
Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.*
|
||||||
|
@ -14,13 +18,11 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
|
||||||
filebrowser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files. It allows the creation of multiple users and each user can have its own directory. It can be used as a standalone app or as a middleware.
|
filebrowser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files. It allows the creation of multiple users and each user can have its own directory. It can be used as a standalone app or as a middleware.
|
||||||
|
|
||||||
|
|
||||||
**Version incluse :** 2.21.1~ynh3
|
**Version incluse :** 2.22.0~ynh1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Captures d'écran
|
## Captures d'écran
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Avertissements / informations importantes
|
## Avertissements / informations importantes
|
||||||
|
|
||||||
|
@ -39,21 +41,22 @@ By default, the root path is set to `/home/yunohost.app/filebrowser`. You can ch
|
||||||
|
|
||||||
## Documentations et ressources
|
## Documentations et ressources
|
||||||
|
|
||||||
* Site officiel de l'app : https://filebrowser.org
|
* Site officiel de l'app : <https://filebrowser.org>
|
||||||
* Documentation officielle de l'admin : https://filebrowser.org/
|
* Documentation officielle de l'admin : <https://filebrowser.org/>
|
||||||
* Dépôt de code officiel de l'app : https://github.com/filebrowser/filebrowser
|
* Dépôt de code officiel de l'app : <https://github.com/filebrowser/filebrowser>
|
||||||
* Documentation YunoHost pour cette app : https://yunohost.org/app_filebrowser
|
* Documentation YunoHost pour cette app : <https://yunohost.org/app_filebrowser>
|
||||||
* Signaler un bug : https://github.com/YunoHost-Apps/filebrowser_ynh/issues
|
* Signaler un bug : <https://github.com/YunoHost-Apps/filebrowser_ynh/issues>
|
||||||
|
|
||||||
## Informations pour les développeurs
|
## Informations pour les développeurs
|
||||||
|
|
||||||
Merci de faire vos pull request sur la [branche testing](https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing).
|
Merci de faire vos pull request sur la [branche testing](https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing).
|
||||||
|
|
||||||
Pour essayer la branche testing, procédez comme suit.
|
Pour essayer la branche testing, procédez comme suit.
|
||||||
```
|
|
||||||
|
``` bash
|
||||||
sudo yunohost app install https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing --debug
|
sudo yunohost app install https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing --debug
|
||||||
ou
|
ou
|
||||||
sudo yunohost app upgrade filebrowser -u https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing --debug
|
sudo yunohost app upgrade filebrowser -u https://github.com/YunoHost-Apps/filebrowser_ynh/tree/testing --debug
|
||||||
```
|
```
|
||||||
|
|
||||||
**Plus d'infos sur le packaging d'applications :** https://yunohost.org/packaging_apps
|
**Plus d'infos sur le packaging d'applications :** <https://yunohost.org/packaging_apps>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
SOURCE_URL=https://github.com/filebrowser/filebrowser/releases/download/v2.21.1/linux-amd64-filebrowser.tar.gz
|
SOURCE_URL=https://github.com/filebrowser/filebrowser/releases/download/v2.22.0/linux-amd64-filebrowser.tar.gz
|
||||||
SOURCE_SUM=6b6633ea4cd4568b7120a4d22ca7a79d6868bbd8401cabe019255fe00a187d9a
|
SOURCE_SUM=4017a0c1407bbbd781d4abf4941697a802c448b2d3b818c66a978e39f96c9619
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=tar.gz
|
SOURCE_FORMAT=tar.gz
|
||||||
SOURCE_IN_SUBDIR=false
|
SOURCE_IN_SUBDIR=false
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
SOURCE_URL=https://github.com/filebrowser/filebrowser/releases/download/v2.21.1/linux-arm64-filebrowser.tar.gz
|
SOURCE_URL=https://github.com/filebrowser/filebrowser/releases/download/v2.22.0/linux-arm64-filebrowser.tar.gz
|
||||||
SOURCE_SUM=3e14150cd2377ac887ff83e30121e7eebecc6d68f6ee91a058c0f1ed8749c45c
|
SOURCE_SUM=26033be8f05ac10f0557647fea4f6a782e3526d5136b63c74c74a5d20e24e1c3
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=tar.gz
|
SOURCE_FORMAT=tar.gz
|
||||||
SOURCE_IN_SUBDIR=false
|
SOURCE_IN_SUBDIR=false
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
SOURCE_URL=https://github.com/filebrowser/filebrowser/releases/download/v2.21.1/linux-armv7-filebrowser.tar.gz
|
SOURCE_URL=https://github.com/filebrowser/filebrowser/releases/download/v2.22.0/linux-armv7-filebrowser.tar.gz
|
||||||
SOURCE_SUM=8b8673d701bce85bf71225d3b5102daac8caca85962767a217f7bb46fa603af7
|
SOURCE_SUM=cd02b1b56be1172082421e5403582ee4e501daaf1af4afd3744170d0bf0ed9a7
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=tar.gz
|
SOURCE_FORMAT=tar.gz
|
||||||
SOURCE_IN_SUBDIR=false
|
SOURCE_IN_SUBDIR=false
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"en": "Web File Browser",
|
"en": "Web File Browser",
|
||||||
"fr": "Gestionnaire de fichiers"
|
"fr": "Gestionnaire de fichiers"
|
||||||
},
|
},
|
||||||
"version": "2.21.1~ynh3",
|
"version": "2.22.0~ynh1",
|
||||||
"url": "https://filebrowser.org",
|
"url": "https://filebrowser.org",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
|
Loading…
Add table
Reference in a new issue