0.66: Fix 'Auto-Open Unread Msg' polarity - previously checking the box would ignore unread messages
parent
335bf9edb5
commit
67e07ec9fd
|
|
@ -9,3 +9,4 @@
|
|||
0.63: Add option to not open the first unread message
|
||||
0.64: Only load from storage once in settings
|
||||
0.65: Fix settings error introduced by two conflicting changes
|
||||
0.66: Fix 'Auto-Open Unread Msg' polarity - previously checking the box would ignore unread messages
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "messages",
|
||||
"name": "Messages",
|
||||
"version": "0.65",
|
||||
"version": "0.66",
|
||||
"description": "Library to handle, load and store message events received from Android/iOS",
|
||||
"icon": "app.png",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -60,8 +60,8 @@
|
|||
onchange: v => updateSetting("fontSize", v)
|
||||
},
|
||||
/*LANG*/'Auto-Open Unread Msg': {
|
||||
value: !!settings.ignoreUnread,
|
||||
onchange: v => updateSetting("ignoreUnread", v)
|
||||
value: !settings.ignoreUnread,
|
||||
onchange: v => updateSetting("ignoreUnread", !v)
|
||||
},
|
||||
/*LANG*/'Auto-Open Music': {
|
||||
value: !!settings.openMusic,
|
||||
|
|
|
|||
Loading…
Reference in New Issue