'Except Archives from Encryption' -> 'Exempt Archives from Encryption'

This commit is contained in:
ccd0 2015-08-08 16:43:21 -07:00
parent 0a1b8b0f10
commit b219642f6d
2 changed files with 7 additions and 2 deletions

View File

@ -39,7 +39,7 @@ Config =
true
'Enable reporting posts to supported archives.'
]
'Except Archives from Encryption': [
'Exempt Archives from Encryption': [
false
'Permit loading content from, and warningless redirects to, HTTP-only archives from HTTPS pages.'
]

View File

@ -52,6 +52,9 @@ Main =
Conf['selectedArchives'] = {}
Conf['cooldowns'] = {}
# XXX old key names
Conf['Except Archives from Encryption'] = false
# Get saved values as items
items = {}
items[key] = undefined for key of Conf
@ -86,7 +89,9 @@ Main =
if compareString < '00001.00011.00008.00000'
unless items['Fixed Thread Watcher']?
items2['Fixed Thread Watcher'] = items['Toggleable Thread Watcher'] ? true
items2['Fixed Thread Watcher'] = items['Toggleable Thread Watcher'] ? true
unless items['Exempt Archives from Encryption']?
items2['Exempt Archives from Encryption'] = items['Except Archives from Encryption'] ? false
$.extend items, items2
$.set items2, ->