1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/simple-torrent_ynh.git synced 2024-09-03 20:26:18 +02:00
* Upgrade to version 1.2.23
This commit is contained in:
Éric Gaspar 2021-05-10 09:43:54 +02:00 committed by GitHub
parent 3906e7d23d
commit 724f90ebab
8 changed files with 20 additions and 21 deletions

View file

@ -12,7 +12,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/inst
Simple Torrent is a self-hosted remote torrent client, written in Go (golang). Started torrents remotely, download sets of files on the local disk of the server, which are then retrievable or streamable via HTTP.
**Shipped version:** 1.2.22
**Shipped version:** 1.2.23
## Screenshots

View file

@ -12,7 +12,7 @@ Si vous n'avez pas YunoHost, consultez [le guide](https://yunohost.org/install)
Simple Torrent est un client torrent distant auto-hébergé, écrit en Go (golang). Démarrez des torrents à distance, téléchargez des ensembles de fichiers sur le disque local du serveur, qui sont ensuite récupérables ou diffusables via HTTP.
**Version incluse :** 1.2.22
**Version incluse :** 1.2.23
## Captures d'écran

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/boypt/simple-torrent/releases/download/1.2.22/cloud-torrent_linux_arm64_static.gz
SOURCE_SUM=27e5a408a6efc25a672b5b03f3522268d29b5181ab4880b393b4ae904bec73a3
SOURCE_URL=https://github.com/boypt/simple-torrent/releases/download/1.2.23/cloud-torrent_linux_arm64_static.gz
SOURCE_SUM=28a752920f03a18e5830d4d1e2b2eff15cf6872fed6b83c56232c72acee05f12
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=gz
SOURCE_IN_SUBDIR=false

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/boypt/simple-torrent/releases/download/1.2.22/cloud-torrent_linux_amd64_static.gz
SOURCE_SUM=8bc0bc3fe2a1e0d3c284dca868fe869588fece96562ef67f361fa6e53382b6b6
SOURCE_URL=https://github.com/boypt/simple-torrent/releases/download/1.2.23/cloud-torrent_linux_amd64_static.gz
SOURCE_SUM=4df4987bf027d6f72b8e54062eda35b34c9af15ea73cbde0c4940aa843a7e280
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=gz
SOURCE_IN_SUBDIR=false

View file

@ -6,7 +6,7 @@
"en": "Self-hosted remote torrent client",
"fr": "Client torrent distant auto-hébergé"
},
"version": "1.2.22~ynh1",
"version": "1.2.23~ynh1",
"url": "https://github.com/boypt/simple-torrent",
"license": "AGPL-3.0-only",
"maintainer": {

View file

@ -119,8 +119,6 @@ ynh_add_config --template="../conf/config.default.json" --destination="$final_pa
#=================================================
ynh_script_progression --message="Configuring a systemd service..." --weight=1
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="../conf/systemd.service"
ynh_add_systemd_config
#=================================================
@ -131,10 +129,11 @@ ynh_add_systemd_config
ynh_script_progression --message="Securing files and directories..." --weight=1
# Set permissions to app files
chown -R $app: $final_path
chown -R $app: /home/yunohost.app/$app
chown -R $app:www-data $final_path
chmod -R o-rwx $final_path
chown -R $app:www-data /home/yunohost.app/$app
chmod +x $final_path/$app
chmod -R 755 /home/yunohost.app/$app/{torrents,downloads}
chmod 755 /home/yunohost.app/$app/{torrents,downloads}
#=================================================
# INTEGRATE SERVICE IN YUNOHOST

View file

@ -83,10 +83,11 @@ ynh_system_user_create --username=$app
ynh_script_progression --message="Restoring user rights..."
# Set permissions to app files
chown -R $app: $final_path
chown -R $app: /home/yunohost.app/$app
chown -R $app:www-data $final_path
chmod -R o-rwx $final_path
chown -R $app:www-data /home/yunohost.app/$app
chmod +x $final_path/$app
chmod -R 755 /home/yunohost.app/$app/{torrents,downloads}
chmod 755 /home/yunohost.app/$app/{torrents,downloads}
#=================================================
# RESTORE SYSTEMD

View file

@ -128,8 +128,6 @@ ynh_system_user_create --username=$app
#=================================================
ynh_script_progression --message="Configuring a systemd service..." --weight=2
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="../conf/systemd.service"
ynh_add_systemd_config
#=================================================
@ -139,10 +137,11 @@ ynh_add_systemd_config
#=================================================
ynh_script_progression --message="Securing files and directories..."
chown -R $app: $final_path
chown -R $app: /home/yunohost.app/$app
chown -R $app:www-data $final_path
chmod -R o-rwx $final_path
chown -R $app:www-data /home/yunohost.app/$app
chmod +x $final_path/$app
chmod -R 755 /home/yunohost.app/$app/{torrents,downloads}
chmod 755 /home/yunohost.app/$app/{torrents,downloads}
#=================================================
# INTEGRATE SERVICE IN YUNOHOST