Revert «Better default values for settings», because of a bug in Peertube.
This commit is contained in:
parent
e945227e36
commit
5984722880
@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## v2.2.1
|
||||
|
||||
### Fixes
|
||||
|
||||
* Revert «Better default values for settings», because of a [bug in Peertube](https://github.com/Chocobozzz/PeerTube/issues/4106)
|
||||
|
||||
## v2.2.0
|
||||
|
||||
### Features
|
||||
|
@ -56,7 +56,7 @@ Before asking for help, please use this diagnostic tool:
|
||||
name: 'chat-auto-display',
|
||||
label: 'Automatically open the chat',
|
||||
type: 'input-checkbox',
|
||||
default: true,
|
||||
default: false, // FIXME: set true when Peertube 3.2.0 is out (https://github.com/Chocobozzz/PeerTube/issues/4106)
|
||||
private: false
|
||||
})
|
||||
registerSetting({
|
||||
@ -64,20 +64,20 @@ Before asking for help, please use this diagnostic tool:
|
||||
label: 'Show the «open in new window» button',
|
||||
private: false,
|
||||
type: 'input-checkbox',
|
||||
default: true
|
||||
default: false // FIXME: set true when Peertube 3.2.0 is out (https://github.com/Chocobozzz/PeerTube/issues/4106)
|
||||
})
|
||||
registerSetting({
|
||||
name: 'chat-only-locals',
|
||||
label: 'Chats are only available for local videos.',
|
||||
type: 'input-checkbox',
|
||||
default: true,
|
||||
default: false, // FIXME: set true when Peertube 3.2.0 is out (https://github.com/Chocobozzz/PeerTube/issues/4106)
|
||||
private: false
|
||||
})
|
||||
registerSetting({
|
||||
name: 'chat-all-lives',
|
||||
label: 'Activate chat for all lives',
|
||||
type: 'input-checkbox',
|
||||
default: true,
|
||||
default: false, // FIXME: set true when Peertube 3.2.0 is out (https://github.com/Chocobozzz/PeerTube/issues/4106)
|
||||
descriptionHTML: 'If checked, a chat will be added to all lives.',
|
||||
private: false
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user