mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2024-12-22 00:50:12 +00:00
Bump to 0.3.7
This commit is contained in:
parent
dea613fa85
commit
b5af2e7f9d
@ -9,9 +9,9 @@ server = http://jellyfin.local:8096
|
|||||||
public_server = https://jellyf.in:443
|
public_server = https://jellyf.in:443
|
||||||
; this and below settings will show on the jellyfin dashboard when the program connects. you may as well leave them alone.
|
; this and below settings will show on the jellyfin dashboard when the program connects. you may as well leave them alone.
|
||||||
client = jf-accounts
|
client = jf-accounts
|
||||||
version = 0.3.6
|
version = 0.3.7
|
||||||
device = jf-accounts
|
device = jf-accounts
|
||||||
device_id = jf-accounts-0.3.6
|
device_id = jf-accounts-0.3.7
|
||||||
|
|
||||||
[ui]
|
[ui]
|
||||||
; settings related to the ui and program functionality.
|
; settings related to the ui and program functionality.
|
||||||
@ -28,6 +28,8 @@ admin_only = true
|
|||||||
username = your username
|
username = your username
|
||||||
; password for admin page (leave blank if using jellyfin_login)
|
; password for admin page (leave blank if using jellyfin_login)
|
||||||
password = your password
|
password = your password
|
||||||
|
; address to send notifications to (leave blank if using jellyfin_login)
|
||||||
|
email = example@example.com
|
||||||
debug = false
|
debug = false
|
||||||
; displayed at bottom of all pages except admin
|
; displayed at bottom of all pages except admin
|
||||||
contact_message = Need help? contact me.
|
contact_message = Need help? contact me.
|
||||||
@ -88,6 +90,19 @@ subject = Invite - Jellyfin
|
|||||||
; base url for jf-accounts. this is necessary because using a reverse proxy means the program has no way of knowing the url itself.
|
; base url for jf-accounts. this is necessary because using a reverse proxy means the program has no way of knowing the url itself.
|
||||||
url_base = http://accounts.jellyf.in:8056/invite
|
url_base = http://accounts.jellyf.in:8056/invite
|
||||||
|
|
||||||
|
[notifications]
|
||||||
|
; notification related settings.
|
||||||
|
; enabling adds optional toggles to invites to notify on expiry and user creation.
|
||||||
|
enabled = true
|
||||||
|
; path to expiry notification email html.
|
||||||
|
expiry_html =
|
||||||
|
; path to expiry notification email in plaintext.
|
||||||
|
expiry_text =
|
||||||
|
; path to user creation notification email html.
|
||||||
|
created_html =
|
||||||
|
; path to user creation notification email in plaintext.
|
||||||
|
created_text =
|
||||||
|
|
||||||
[mailgun]
|
[mailgun]
|
||||||
; mailgun api connection settings
|
; mailgun api connection settings
|
||||||
api_url = https://api.mailgun.net...
|
api_url = https://api.mailgun.net...
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Runs it!
|
# Runs it!
|
||||||
__version__ = "0.3.6"
|
__version__ = "0.3.7"
|
||||||
|
|
||||||
import secrets
|
import secrets
|
||||||
import configparser
|
import configparser
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "jellyfin-accounts"
|
name = "jellyfin-accounts"
|
||||||
version = "0.3.6"
|
version = "0.3.7"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "A simple account management system for Jellyfin"
|
description = "A simple account management system for Jellyfin"
|
||||||
authors = ["Harvey Tindall <harveyltindall@gmail.com>"]
|
authors = ["Harvey Tindall <harveyltindall@gmail.com>"]
|
||||||
|
Loading…
Reference in New Issue
Block a user