Fix new user defaults and bump to 0.3.9 bcs im dumb

Pushed 0.3.8 to PyPI and Docker hub thinking i'd already fixed a problem
with new user defaults. I hadn't.
This commit is contained in:
Harvey Tindall 2020-07-24 12:04:57 +01:00
parent 2e20466925
commit f2966ef810
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# Runs it!
__version__ = "0.3.7"
__version__ = "0.3.9"
import secrets
import configparser

View File

@ -651,11 +651,11 @@ document.getElementById('openDefaultsWizard').onclick = function() {
for (user of users) {
let radio = document.createElement('div');
radio.classList.add('radio');
let checked = 'checked';
if (first) {
const checked = 'checked';
first = false;
} else {
const checked = '';
checked = '';
};
radio.innerHTML =
`<label><input type="radio" name="defaultRadios" id="default_${user['name']}" style="margin-right: 1rem;" ${checked}>${user['name']}</label>`;

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "jellyfin-accounts"
version = "0.3.7"
version = "0.3.9"
readme = "README.md"
description = "A simple account management system for Jellyfin"
authors = ["Harvey Tindall <harveyltindall@gmail.com>"]