Fix: changing default value to false for every checkbox settings (Peertube bug in <=3.0.1).
This commit is contained in:
parent
720ce18478
commit
5f0708a942
@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.0.5
|
||||||
|
|
||||||
|
* Fix: changing default value to false for every checkbox settings (Peertube bug in <=3.0.1: https://github.com/Chocobozzz/PeerTube/issues/3838).
|
||||||
|
|
||||||
## v1.0.4
|
## v1.0.4
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
4
main.js
4
main.js
@ -30,7 +30,7 @@ async function register ({
|
|||||||
name: 'chat-only-locals',
|
name: 'chat-only-locals',
|
||||||
label: 'Chats are only available for local videos.',
|
label: 'Chats are only available for local videos.',
|
||||||
type: 'input-checkbox',
|
type: 'input-checkbox',
|
||||||
default: true,
|
default: false, // TODO: set to true when peertube has fixed https://github.com/Chocobozzz/PeerTube/issues/3838
|
||||||
private: false
|
private: false
|
||||||
})
|
})
|
||||||
registerSetting({
|
registerSetting({
|
||||||
@ -65,7 +65,7 @@ async function register ({
|
|||||||
name: 'chat-use-builtin',
|
name: 'chat-use-builtin',
|
||||||
label: 'Use builtin ConverseJS',
|
label: 'Use builtin ConverseJS',
|
||||||
type: 'input-checkbox',
|
type: 'input-checkbox',
|
||||||
default: true,
|
default: false, // TODO: set to true when peertube has fixed https://github.com/Chocobozzz/PeerTube/issues/3838
|
||||||
private: false,
|
private: false,
|
||||||
descriptionHTML: 'If checked, use a builtin ConverseJS iframe.<br>' +
|
descriptionHTML: 'If checked, use a builtin ConverseJS iframe.<br>' +
|
||||||
'You still have to configure an external XMPP service. Please see the documentation.'
|
'You still have to configure an external XMPP service. Please see the documentation.'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user