mirror of
https://github.com/YunoHost-Apps/lstu_ynh.git
synced 2024-09-03 19:36:12 +02:00
Upgrade to 0.26.0~ynh1
This commit is contained in:
parent
286d69f0c5
commit
82b0f2f8a4
7 changed files with 42 additions and 23 deletions
|
@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
||||||
|
|
||||||
URL Shortener
|
URL Shortener
|
||||||
|
|
||||||
**Shipped version:** 0.25.0~ynh1
|
**Shipped version:** 0.26.0~ynh1
|
||||||
|
|
||||||
**Demo:** https://lstu.fr
|
**Demo:** https://lstu.fr
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
|
||||||
|
|
||||||
Raccourcisseur d'URL
|
Raccourcisseur d'URL
|
||||||
|
|
||||||
**Version incluse :** 0.25.0~ynh1
|
**Version incluse :** 0.26.0~ynh1
|
||||||
|
|
||||||
**Démo :** https://lstu.fr
|
**Démo :** https://lstu.fr
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
SOURCE_URL=https://framagit.org/fiat-tux/hat-softwares/lstu/-/archive/0.25-0/lstu-0.25-0.tar.gz
|
SOURCE_URL=https://framagit.org/fiat-tux/hat-softwares/lstu/-/archive/0.26-0/lstu-0.26-0.tar.gz
|
||||||
SOURCE_SUM=eae4bc13ef761996a13c8133647dce14e040a67173b099b630ef35dba3b19209
|
SOURCE_SUM=323c81b4cb04a97eda7cb37b2a63d16e808591fd46eb4326f6619200ce742960
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=tar.gz
|
SOURCE_FORMAT=tar.gz
|
||||||
SOURCE_IN_SUBDIR=true
|
SOURCE_IN_SUBDIR=true
|
||||||
|
SOURCE_FILENAME=
|
||||||
|
SOURCE_EXTRACT=true
|
||||||
|
|
|
@ -31,6 +31,11 @@
|
||||||
# optional, but you won't have access to admin /stats if not set and if adminpwd is not set either
|
# optional, but you won't have access to admin /stats if not set and if adminpwd is not set either
|
||||||
hashed_adminpwd => '__HASHED_PASSWORD__',
|
hashed_adminpwd => '__HASHED_PASSWORD__',
|
||||||
|
|
||||||
|
# indicates if you want to really delete URLs from admin page (/stats)
|
||||||
|
# or just want to deactivate the shorten URL (won’t redirect anymore, can’t be used anymore)
|
||||||
|
# optional, default to 0 (false)
|
||||||
|
#really_delete_urls => 0,
|
||||||
|
|
||||||
# choose a theme. See the available themes in `themes` directory
|
# choose a theme. See the available themes in `themes` directory
|
||||||
# optional, default is 'default'
|
# optional, default is 'default'
|
||||||
theme => '__THEME__', # default or milligram
|
theme => '__THEME__', # default or milligram
|
||||||
|
@ -66,6 +71,10 @@
|
||||||
# optional
|
# optional
|
||||||
#fixed_domain => 'example.org',
|
#fixed_domain => 'example.org',
|
||||||
|
|
||||||
|
# if set to 1, Lstu will try to prevent its use without using the web interface
|
||||||
|
# optional, default is 0
|
||||||
|
#disable_api => 0,
|
||||||
|
|
||||||
# choose what database you want to use
|
# choose what database you want to use
|
||||||
# valid choices are sqlite, postgresql and mysql (all lowercase)
|
# valid choices are sqlite, postgresql and mysql (all lowercase)
|
||||||
# optional, default is sqlite
|
# optional, default is sqlite
|
||||||
|
@ -264,5 +273,9 @@
|
||||||
# Set to 1 if you want to register the IP addresses of URL creators
|
# Set to 1 if you want to register the IP addresses of URL creators
|
||||||
# optional, default is 0
|
# optional, default is 0
|
||||||
#log_creator_ip => 0,
|
#log_creator_ip => 0,
|
||||||
};
|
|
||||||
|
|
||||||
|
# Positive integer which specifies how many pixels one "module" (one block of the QR code) occupies.
|
||||||
|
# You can't use fractional values. An arbitrary upper limit of 100 is imposed by Image::PNG::QRCode module.
|
||||||
|
# optional, default is 3
|
||||||
|
#qrcode_size => 3,
|
||||||
|
};
|
||||||
|
|
|
@ -273,5 +273,9 @@
|
||||||
# Set to 1 if you want to register the IP addresses of URL creators
|
# Set to 1 if you want to register the IP addresses of URL creators
|
||||||
# optional, default is 0
|
# optional, default is 0
|
||||||
#log_creator_ip => 0,
|
#log_creator_ip => 0,
|
||||||
};
|
|
||||||
|
|
||||||
|
# Positive integer which specifies how many pixels one "module" (one block of the QR code) occupies.
|
||||||
|
# You can't use fractional values. An arbitrary upper limit of 100 is imposed by Image::PNG::QRCode module.
|
||||||
|
# optional, default is 3
|
||||||
|
#qrcode_size => 3,
|
||||||
|
};
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"en": "URL Shortener",
|
"en": "URL Shortener",
|
||||||
"fr": "Raccourcisseur d'URL"
|
"fr": "Raccourcisseur d'URL"
|
||||||
},
|
},
|
||||||
"version": "0.25.0~ynh1",
|
"version": "0.26.0~ynh1",
|
||||||
"url": "https://lstu.fr",
|
"url": "https://lstu.fr",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "WTFPL",
|
"license": "WTFPL",
|
||||||
|
|
Loading…
Add table
Reference in a new issue