Skip to content

Commit

Permalink
Parameters as bool instead of enums (#82)
Browse files Browse the repository at this point in the history
* Parameters as bool instead of enums

Co-authored-by: madelen-at-work <[email protected]>

* Update manifest.json

fix conflict

---------

Co-authored-by: Madelen Andersson <[email protected]>
Co-authored-by: madelen-at-work <[email protected]>
  • Loading branch information
3 people authored Apr 5, 2024
1 parent 7265e79 commit cff2866
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,22 @@
{
"name": "SDCardSupport",
"default": "no",
"type": "enum:no|No, yes|Yes"
"type": "bool:no,yes"
},
{
"name": "UseTLS",
"default": "yes",
"type": "enum:no|No, yes|Yes"
"type": "bool:no,yes"
},
{
"name": "TCPSocket",
"default": "yes",
"type": "enum:no|No, yes|Yes"
"type": "bool:no,yes"
},
{
"name": "IPCSocket",
"default": "yes",
"type": "enum:no|No, yes|Yes"
"type": "bool:no,yes"
}
]
}
Expand Down

0 comments on commit cff2866

Please sign in to comment.