1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/rss-bridge_ynh.git synced 2024-09-03 20:25:51 +02:00

Merge pull request #63 from YunoHost-Apps/testing

* 2023-07-11

* 2023.07.13

* Auto-update README

* Remove the bridge that fails

https://github.com/YunoHost-Apps/rss-bridge_ynh/pull/63#issuecomment-1655122488

* fix typo

* fix typo 2

* remove bridge

* one more fix for that bridge…

* Whitelist all bridges

* enable every bridge - fix syntax

---------

Co-authored-by: yunohost-bot <yunohost@yunohost.org>
This commit is contained in:
lapineige 2023-08-01 17:13:23 +02:00 committed by GitHub
commit 0ad235d161
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 12 deletions

View file

@ -53,7 +53,7 @@ Output format can take several forms:
* `Plaintext` : raw text (php object, as returned by print_r) * `Plaintext` : raw text (php object, as returned by print_r)
**Shipped version:** 2023.03.22~ynh1 **Shipped version:** 2023.07.13~ynh1
**Demo:** https://wtf.roflcopter.fr/rss-bridge/ **Demo:** https://wtf.roflcopter.fr/rss-bridge/

View file

@ -53,7 +53,7 @@ Output format can take several forms:
* `Plaintext` : raw text (php object, as returned by print_r) * `Plaintext` : raw text (php object, as returned by print_r)
**Version incluse :** 2023.03.22~ynh1 **Version incluse :** 2023.07.13~ynh1
**Démo :** https://wtf.roflcopter.fr/rss-bridge/ **Démo :** https://wtf.roflcopter.fr/rss-bridge/

View file

@ -5,7 +5,7 @@ name = "RSS-Bridge"
description.en = "RSS and Atom feed generator for websites that don't have one" description.en = "RSS and Atom feed generator for websites that don't have one"
description.fr = "Générateur de flux RSS et Atom pour les sites Web qui n'en ont pas" description.fr = "Générateur de flux RSS et Atom pour les sites Web qui n'en ont pas"
version = "2023.03.22~ynh1" version = "2023.07.13~ynh1"
maintainers = ["JimboJoe","Lapineige"] maintainers = ["JimboJoe","Lapineige"]
@ -35,8 +35,8 @@ ram.runtime = "50M"
[resources] [resources]
[resources.sources.main] [resources.sources.main]
url = "https://github.com/RSS-Bridge/rss-bridge/archive/refs/tags/2023-03-22.tar.gz" url = "https://github.com/RSS-Bridge/rss-bridge/archive/refs/tags/2023-07-13.tar.gz"
sha256 = "7bc6ad3220ad6a699583be6763aebc39ecb9e3bb2454f3f0add88c1e7ae93cfc" sha256 = "2aacd86a6c5387660782b881d7b07bd278477e55913e63c4dd6aae09e02b9d50"
[resources.system_user] [resources.system_user]

View file

@ -38,10 +38,7 @@ ynh_add_nginx_config
#================================================= #=================================================
ynh_script_progression --message="Configuring RSS-Bridge..." --weight=1 ynh_script_progression --message="Configuring RSS-Bridge..." --weight=1
# Enable every bridge echo \* > $install_dir/whitelist.txt
for i in $install_dir/bridges/*.php ; do
echo $(basename $i) | sed "s|Bridge.php$||g" | tee -a $install_dir/whitelist.txt
done
#================================================= #=================================================
# END OF SCRIPT # END OF SCRIPT

View file

@ -68,9 +68,7 @@ ynh_add_nginx_config
ynh_script_progression --message="Configuring RSS-Bridge..." --weight=2 ynh_script_progression --message="Configuring RSS-Bridge..." --weight=2
# Enable every bridge # Enable every bridge
for i in $install_dir/bridges/*.php ; do echo \* > $install_dir/whitelist.txt
echo $(basename $i) | sed "s|Bridge.php$||g" | tee -a $install_dir/whitelist.txt
done
#================================================= #=================================================
# END OF SCRIPT # END OF SCRIPT