Improve some texts
This commit is contained in:
parent
564ad4fa8f
commit
c76ebe4fe2
|
@ -14,7 +14,7 @@ Qt 5.12+, including:
|
||||||
|
|
||||||
- olm-python3 >= 3.1
|
- olm-python3 >= 3.1
|
||||||
|
|
||||||
[pyotherside](https://github.com/thp/pyotherside):
|
Install [pyotherside](https://github.com/thp/pyotherside):
|
||||||
|
|
||||||
git clone https://github.com/thp/pyotherside
|
git clone https://github.com/thp/pyotherside
|
||||||
cd pyotherside
|
cd pyotherside
|
||||||
|
@ -25,13 +25,13 @@ After this, verify the permissions of the installed plugin files.
|
||||||
sudo chmod 644 /usr/lib/qt5/qml/io/thp/pyotherside/*
|
sudo chmod 644 /usr/lib/qt5/qml/io/thp/pyotherside/*
|
||||||
sudo chmod 755 /usr/lib/qt5/qml/io/thp/pyotherside/*.so
|
sudo chmod 755 /usr/lib/qt5/qml/io/thp/pyotherside/*.so
|
||||||
|
|
||||||
Dependencies on Pypi:
|
Install the dependencies from Pypi:
|
||||||
|
|
||||||
pip3 install --user --upgrade \
|
pip3 install --user --upgrade \
|
||||||
Pillow aiofiles dataclasses filetype hsluv html_sanitizer \
|
Pillow aiofiles dataclasses filetype hsluv html_sanitizer \
|
||||||
lxml mistune uvloop
|
lxml mistune uvloop
|
||||||
|
|
||||||
Dependencies on Github (most recent version needed):
|
Install the dependencies from Github:
|
||||||
|
|
||||||
[matrix-nio](https://github.com/mirukan/matrix-nio):
|
[matrix-nio](https://github.com/mirukan/matrix-nio):
|
||||||
|
|
||||||
|
|
1
TODO.md
1
TODO.md
|
@ -11,6 +11,7 @@
|
||||||
- When qml syntax highlighting supports ES6 string interpolation, use them
|
- When qml syntax highlighting supports ES6 string interpolation, use them
|
||||||
|
|
||||||
- Fixes
|
- Fixes
|
||||||
|
- (Left?)Banner binding loop
|
||||||
- Reloading config files (cache)
|
- Reloading config files (cache)
|
||||||
- Ignore @ when filtering members
|
- Ignore @ when filtering members
|
||||||
- Tiny invisible scrollbar
|
- Tiny invisible scrollbar
|
||||||
|
|
|
@ -112,7 +112,6 @@ class Event(ModelItem):
|
||||||
# Local echoes always stay first.
|
# Local echoes always stay first.
|
||||||
if self.is_local_echo and not other.is_local_echo:
|
if self.is_local_echo and not other.is_local_echo:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if other.is_local_echo and not self.is_local_echo:
|
if other.is_local_echo and not self.is_local_echo:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
|
@ -20,8 +20,8 @@ HColumnLayout {
|
||||||
HLabel {
|
HLabel {
|
||||||
wrapMode: Text.Wrap
|
wrapMode: Text.Wrap
|
||||||
text: qsTr(
|
text: qsTr(
|
||||||
"The decryption keys for the messages you received in " +
|
"The decryption keys for messages you received in encrypted " +
|
||||||
"encrypted rooms can be exported to a file.%1" +
|
"rooms can be exported to a passphrase-protected file.%1" +
|
||||||
"You will then be able to import this file in another " +
|
"You will then be able to import this file in another " +
|
||||||
"Matrix client."
|
"Matrix client."
|
||||||
).arg(pageStack.isWide ? "\n" :"\n\n")
|
).arg(pageStack.isWide ? "\n" :"\n\n")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user