[kio-extras] [Bug 345047] fish:// kioslave doesn't work if target doesn't have perl installed

2020-10-19 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=345047

--- Comment #2 from Alexandr Akulich  ---
The issue is reproducible with postmarketOS.
I proposed the fix at
https://invent.kde.org/network/kio-extras/-/merge_requests/44

-- 
You are receiving this mail because:
You are watching all bug changes.

[kio-extras] [Bug 345047] fish:// kioslave doesn't work if target doesn't have perl installed

2020-10-19 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=345047

Alexandr Akulich  changed:

   What|Removed |Added

 CC||akulichalexan...@gmail.com
 Status|REPORTED|CONFIRMED
   Assignee|trou...@garni.ch|akulichalexan...@gmail.com
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 406676] ktp-call-ui depends on unmaintained qt-gstreamer

2019-07-06 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=406676

--- Comment #2 from Alexandr Akulich  ---
Created attachment 121357
  --> https://bugs.kde.org/attachment.cgi?id=121357&action=edit
Patch for qt-gstreamer

Hi folks. I just found out this issue.
Recently I became a KDE Telepathy maintainer and though I'm not active here
(I'm busy with the underlying stuff), I'm kindly asking you to keep the project
in your repos for a bit longer.

The compilation error is caused by commit
https://gitlab.freedesktop.org/gstreamer/gstreamer/commit/b27ee943c2a44a5437a5343d21a9d2be918a1279

This commit introduces a brute C-style cast that prevents a compiler from
proper C++ casting. The workaround is trivial:

src/QGst/caps.cpp:57

 void Caps::append(const CapsPtr & caps2)
 {
-gst_caps_append(object(), gst_caps_copy(caps2));
+const GstCaps * caps2ptr = caps2;
+gst_caps_append(object(), gst_caps_copy(caps2ptr));
 }

I'll try to reach the last qt-gstreamer maintainer to upstream the fix.

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 399352] text-ui crashes on start

2019-03-04 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=399352

Alexandr Akulich  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
 CC||akulichalexan...@gmail.com

--- Comment #1 from Alexandr Akulich  ---
Hi Konstantin,

please provide the needed information, e.g. software versions, distro, and
video driver.

Personally, I have crashes and freezes on nouveau video driver because of the
used WebEngine view, but such issue is not related to KTp.

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 404350] Choosing "offline" status does not disconnect accounts

2019-03-03 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=404350

Alexandr Akulich  changed:

   What|Removed |Added

   Version Fixed In||18.12.3

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 384968] Only first 10 links in a message shown properly, additional links become copies of the 2nd link

2019-03-03 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=384968

Alexandr Akulich  changed:

   What|Removed |Added

 Resolution|--- |FIXED
   Version Fixed In||18.12.3
  Latest Commit||https://commits.kde.org/ktp
   ||-common-internals/5c77cc29d
   ||b5966a7ef227f20da8d54a264f2
   ||8746
 Status|CONFIRMED   |RESOLVED

--- Comment #3 from Alexandr Akulich  ---
Git commit 5c77cc29db5966a7ef227f20da8d54a264f28746 by Alexander Akulich.
Committed on 03/03/2019 at 22:45.
Pushed by akulichalexandr into branch 'Applications/18.12'.

Fix escape/url filter URL placeholder backward substitution

The placeholder ends with a decimal URL index. The substitution is an
incremental pass from zero index, so when the placeholder is substituted
back to URL the replacing code matches incomplete index and we got a
messed URLs.

(Replace of `#K#T#P1` messes up `#K#T#P10` and `#K#T#P11`)

Add a end marker to the placeholder scheme to never mess URL.
FIXED-IN: 18.12.3

Differential Revision: https://phabricator.kde.org/D19477

M  +1-1KTp/message-escape-filter.cpp

https://commits.kde.org/ktp-common-internals/5c77cc29db5966a7ef227f20da8d54a264f28746

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 404350] Choosing "offline" status does not disconnect accounts

