Closes #75: added infrastructure for versioning of config

This commit is contained in:
Sumner Evans
2019-12-28 12:10:46 -07:00
parent 1a31f6baa3
commit f84f97732d
4 changed files with 34 additions and 16 deletions

View File

@@ -8,7 +8,12 @@ class SettingsDialog(EditFormDialog):
title: str = 'Settings'
initial_size = (450, 250)
text_fields = [
('Port Number (will take effect on restart)', 'port_number', False),
(
'Port Number (for streaming to Chromecasts on the local network, '
'will take effect on restart)',
'port_number',
False,
),
]
boolean_fields = [
('Show headers on song lists', 'show_headers'),