1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/BicBucStriim_ynh.git synced 2024-09-03 18:15:53 +02:00

Merge pull request #17 from YunoHost-Apps/testing

Use new repo, bump version
This commit is contained in:
Alexandre Aubin 2024-04-22 17:55:45 +02:00 committed by GitHub
commit a5ec389e77
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 16 additions and 17 deletions

View file

@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
BicBucStriim is a simple PHP application that runs in the Apache/PHP environment provided by the NAS (or any other server). It assumes that you manage your e-book collection with Calibre. The application reads the [Calibre](https://calibre-ebook.com/) data and publishes it in HTML form. To access the e-book catalog you simply point your ebook reader to your NAS, select one of your e-books and download it.
**Shipped version:** 1.5.3~ynh4
**Shipped version:** 1.6.5~ynh1
## Screenshots
@ -27,8 +27,7 @@ BicBucStriim is a simple PHP application that runs in the Apache/PHP environment
## Documentation and resources
* Official app website: <http://projekte.textmulch.de/bicbucstriim/>
* Upstream app code repository: <https://github.com/rvolz/BicBucStriim/>
* Upstream app code repository: <https://github.com/mikespub-org/rvolz-BicBucStriim>
* YunoHost Store: <https://apps.yunohost.org/app/bicbucstriim>
* Report a bug: <https://github.com/YunoHost-Apps/bicbucstriim_ynh/issues>

View file

@ -19,7 +19,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
BicBucStriim est une application PHP simple qui s'exécute dans l'environnement Apache/PHP fourni par le NAS (ou tout autre serveur). Cela suppose que vous gérez votre collection de livres électroniques avec Calibre. L'application lit les données [Calibre](https://calibre-ebook.com/) et les publie sous forme HTML. Pour accéder au catalogue de livres électroniques, il vous suffit de pointer votre lecteur de livres électroniques sur votre NAS, de sélectionner l'un de vos livres électroniques et de le télécharger.
**Version incluse :** 1.5.3~ynh4
**Version incluse :** 1.6.5~ynh1
## Captures décran
@ -27,8 +27,7 @@ BicBucStriim est une application PHP simple qui s'exécute dans l'environnement
## Documentations et ressources
* Site officiel de lapp : <http://projekte.textmulch.de/bicbucstriim/>
* Dépôt de code officiel de lapp : <https://github.com/rvolz/BicBucStriim/>
* Dépôt de code officiel de lapp : <https://github.com/mikespub-org/rvolz-BicBucStriim>
* YunoHost Store: <https://apps.yunohost.org/app/bicbucstriim>
* Signaler un bug : <https://github.com/YunoHost-Apps/bicbucstriim_ynh/issues>

View file

@ -12,10 +12,7 @@ location __PATH__/ {
index index.php;
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
client_max_body_size 50M;
try_files $uri $uri/ __PATH__/index.php;
try_files $uri $uri/ @bicbucstriim;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
@ -31,3 +28,7 @@ location __PATH__/ {
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}
location @bicbucstriim {
rewrite /(.*)$ /index.php?/$1 last;
}

View file

@ -7,14 +7,13 @@ name = "BicBucStriim"
description.en = "Digital books streamer, providing web-based access to your e-book collection"
description.fr = "Interface web pour accéder à votre collection d'e-book"
version = "1.5.3~ynh4"
version = "1.6.5~ynh1"
maintainers = ["Alex"]
[upstream]
license = "MIT"
website = "http://projekte.textmulch.de/bicbucstriim/"
code = "https://github.com/rvolz/BicBucStriim/"
code = "https://github.com/mikespub-org/rvolz-BicBucStriim"
[integration]
yunohost = ">= 11.2"
@ -40,8 +39,8 @@ ram.runtime = "50M"
[resources]
[resources.sources.main]
url = "https://github.com/rvolz/BicBucStriim/archive/refs/tags/v1.5.3.zip"
sha256 = "32b922c2d385a15ba71e1f2935017cc9269f95c60038c5e1b62caecbe4fa5bca"
url = "https://github.com/mikespub-org/rvolz-BicBucStriim/releases/download/v1.6.5/bicbucstriim-1.6.5.zip"
sha256 = "8cd516fd25253a0aee2c047706164686f175fd23730462eb424196d0bb102b35"
[resources.system_user]
@ -54,6 +53,7 @@ ram.runtime = "50M"
packages = [
"php7.4-gd",
"php7.4-intl",
"php7.4-xml",
"php7.4-sqlite3",
"php7.4-mbstring",
]

View file

@ -30,7 +30,7 @@ ynh_script_progression --message="Adding system configurations related to $app..
ynh_add_nginx_config
# Create a dedicated PHP-FPM config
ynh_add_fpm_config --usage=low --footprint=low
ynh_add_fpm_config
#=================================================
# END OF SCRIPT

View file

@ -32,7 +32,7 @@ ynh_script_progression --message="Upgrading system configurations related to $ap
ynh_add_nginx_config
ynh_add_fpm_config --usage=low --footprint=low
ynh_add_fpm_config
#=================================================
# END OF SCRIPT