2019-03-03 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=404350

Alexandr Akulich  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://commits.kde.org/ktp
   ||-contact-list/6dcdbdc872c2d
   ||8fb8e7838dcf5880c5b27b93c47

--- Comment #5 from Alexandr Akulich  ---
Git commit 6dcdbdc872c2d8fb8e7838dcf5880c5b27b93c47 by Alexander Akulich, on
behalf of Alexander Blinne.
Committed on 03/03/2019 at 22:43.
Pushed by akulichalexandr into branch 'Applications/18.12'.

Restore the "Offline" option in presence combobox

There is no valid reason to show the option but do nothing on activated.

Reviewed By: akulichalexander

M  +1-1global-presence-chooser.cpp

https://commits.kde.org/ktp-contact-list/6dcdbdc872c2d8fb8e7838dcf5880c5b27b93c47

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 404350] Choosing "offline" status does not disconnect accounts

2019-03-02 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=404350

--- Comment #3 from Alexandr Akulich  ---
(In reply to Alexander Blinne from comment #0)
> Patch at https://phabricator.kde.org/differential/diff/51686/ fixes it most
> of the time, though in some cases (10-20% of times) it will go offline and
> go back online immediately afterwards. I can't find the reason for this
> right now...

I applied your patch and the Presence starts to work but it seems that there is
some race-condition so if I switch to online and quickly go back to offline
before a Connection Manager connected then it has some chance to report "I'm
connected" before it was told to stop trying.

Would you mind to submit the fix? This patch is a definitely the right thing to
do even if the issue still reproducible.

There is no other way to fix it and I'm hitting the issue on my own so I would
like to have your fix in 18.12.3 and we have literally one day to do that as
the release tag will be made at the Monday.
If you can't submit the patch today then I would like to commit it with you as
the author and me as a committer.

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 404350] Choosing "offline" status does not disconnect accounts

2019-03-02 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=404350

Alexandr Akulich  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||akulichalexan...@gmail.com
 Status|REPORTED|CONFIRMED

--- Comment #1 from Alexandr Akulich  ---
Same here.
The patch looks good and the original code looks weird.
The return on ((index == count() - 3) introduced by
https://git.reviewboard.kde.org/r/130189/

What is the reason for the extra condition? (David, James?)

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 373117] nothing is sent

2019-03-02 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=373117

Alexandr Akulich  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 CC||akulichalexan...@gmail.com
 Status|REPORTED|RESOLVED

--- Comment #1 from Alexandr Akulich  ---
The bug report has no details e.g. what is the connection manager in use.

It could be an issue on any level of Telepathy but most probably there was
something with your CM.
I'm closing it 'as is', feel free to add more info and reopen if needed.

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 384968] Only first 10 links in a message shown properly, additional links become copies of the 2nd link

2019-03-02 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=384968

Alexandr Akulich  changed:

   What|Removed |Added

   Assignee|kde-telepathy-b...@kde.org  |akulichalexan...@gmail.com

--- Comment #2 from Alexandr Akulich  ---
https://phabricator.kde.org/D19477

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 384968] Only first 10 links in a message shown properly, additional links become copies of the 2nd link

2019-03-01 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=384968

Alexandr Akulich  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1
 CC||akulichalexan...@gmail.com

--- Comment #1 from Alexandr Akulich  ---
Still reproducible on 18.12.1 (with telepathy-morse/Telegram).

I'll try to fix it :)

-- 
You are receiving this mail because:
You are watching all bug changes.

