Skip to content

Commit

Permalink
Current version of Psi+ is 1.5.2040
Browse files Browse the repository at this point in the history
It is based on:
* psi: b98f3936
* plugins: 347230b
* psimedia: 478567e
* resources: e32ef4b
  • Loading branch information
tehnick committed Jul 17, 2024
1 parent 4bf5e78 commit 436db21
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion options/default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ QLineEdit#le_status_text {
<assign-custom-avatar type="QKeySequence" comment="Assign a custom avatar to the selected contact"/>
<clear-custom-avatar type="QKeySequence" comment="Remove custom avatar from the selected contact"/>
<delete type="QKeySequence" comment="Delete the selected contact">Shift+Del</delete>
<chat type="QKeySequence" comment="Open a chat to the selected contact">Ctrl+C</chat>
<chat type="QKeySequence" comment="Open a chat to the selected contact"></chat>
<message type="QKeySequence" comment="Send a message to the selected contact">Ctrl+M</message>
<event type="QKeySequence" comment="Receive incoming event">Ctrl+R</event>
<rename type="QKeySequence" comment="Rename the selected contact">F2</rename>
Expand Down
2 changes: 1 addition & 1 deletion qa/integration/psi-data/profiles/default/options.xml
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@
<clear-custom-avatar type="QKeySequence" comment="Remove custom avatar from the selected contact"></clear-custom-avatar>
<message type="QKeySequence" comment="Send a message to the selected contact">Ctrl+M</message>
<event type="QKeySequence" comment="Receive incoming event">Ctrl+R</event>
<chat type="QKeySequence" comment="Open a chat to the selected contact">Ctrl+C</chat>
<chat type="QKeySequence" comment="Open a chat to the selected contact"></chat>
<assign-custom-avatar type="QKeySequence" comment="Assign a custom avatar to the selected contact"></assign-custom-avatar>
<delete type="QKeySequence" comment="Delete the selected contact">Del</delete>
<login-transport type="QKeySequence" comment="Log on to the selected transport">Ctrl+L</login-transport>
Expand Down
2 changes: 1 addition & 1 deletion src/msgmle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ void ChatEdit::insertAsQuote(const QString &text)
QString prevLine = toPlainText().left(pos - 1);
prevLine = prevLine.mid(prevLine.lastIndexOf("\n") + 1);

auto sym = QChar::fromLatin1(0xBB); // closing double quote
auto sym = QChar::fromLatin1(0x3E); // closing double quote
QString quote = sym + ' ' + text;
quote.replace("\n", QStringLiteral("\n%1 ").arg(sym));

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.2039 (2024-07-11, 449720c1)
1.5.2040 (2024-07-17, b98f3936)

0 comments on commit 436db21

Please sign in to comment.