mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2025-01-18 09:28:52 +01:00
Added fixed indices setting.
This commit is contained in:
parent
a41eba1dff
commit
c13a6f88b3
@ -653,6 +653,22 @@
|
|||||||
"message": "maximal",
|
"message": "maximal",
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
|
"audiousefixedindices_title": {
|
||||||
|
"message": "Feste Indizes verwenden",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
"audiousefixedindices_description": {
|
||||||
|
"message": "Ob einige der Indizes immer vorgetäuscht werden sollen.",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
"audiofixedindices_title": {
|
||||||
|
"message": "Feste Indizes",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
"audiofixedindices_description": {
|
||||||
|
"message": "Die Indizes, die immer vorgetäuscht werden sollen. Kommasepariert eingeben.",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
|
||||||
"showReleaseNotes_title": {
|
"showReleaseNotes_title": {
|
||||||
"message": "Versionsinformationen",
|
"message": "Versionsinformationen",
|
||||||
|
@ -653,6 +653,22 @@
|
|||||||
"message": "maximal",
|
"message": "maximal",
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
|
"audiousefixedindices_title": {
|
||||||
|
"message": "Use fixed indices",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
"audiousefixedindices_description": {
|
||||||
|
"message": "If some of the used indices should be always faked.",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
"audiofixedindices_title": {
|
||||||
|
"message": "Fixed indices",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
"audiofixedindices_description": {
|
||||||
|
"message": "The indices that are always faked. Enter separated by comma.",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
|
||||||
"showReleaseNotes_title": {
|
"showReleaseNotes_title": {
|
||||||
"message": "Release notes",
|
"message": "Release notes",
|
||||||
|
@ -177,6 +177,16 @@
|
|||||||
defaultValue: "low",
|
defaultValue: "low",
|
||||||
options: ["minimal", "low", "medium", "high", "maximal"]
|
options: ["minimal", "low", "medium", "high", "maximal"]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "audioUseFixedIndices",
|
||||||
|
defaultValue: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "audioFixedIndices",
|
||||||
|
defaultValue: function(){
|
||||||
|
return Math.floor(Math.random() * 30).toString(10);
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "displayAdvancedSettings",
|
name: "displayAdvancedSettings",
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
|
@ -328,6 +328,40 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "audioUseFixedIndices",
|
||||||
|
"displayDependencies": [
|
||||||
|
{
|
||||||
|
"blockMode": ["fakeReadout", "fakeInput"],
|
||||||
|
"protectAudio": [true],
|
||||||
|
"displayAdvancedSettings": [true]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blockMode": ["askReadout", "ask", "allow"],
|
||||||
|
"askDenyMode": ["fake"],
|
||||||
|
"protectAudio": [true],
|
||||||
|
"displayAdvancedSettings": [true]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "audioFixedIndices",
|
||||||
|
"displayDependencies": [
|
||||||
|
{
|
||||||
|
"audioUseFixedIndices": [true],
|
||||||
|
"blockMode": ["fakeReadout", "fakeInput"],
|
||||||
|
"protectAudio": [true],
|
||||||
|
"displayAdvancedSettings": [true]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"audioUseFixedIndices": [true],
|
||||||
|
"blockMode": ["askReadout", "ask", "allow"],
|
||||||
|
"askDenyMode": ["fake"],
|
||||||
|
"protectAudio": [true],
|
||||||
|
"displayAdvancedSettings": [true]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"misc",
|
"misc",
|
||||||
{
|
{
|
||||||
"name": "showReleaseNotes"
|
"name": "showReleaseNotes"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user