Use a text area instead of field for room topic
This commit is contained in:
parent
76f0c5626f
commit
6772f14c24
|
@ -44,6 +44,9 @@ and this project adheres to
|
||||||
- Improve the error messages shown when trying to start a direct chat with or
|
- Improve the error messages shown when trying to start a direct chat with or
|
||||||
invite a non-existing user
|
invite a non-existing user
|
||||||
|
|
||||||
|
- In room settings or creation, use a text area for the topic instead of a
|
||||||
|
field limited to a single line
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
- Removed delay when multiple rooms are removed/hidden from the list.
|
- Removed delay when multiple rooms are removed/hidden from the list.
|
||||||
|
|
4
TODO.md
4
TODO.md
|
@ -1,5 +1,6 @@
|
||||||
# TODO
|
# TODO
|
||||||
|
|
||||||
|
- fields/areas defaultText not updating when unchanged
|
||||||
- fix cursor over field
|
- fix cursor over field
|
||||||
- update room highlight when creating new room
|
- update room highlight when creating new room
|
||||||
- keyerror when forgetting room while loading members
|
- keyerror when forgetting room while loading members
|
||||||
|
@ -22,8 +23,6 @@
|
||||||
- Don't send typing notification when switching to a room where the composer
|
- Don't send typing notification when switching to a room where the composer
|
||||||
has loaded text
|
has loaded text
|
||||||
|
|
||||||
- SSL error on python 3.7
|
|
||||||
|
|
||||||
- Jumping between accounts (clicking in account bar or alt+(Shift+)N) is
|
- Jumping between accounts (clicking in account bar or alt+(Shift+)N) is
|
||||||
laggy with hundreds of rooms in between
|
laggy with hundreds of rooms in between
|
||||||
- On startup, if a room's last event is a membership change,
|
- On startup, if a room's last event is a membership change,
|
||||||
|
@ -66,7 +65,6 @@
|
||||||
URL in browser
|
URL in browser
|
||||||
- Make rooms fully manageable within Mirage: settings, permissions, unban
|
- Make rooms fully manageable within Mirage: settings, permissions, unban
|
||||||
|
|
||||||
- Labeled text area component, use it for room creation/settings topic
|
|
||||||
- Linkify URLs in topic text areas
|
- Linkify URLs in topic text areas
|
||||||
|
|
||||||
- Expand the room pane if it's currently too small to show room settings
|
- Expand the room pane if it's currently too small to show room settings
|
||||||
|
|
|
@ -22,7 +22,7 @@ HBox {
|
||||||
|
|
||||||
const args = [
|
const args = [
|
||||||
nameField.item.text,
|
nameField.item.text,
|
||||||
topicField.item.text,
|
topicArea.item.text,
|
||||||
publicCheckBox.checked,
|
publicCheckBox.checked,
|
||||||
encryptCheckBox.checked,
|
encryptCheckBox.checked,
|
||||||
! blockOtherServersCheckBox.checked,
|
! blockOtherServersCheckBox.checked,
|
||||||
|
@ -41,7 +41,7 @@ HBox {
|
||||||
|
|
||||||
cancel: button => {
|
cancel: button => {
|
||||||
nameField.item.text = ""
|
nameField.item.text = ""
|
||||||
topicField.item.text = ""
|
topicArea.item.text = ""
|
||||||
publicCheckBox.checked = false
|
publicCheckBox.checked = false
|
||||||
encryptCheckBox.checked = false
|
encryptCheckBox.checked = false
|
||||||
blockOtherServersCheckBox.checked = false
|
blockOtherServersCheckBox.checked = false
|
||||||
|
@ -86,12 +86,12 @@ HBox {
|
||||||
}
|
}
|
||||||
|
|
||||||
HLabeledItem {
|
HLabeledItem {
|
||||||
id: topicField
|
id: topicArea
|
||||||
label.text: qsTr("Topic:")
|
label.text: qsTr("Topic:")
|
||||||
|
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
||||||
HTextField {
|
HTextArea {
|
||||||
width: parent.width
|
width: parent.width
|
||||||
placeholderText: qsTr("This room is about...")
|
placeholderText: qsTr("This room is about...")
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ HBox {
|
||||||
}
|
}
|
||||||
|
|
||||||
nameField.item.reset()
|
nameField.item.reset()
|
||||||
topicField.item.reset()
|
topicArea.item.reset()
|
||||||
encryptCheckBox.reset()
|
encryptCheckBox.reset()
|
||||||
requireInviteCheckbox.reset()
|
requireInviteCheckbox.reset()
|
||||||
forbidGuestsCheckBox.reset()
|
forbidGuestsCheckBox.reset()
|
||||||
|
@ -49,7 +49,7 @@ HBox {
|
||||||
property var saveFuture: null
|
property var saveFuture: null
|
||||||
|
|
||||||
readonly property bool anyChange:
|
readonly property bool anyChange:
|
||||||
nameField.item.changed || topicField.item.changed ||
|
nameField.item.changed || topicArea.item.changed ||
|
||||||
encryptCheckBox.changed || requireInviteCheckbox.changed ||
|
encryptCheckBox.changed || requireInviteCheckbox.changed ||
|
||||||
forbidGuestsCheckBox.changed
|
forbidGuestsCheckBox.changed
|
||||||
|
|
||||||
|
@ -85,12 +85,12 @@ HBox {
|
||||||
}
|
}
|
||||||
|
|
||||||
HLabeledItem {
|
HLabeledItem {
|
||||||
id: topicField
|
id: topicArea
|
||||||
label.text: qsTr("Topic:")
|
label.text: qsTr("Topic:")
|
||||||
|
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
||||||
HTextField {
|
HTextArea {
|
||||||
width: parent.width
|
width: parent.width
|
||||||
placeholderText: qsTr("This room is about...")
|
placeholderText: qsTr("This room is about...")
|
||||||
defaultText: chat.roomInfo.plain_topic
|
defaultText: chat.roomInfo.plain_topic
|
||||||
|
|
Loading…
Reference in New Issue
Block a user