[valgrind] [Bug 393036] New: arm: unhandled instruction: 0xEBAD 0x1BC7 (sub.w fp, sp, r7, lsl #7)

2018-04-12 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=393036

Bug ID: 393036
   Summary: arm: unhandled instruction: 0xEBAD 0x1BC7 (sub.w fp,
sp, r7, lsl #7)
   Product: valgrind
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: vex
  Assignee: jsew...@acm.org
  Reporter: akulichalexan...@gmail.com
  Target Milestone: ---

Created attachment 111968
  --> https://bugs.kde.org/attachment.cgi?id=111968&action=edit
The fix in a format for git am

I've got this failure on profiling of a QR code detector on armv7hl. The code
is generated by gcc-4.8.3.

The attached patch fixes the problem (analysis starts to work fine after the
change applied).

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 386647] After resuming from standby & reconnect, ktp-text-ui chat window and chat-plasmoid open

2017-11-10 Thread Alexandr Akulich
https://bugs.kde.org/show_bug.cgi?id=386647

Alexandr Akulich  changed:

   What|Removed |Added

 Status|UNCONFIRMED |CONFIRMED
 CC||akulichalexan...@gmail.com
 Ever confirmed|0   |1

--- Comment #3 from Alexandr Akulich  ---
The Bustle log shows that there are requests to ChannelDispatcher to
EnsureChannel with a preferred handler = TpQtRaH Telepathy client. The first
request wakes up CM, but at the time of TextChannel appearance, there is no
TpQtRaH client anymore, so the ChannelDispatcher decides to raise a default
handler, namely — ktp-text-ui.

After a discussion, it turns out that the TpQtRaH clients registered by the
Chat Plasmoid and the C++ place of registration is TelepathyQt PendingChannel
[1].

I think of the following options:
1) Change TpQt API to let the Chat Plasmoid to specify the PendingChannel
handler service name as the name of the plasmoid.
2) Change TpQt or Chat Plasmoid to "ask the ChannelDispatcher to wake up a
ConnectionManager and then ask the ConnectionManager directly to restore the
channel". In this way, we'll use [2] with your=true to suppress an automatic
handler invocation. Right now we use [3] with preferredHandler = .
2) Disable the offline account PendingChannel-related code in the Chat
Plasmoid. I have no idea how it will affect the Plasmoid functionality, but
maybe it does not make much sense to ask ChannelDispatcher to set some account
presence (to online).

[1]
https://github.com/TelepathyIM/telepathy-qt/blob/master/TelepathyQt/pending-channel.cpp#L193
[2]
https://telepathy.freedesktop.org/spec/Channel_Dispatcher.html#Method:EnsureChannel
[3]
https://telepathy.freedesktop.org/spec/Connection_Interface_Requests.html#Method:EnsureChannel

-- 
You are receiving this mail because:
You are watching all bug changes.

[telepathy] [Bug 369527] applet should color through system colors

2016-10-08 Thread Alexandr Akulich via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369527

Alexandr Akulich  changed:

   What|Removed |Added

 Status|UNCONFIRMED |CONFIRMED
 Ever confirmed|0   |1
 CC||akulichalexan...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.


[neon] [Bug 369089] Telegram/Morse not available

2016-09-19 Thread Alexandr Akulich via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=369089

--- Comment #1 from Alexandr Akulich  ---
May be this is related:
https://bugs.launchpad.net/ubuntu/+source/ktp-contact-list/+bug/1512135

-- 
You are receiving this mail because:
You are watching all bug changes.


[telepathy] [Bug 368546] Add CMake option to disable otr-proxy

2016-09-10 Thread Alexandr Akulich via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=368546

Alexandr Akulich  changed:

   What|Removed |Added

   Keywords||junior-jobs

-- 
You are receiving this mail because:
You are watching all bug changes.


[telepathy] [Bug 368546] New: Add CMake option to disable otr-proxy

2016-09-10 Thread Alexandr Akulich via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=368546

Bug ID: 368546
   Summary: Add CMake option to disable otr-proxy
   Product: telepathy
   Version: git-latest
  Platform: unspecified
OS: unspecified
Status: UNCONFIRMED
  Severity: wishlist
  Priority: NOR
 Component: common-internals
  Assignee: kde-telepathy-b...@kde.org
  Reporter: akulichalexan...@gmail.com

OTR-Proxy is a complex intermediate component of KTp, which is not really
optional in terms that if you have all dependencies, then it will be a part of
the build.
The problem that there is a bug in the component and you want to disable it,
then you have to break its dependency.


Reproducible: Always

-- 
You are receiving this mail because:
You are watching all bug changes.


[telepathy] [Bug 365990] Taskbar Entry does not work for messages in incoming chat

2016-09-08 Thread Alexandr Akulich via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365990

Alexandr Akulich  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED
 CC||akulichalexan...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.


[telepathy] [Bug 348929] Incoming and Outgoing message styles are swapped in history and scrollback.

2016-09-08 Thread Alexandr Akulich via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=348929

Alexandr Akulich  changed:

   What|Removed |Added

   Version Fixed In||16.12
 CC||akulichalexan...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.


[telepathy] [Bug 348929] Incoming and Outgoing message styles are swapped in history and scrollback.

2016-09-08 Thread Alexandr Akulich via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=348929

Alexandr Akulich  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Latest Commit||http://commits.kde.org/tele
   ||pathy-text-ui/7e429544a6f55
   ||30365c22ca5f83b4fc4e97de658
 Resolution|--- |FIXED

--- Comment #1 from Alexandr Akulich  ---
Git commit 7e429544a6f5530365c22ca5f83b4fc4e97de658 by Alexandr Akulich, on
behalf of Mariusz Glebocki.
Committed on 08/09/2016 at 21:54.
Pushed by akulichalexandr into branch 'master'.

[lib] Fix message classes for history items

Reviewed-by: Alexandr Akulich 
REVIEW: 128841

M  +2-2lib/adium-theme-message-info.cpp

http://commits.kde.org/telepathy-text-ui/7e429544a6f5530365c22ca5f83b4fc4e97de658

-- 
You are receiving this mail because:
You are watching all bug changes.


[telepathy] [Bug 361459] empty ktp-text-ui crashes

2016-08-26 Thread Alexandr Akulich via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=361459

Alexandr Akulich  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 CC||akulichalexan...@gmail.com
 Resolution|--- |FIXED

--- Comment #2 from Alexandr Akulich  ---
IMO this is fixed by the referenced commit
https://quickgit.kde.org/?p=ktp-text-ui.git&a=commit&h=5015460c6fbd9696bf482e53e7cb94b64097db12
and then fixed again by commit in TelepathyQt:
https://cgit.freedesktop.org/telepathy/telepathy-qt/commit/?id=f496b0dbc0bc293b6a6714ddaa4d542aadc60c08

Feel free to reopen if the bug is still there after both fixes applied.

-- 
You are receiving this mail because:
You are watching all bug changes.


[telepathy] [Bug 364605] Spell check window does not open

2016-08-26 Thread Alexandr Akulich via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=364605

Alexandr Akulich  changed:

   What|Removed |Added

 CC||akulichalexan...@gmail.com
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #1 from Alexandr Akulich  ---
Hi Patrick,

"Check Spelling" is "inherited" from KTextEdit, which is a part of KTextWidgets
framework, so IMO this bugreport is not actually related to ktp-text-ui, but to
underlying libraries.  Furthermore, there is no any related change in the
application since its port to KF5 and the spell check works for me and
everybody I asked, so I'm sure that there is something bad with your
installation or setup. Please check your Sonnet and Aspell/Hunspell
installation and configuration, try to reproduce the issue with a different KDE
Application and if there is any problem, then send a bug report to your
distribution first.

We can reopen the bug later, if it would make sense.

-- 
You are receiving this mail because:
You are watching all bug changes.


[telepathy] [Bug 365609] No way to set the nick name in XMPP multi-user chat (MUC)

2016-08-26 Thread Alexandr Akulich via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365609

Alexandr Akulich  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED
 CC||akulichalexan...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.