[dolphin] [Bug 477260] No compress/decompress in the context menu

2024-08-05 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=477260

Thomas Bertels  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 Resolution|--- |WORKSFORME
 CC||tbert...@gmail.com

--- Comment #5 from Thomas Bertels  ---
Is this still reproduceable?

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

[dolphin] [Bug 430901] Dolphin freezes after right clicking on a file

2024-07-23 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=430901

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com

--- Comment #4 from Thomas Bertels  ---
According to the timeout (25 seconds), it looks like it's related to a DBus
call (https://doc.qt.io/qt-6/qdbusabstractinterface.html#setTimeout).

Here's a backtrace with a similar freeze related to KDE Connect.
Note that void QDBusPendingReply::waitForFinished() can't set a lower timeout
(https://doc.qt.io/qt-6/qdbuspendingreply.html#waitForFinished).

Maybe something like
 QTimer::singleShot(timeout, this, ::updateCaption);
could be used to avoid this freeze
(https://doc.qt.io/qt-6/qtimer.html#details).

Thread 1 "dolphin" received signal SIGINT, Interrupt.
0x75aa34e9 in __futex_abstimed_wait_common64 (private=0,
futex_word=0x56542390, expected=0, op=393, abstime=0x0, cancel=true) at
futex-internal.c:57
57  return INTERNAL_SYSCALL_CANCEL (futex_time64, futex_word, op,
expected,
(gdb) bt
#0  0x75aa34e9 in __futex_abstimed_wait_common64 (private=0,
futex_word=0x56542390, expected=0, op=393, abstime=0x0, cancel=true) at
futex-internal.c:57
#1  __futex_abstimed_wait_common (futex_word=futex_word@entry=0x56542390,
expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, 
private=private@entry=0, cancel=cancel@entry=true) at futex-internal.c:87
#2  0x75aa356f in __GI___futex_abstimed_wait_cancelable64
(futex_word=futex_word@entry=0x56542390, expected=expected@entry=0,
clockid=clockid@entry=0, 
abstime=abstime@entry=0x0, private=private@entry=0) at futex-internal.c:139
#3  0x75aa5ed9 in __pthread_cond_wait_common (cond=0x56542368,
mutex=, clockid=0, abstime=0x0) at pthread_cond_wait.c:503
#4  ___pthread_cond_wait (cond=0x56542368, mutex=) at
pthread_cond_wait.c:618
#5  0x756ce120 in QWaitConditionPrivate::wait (this=0x56542340,
deadline=...)
at
/usr/src/debug/qt6-base/qtbase/src/corelib/thread/qwaitcondition_unix.cpp:102
#6  QWaitCondition::wait (this=this@entry=0x558ca030,
mutex=mutex@entry=0x558ca028, deadline=...)
at
/usr/src/debug/qt6-base/qtbase/src/corelib/thread/qwaitcondition_unix.cpp:180
#7  0x76ee9534 in QDBusPendingCallPrivate::waitForFinished
(this=0x558c9fe0) at
/usr/src/debug/qt6-base/qtbase/src/dbus/qdbuspendingcall.cpp:206
#8  0x76ee9651 in QDBusPendingCall::waitForFinished
(this=this@entry=0x7fffbc98) at
/usr/src/debug/qt6-base/qtbase/src/dbus/qdbuspendingcall.cpp:325
#9  0x7fffd4018713 in SendFileItemAction::actions (this=0x56f76ac0,
fileItemInfos=..., parentWidget=0x557fa270)
at
/usr/src/debug/kdeconnect/kdeconnect-kde-24.05.2/fileitemactionplugin/sendfileitemaction.cpp:45
#10 0x77c64e84 in KFileItemActionsPrivate::addPluginActionsTo(QMenu*,
QMenu*, QList const&) [clone .isra.0] (this=0x557f6330, 
mainMenu=0x7fffe000f1d0, actionsMenu=0x7fffe000f1d0, excludeList=...) at
/usr/src/debug/kio/kio-6.3.0/src/widgets/kfileitemactions.cpp:583
#11 0x555c5d2f in DolphinContextMenu::addAdditionalActions
(this=this@entry=0x7fffe000f1d0, props=...)
at /usr/src/debug/dolphin/dolphin-24.05.2/src/dolphincontextmenu.cpp:467
#12 0x555c9917 in DolphinContextMenu::addItemContextMenu
(this=0x7fffe000f1d0) at
/usr/src/debug/dolphin/dolphin-24.05.2/src/dolphincontextmenu.cpp:256
#13 DolphinContextMenu::addAllActions (this=0x7fffe000f1d0) at
/usr/src/debug/dolphin/dolphin-24.05.2/src/dolphincontextmenu.cpp:94
#14 DolphinContextMenu::DolphinContextMenu (this=,
parent=, fileInfo=..., selectedItems=..., baseUrl=..., 
fileItemActions=, this=, parent=, fileInfo=..., selectedItems=..., baseUrl=..., fileItemActions=)
at /usr/src/debug/dolphin/dolphin-24.05.2/src/dolphincontextmenu.cpp:54
#15 0x555a7fbf in DolphinMainWindow::openContextMenu
(this=0x557fa270, pos=..., item=..., selectedItems=..., url=...)
at /usr/src/debug/dolphin/dolphin-24.05.2/src/dolphinmainwindow.cpp:1405

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

[dolphin] [Bug 437382] Recent locations and recent files are broken in Dolphin

2024-07-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=437382

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com

--- Comment #11 from Thomas Bertels  ---
About the sorting problem, it may be because Dolphin uses the file / folder
access time from the filesystem.
And if the fstab is configured to noatime, the access time may be as old as the
creation time.

So I suggest always using the time from the DB for the recent locations and
files access time unless the access time from the filesystem is newer.

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

[dolphin] [Bug 437576] Recent Files/Locations page shows wrong description

2024-07-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=437576

Thomas Bertels  changed:

   What|Removed |Added

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

--- Comment #2 from Thomas Bertels  ---
I can't reproduce with Dolphin 24.05.2 on Manjaro.
Marking as WORSKFORME. Feel free to reopen if you can still reproduce.

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

[kactivitymanagerd] [Bug 397487] Cannot disable activity tracking and history not deleted

2024-07-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=397487

Thomas Bertels  changed:

   What|Removed |Added

 CC||vexxed...@gmail.com

--- Comment #17 from Thomas Bertels  ---
*** Bug 478665 has been marked as a duplicate of this bug. ***

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

[systemsettings] [Bug 478665] Can't disable recently used files.

2024-07-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=478665

Thomas Bertels  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #6 from Thomas Bertels  ---
I can't reproduce on Plasma 6.0.
The apply button works fine right now on Manjaro.

*** This bug has been marked as a duplicate of bug 397487 ***

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

[kactivitymanagerd] [Bug 397487] Cannot disable activity tracking and history not deleted

2024-07-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=397487

Thomas Bertels  changed:

   What|Removed |Added

   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=478665

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

[systemsettings] [Bug 478665] Can't disable recently used files.

2024-07-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=478665

Thomas Bertels  changed:

   What|Removed |Added

   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=397487
 CC||tbert...@gmail.com

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

[www.kde.org] [Bug 490399] Add breadcrumbs to all announcements

2024-07-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=490399

--- Comment #3 from Thomas Bertels  ---
Created attachment 171736
  --> https://bugs.kde.org/attachment.cgi?id=171736=edit
Miscellaneous announcement with standard breadcrumb

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

[www.kde.org] [Bug 490399] Add breadcrumbs to all announcements

2024-07-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=490399

--- Comment #2 from Thomas Bertels  ---
Created attachment 171735
  --> https://bugs.kde.org/attachment.cgi?id=171735=edit
Frameworks huge header and breadcrumb

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

[www.kde.org] [Bug 490399] Add breadcrumbs to all announcements

2024-07-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=490399

--- Comment #1 from Thomas Bertels  ---
Created attachment 171734
  --> https://bugs.kde.org/attachment.cgi?id=171734=edit
Gear (no breadcrumb)

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

[www.kde.org] [Bug 490399] New: Add breadcrumbs to all announcements

2024-07-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=490399

Bug ID: 490399
   Summary: Add breadcrumbs to all announcements
Classification: Websites
   Product: www.kde.org
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: general
  Assignee: kde-...@kde.org
  Reporter: tbert...@gmail.com
  Target Milestone: ---

Created attachment 171733
  --> https://bugs.kde.org/attachment.cgi?id=171733=edit
Plasma bugfix breadcrumb

SUMMARY

Right now, only Plasma Bugfix Releases and Frameworks Releases have a
breadcrumb.
Examples:
https://kde.org/announcements/plasma/6/6.1.3/
https://kde.org/announcements/frameworks/6/6.4.0/

Gear releases for example don't have a breadcrumb:
https://kde.org/announcements/gear/24.05.2/

All announcements (apart maybe from major Plasma releases?) should have a
breadcrumb.
A standard breadcrumb for all announcements like the one for the Plasma Bugfix
Releases would probably be a good idea.

Note that the header of Frameworks releases should probably be slightly
reduced.

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

[partitionmanager] [Bug 441916] Partition Manager crashed while shrinking ntfs partition (Crash in PartWidget::paintEvent)

2024-07-09 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=441916

Thomas Bertels  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/syst
   ||em/kpmcore/-/commit/bfe349a
   ||8f813e0eae3aa75cc5f6678faff
   ||0acac3

--- Comment #20 from Thomas Bertels  ---
Git commit bfe349a8f813e0eae3aa75cc5f6678faff0acac3 by Thomas Bertels.
Committed on 09/07/2024 at 12:48.
Pushed by stikonas into branch 'master'.

Check if fileSystem pointer is nullptr before trying to read its type

M  +3-0src/core/partition.h
M  +1-1src/gui/partwidget.cpp

https://invent.kde.org/system/kpmcore/-/commit/bfe349a8f813e0eae3aa75cc5f6678faff0acac3

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

[systemsettings] [Bug 487194] Crash on close while in SDDM settings

2024-05-18 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=487194

Thomas Bertels  changed:

   What|Removed |Added

Summary|Crash on close  |Crash on close while in
   ||SDDM settings

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

[systemsettings] [Bug 487194] New: Crash on close

2024-05-18 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=487194

Bug ID: 487194
   Summary: Crash on close
Classification: Applications
   Product: systemsettings
   Version: 6.0.4
  Platform: Manjaro
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: generic-crash
  Assignee: plasma-b...@kde.org
  Reporter: tbert...@gmail.com
  Target Milestone: ---

Application: systemsettings (6.0.4)

Qt Version: 6.7.0
Frameworks Version: 6.1.0
Operating System: Linux 6.6.30-2-MANJARO x86_64
Windowing System: Wayland
Distribution: Manjaro Linux
DrKonqi: 6.0.4 [CoredumpBackend]

-- Information about the crash:
To reproduce:
* Open Settings manager
* Search for "session"
* Open SDDM settings
* Click on "Behavior" at the top
* Close Settings manager and don't save settings when asked

The crash can be reproduced every time.

-- Backtrace (Reduced):
#4  0x7f7b6e2fa86d in KPageWidget::currentPage() const () at
/usr/lib/libKF6WidgetsAddons.so.6
#5  0x7f7b6eb64cc8 in operator() (__closure=0x555711a79320) at
/usr/src/debug/systemsettings/systemsettings-6.0.4/core/ModuleView.cpp:282
#8  QtPrivate::QCallableObject, QtPrivate::List<>, void>::impl(int,
QtPrivate::QSlotObjectBase *, QObject *, void **, bool *) (which=, this_=0x555711a79310, r=, a=,
ret=) at /usr/include/qt6/QtCore/qobjectdefs_impl.h:555
#9  0x7f7b6bd9b57f in QtPrivate::QSlotObjectBase::call (a=0x7ffc96ccb918,
r=0x555710df2800, this=0x555711a79310, this=, r=,
a=) at
/usr/src/debug/qt6-base/qtbase/src/corelib/kernel/qobjectdefs_impl.h:469
#10 doActivate (sender=0x555711941d60, signal_index=5,
argv=0x7ffc96ccb918) at
/usr/src/debug/qt6-base/qtbase/src/corelib/kernel/qobject.cpp:4078


Reported using DrKonqi

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

[systemdgenie] [Bug 487148] New: SystemdGenie unresponsive (hangs) while refreshing after enabling/disabling or starting/stopping a system unit

2024-05-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=487148

Bug ID: 487148
   Summary: SystemdGenie unresponsive (hangs) while refreshing
after enabling/disabling or starting/stopping a system
unit
Classification: Plasma
   Product: systemdgenie
   Version: unspecified
  Platform: Manjaro
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: rthoms...@gmail.com
  Reporter: tbert...@gmail.com
  Target Milestone: ---

SUMMARY

SystemdGenie hangs while refreshing the list after enabling/disabling or
starting/stopping a system unit.

STEPS TO REPRODUCE
1. Open SystemdGenie
2. Check the boxes to show inactive and unloaded
3. Enable a system unit
3. (alternative way) open a console and enter the command "systemctl status
[unit name]"

OBSERVED RESULT

SystemdGenie hangs.

EXPECTED RESULT

SystemdGenie updates quickly the status of the enabled unit.

SOFTWARE/OS VERSIONS
SystemdGenie: 0.99.0
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0

ADDITIONAL INFORMATION

The systemd process cpu usage jumps to 100% while SystemdGenie hangs.

systemctl status [unit name] shows quickly the updated unit status.
That same command also hangs SystemdGenie if it wasn't already so.

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

[dolphin] [Bug 464919] Dolphin cannot read anon_inodes

2024-05-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=464919

Thomas Bertels  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #2 from Thomas Bertels  ---
-> NEEDSINFO

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

[dolphin] [Bug 464919] Dolphin cannot read anon_inodes

2024-05-17 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=464919

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com

--- Comment #1 from Thomas Bertels  ---
Is this still reproduceable?
This may have been fixed by
https://invent.kde.org/frameworks/kio/-/merge_requests/1237

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

[partitionmanager] [Bug 462103] System can fall asleep/suspend while job is in progress causing job to fail midway with data loss potential

2024-05-01 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=462103

Thomas Bertels  changed:

   What|Removed |Added

 CC||jakefinl...@gmail.com

--- Comment #3 from Thomas Bertels  ---
*** Bug 479000 has been marked as a duplicate of this bug. ***

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

[partitionmanager] [Bug 479000] Device going to sleep during Partition manager operation

2024-05-01 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=479000

Thomas Bertels  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||tbert...@gmail.com
 Resolution|--- |DUPLICATE

--- Comment #2 from Thomas Bertels  ---


*** This bug has been marked as a duplicate of bug 462103 ***

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

[partitionmanager] [Bug 472159] Partition Manager does not disable suspension (sleep) mode while executing a task, which can cause data loss

2024-05-01 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=472159

Thomas Bertels  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED
 CC||tbert...@gmail.com

--- Comment #1 from Thomas Bertels  ---
This is really needed.

*** This bug has been marked as a duplicate of bug 462103 ***

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

[partitionmanager] [Bug 462103] System can fall asleep/suspend while job is in progress causing job to fail midway with data loss potential

2024-05-01 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=462103

Thomas Bertels  changed:

   What|Removed |Added

 CC||bna...@gmail.com

--- Comment #2 from Thomas Bertels  ---
*** Bug 472159 has been marked as a duplicate of this bug. ***

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

[okular] [Bug 456225] Rescaling of text is ugly when zooming in or out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225

Thomas Bertels  changed:

   What|Removed |Added

Summary|Rescaling of text is ugly   |Rescaling of text is ugly
   |when zooming in our out |when zooming in or out

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

[okular] [Bug 456225] Rescaling of text is ugly when zooming in our out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225

Thomas Bertels  changed:

   What|Removed |Added

   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=437401

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

[okular] [Bug 437401] Jagged freehand annotations when using a high-resolution stylus

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=437401

Thomas Bertels  changed:

   What|Removed |Added

   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=456225
 CC||tbert...@gmail.com

--- Comment #17 from Thomas Bertels  ---
Probably related to bug 456225, Okular doesn't use interpolation for text and
images.

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

[okular] [Bug 456225] Rescaling of text is ugly when zooming in our out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225

--- Comment #4 from Thomas Bertels  ---
*** Bug 473470 has been marked as a duplicate of this bug. ***

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

[okular] [Bug 473470] Zooming results in ugly text

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=473470

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com
 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #1 from Thomas Bertels  ---


*** This bug has been marked as a duplicate of bug 456225 ***

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

[okular] [Bug 456225] Rescaling of text is ugly when zooming in our out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com

--- Comment #3 from Thomas Bertels  ---
The problem is that Okular doesn't use any interpolation while zooming in or
out. When the zooming is done, the text then gets re-rendered.
This can be easily reproduced by zooming in or out using Ctrl+mouse wheel.

Lanczos 3 or 4  should be used when zooming in or out.
An option could be added to select bilinear for slower computers.

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

[partitionmanager] [Bug 476054] Always set the "nofail" flag for manually created mountpoints?

2024-04-04 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=476054

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com

--- Comment #5 from Thomas Bertels  ---
The are was a typo in the commit and the merge request, obviously, it's:

Enable nofail by default *except* for / and /home

Enable nofail by default *except* when the mount point is / or /home

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

[buildsystem] [Bug 483781] kde-builder Runtime Error: Invalid variable qt-install-dir

2024-03-30 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=483781

Thomas Bertels  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|REPORTED|RESOLVED

--- Comment #1 from Thomas Bertels  ---
Works fine with the latest version.

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

[okular] [Bug 483891] New: Feature Request: Exit with last tab

2024-03-18 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=483891

Bug ID: 483891
   Summary: Feature Request: Exit with last tab
Classification: Applications
   Product: okular
   Version: 23.08.5
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: okular-de...@kde.org
  Reporter: tbert...@gmail.com
  Target Milestone: ---

SUMMARY

Okular should have an option to close itself with the last closed tab.


STEPS TO REPRODUCE
1. Open a file with Okular
2. Close the tab (CTRL+W or File > Close)

OBSERVED RESULT

Okular closes the file then stays opened.

EXPECTED RESULT

Okular closes itself.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 5.27.11
KDE Frameworks Version: 5.115.0
Qt Version: 5.15.12

ADDITIONAL INFORMATION

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

[buildsystem] [Bug 483781] New: kde-builder Runtime Error: Invalid variable qt-install-dir

2024-03-16 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=483781

Bug ID: 483781
   Summary: kde-builder Runtime Error: Invalid variable
qt-install-dir
Classification: Developer tools
   Product: buildsystem
   Version: unspecified
  Platform: Manjaro
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: neund...@kde.org
  Reporter: tbert...@gmail.com
  Target Milestone: ---

SUMMARY

STEPS TO REPRODUCE
1. Install kde-builder-git from AUR
2. Run kde-builder --install-distro-packages
3. Run kde-builder --generate-config
4. Run kde-builder partitionmanager

OBSERVED RESULT

<<<  PACKAGES SUCCESSFULLY BUILT  >>>
Built 38 modules

kdesrc-build encountered an exceptional error condition:
 
Runtime Error: Invalid variable qt-install-dir
 
Can't continue, so stopping now.


Traceback (most recent call last):
  File "/usr/share/kde-builder/kde-builder", line 60, in 
result = app.runAllModulePhases()
 
  File "/usr/share/kde-builder/ksblib/Application.py", line 652, in
runAllModulePhases
Application._installCustomSessionDriver(ctx)
  File "/usr/share/kde-builder/ksblib/Application.py", line 1662, in
_installCustomSessionDriver
Application._installCustomFile(ctx, envScript,
f"{destDir}/kde-env-master.sh", "kde-env-master-digest")
  File "/usr/share/kde-builder/ksblib/Application.py", line 1616, in
_installCustomFile
Application._installTemplatedFile(sourceFilePath, destFilePath, ctx)
  File "/usr/share/kde-builder/ksblib/Application.py", line 1573, in
_installTemplatedFile
line = re.sub(pattern, repl(), line)  # Replace all matching expressions,
use extended regexp with comments, and replacement is Python code to execute.
   ^^
  File "/usr/share/kde-builder/ksblib/Application.py", line 1571, in repl
return ctx.getOption(match.group(1)) or
BuildException.croak_runtime(f"Invalid variable {match.group(1)}")
   
^^
  File "/usr/share/kde-builder/ksblib/BuildException.py", line 66, in
croak_runtime
raise BuildException.make_exception("Runtime", msg, 1)
ksblib.BuildException.BuildException: Runtime Error: Invalid variable
qt-install-dir


EXPECTED RESULT

No error

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 5.27.11
KDE Frameworks Version: 5.115.0
Qt Version: 5.15.12

ADDITIONAL INFORMATION

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

[kdesrc-build] [Bug 481752] kdesrc-build exits when --initial-setup on first setup (on arch linux)

2024-02-27 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=481752

--- Comment #5 from Thomas Bertels  ---
@duha: You marked it as fixed, does this mean the workaround isn't needed
anymore?

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

[systemsettings] [Bug 429002] Search box when choosing the printer driver

2024-02-27 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=429002

Thomas Bertels  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED
   Version Fixed In||6

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

[systemsettings] [Bug 429002] Search box when choosing the printer driver

2024-02-27 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=429002

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com

--- Comment #1 from Thomas Bertels  ---
It should be fixed in Plasma 6, thanks to
https://invent.kde.org/plasma/print-manager/-/merge_requests/63
See also https://invent.kde.org/plasma/print-manager/-/issues/2/

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

[kdesrc-build] [Bug 481752] kdesrc-build exits when --initial-setup on first setup (on arch linux)

2024-02-26 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=481752

--- Comment #3 from Thomas Bertels  ---
(In reply to duha.bugs from comment #2)

Yes, it does, thanks!

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

[kdesrc-build] [Bug 481752] kdesrc-build exits when --initial-setup on first setup (on arch linux)

2024-02-26 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=481752

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com

--- Comment #1 from Thomas Bertels  ---
"looks like reverting
[84d60ab014bc00c7bfa0faec5bcb5d89a42b7e48](https://invent.kde.org/sdk/kdesrc-build/-/commit/84d60ab014bc00c7bfa0faec5bcb5d89a42b7e48)
fixes the issue"

It makes sense, as when running

git ls-remote --exit-code https://invent.kde.org/sysadmin/repo-metadata master
from
https://invent.kde.org/sdk/kde-builder/-/blame/master/ksblib/Updater/Git.py#L100

I get

warning : redirecting to https://invent.kde.org/sysadmin/repo-metadata.git/
4a16a768ec5a2480e7c461234b461812229f5306 refs/heads/master

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

[ark] [Bug 451467] ctrl-f does not open find box in ark default editor

2024-02-22 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=451467

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com

--- Comment #1 from Thomas Bertels  ---
Note that if you:
1. open archive with ark
2. open file with ark default text editor, not Kate -> the text cursor *doesn't
blink*
3. select ctrl-f to find text string -> it *doesn't work*
4. close ark default text editor
5. open again file with ark default text editor, not Kate  -> the text cursor
*blinks*
6. select ctrl-f to find text string -> it *works*

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

[docs.kde.org] [Bug 481619] New: Add "Meta+ D" for Show Desktop

2024-02-21 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=481619

Bug ID: 481619
   Summary: Add "Meta+ D" for Show Desktop
Classification: Websites
   Product: docs.kde.org
   Version: unspecified
  Platform: Manjaro
OS: Linux
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: Missing Content
  Assignee: kde-doc-engl...@kde.org
  Reporter: tbert...@gmail.com
  Target Milestone: ---

SUMMARY

In "Common Keyboard Shortcuts"
(https://docs.kde.org/stable5/en/khelpcenter/fundamentals/kbd.html), Ctrl+F12
is mentioned for "Show Desktop".
"Meta+ D" works too and could be added.
Unless it's Manjaro specific?

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Manjaro
(available in About System)
KDE Plasma Version: 5.27.10
KDE Frameworks Version: 5.113.0
Qt Version: 5.15.12

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

[plasmashell] [Bug 481615] Show Desktop should close Kickoff Application Launcher

2024-02-20 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=481615

--- Comment #2 from Thomas Bertels  ---
Note that there are two widgets under the "Show Desktop/Minimize All"
component.
The "Show Desktop" one hides the Kickoff Application Launcher.
The "Minimize All" doesn't.
The Ctrl+F12 shortcut also hides the Kickoff Application Launcher.

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

[plasmashell] [Bug 481615] Show Desktop should close Kickoff Application Launcher

2024-02-20 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=481615

--- Comment #1 from Thomas Bertels  ---
If we press the Windows key + D, it shows the desktop and closes the Kickoff
Application Launcher.

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

[plasmashell] [Bug 481615] New: Show Desktop should close Kickoff Application Launcher

2024-02-20 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=481615

Bug ID: 481615
   Summary: Show Desktop should close Kickoff Application Launcher
Classification: Plasma
   Product: plasmashell
   Version: 5.27.10
  Platform: Manjaro
OS: Linux
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: Show Desktop/Minimize All
  Assignee: plasma-b...@kde.org
  Reporter: tbert...@gmail.com
  Target Milestone: 1.0

SUMMARY

Clicking on the "Show Desktop and Minimize all applets" button should close the
Kickoff Application Launcher.

STEPS TO REPRODUCE
1. Open the Kickoff Application Launcher by clicking on its button
2. Click on  the "Show Desktop and Minimize all applets" button

OBSERVED RESULT

The desktop is shown but the Kickoff Application Launcher stays visible, hiding
part of the desktop.

EXPECTED RESULT

The Kickoff Application Launcher should be hidden like all applets.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Manjaro
(available in About System)
KDE Plasma Version: 5.27.10
KDE Frameworks Version: 5.113.0
Qt Version: 5.15.12

ADDITIONAL INFORMATION

When the "Show Desktop and Minimize all applets" button is clicked a second
time, the Kickoff Application Launcher gets hidden (and all minimized windows
get restored).

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

[partitionmanager] [Bug 476054] Always set the "nofail" flag for manually created mountpoints?

2024-02-18 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=476054

Thomas Bertels  changed:

   What|Removed |Added

   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=438672

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

[partitionmanager] [Bug 438672] Deleting a partition should also remove its mount point

2024-02-18 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=438672

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com
   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=476054

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

[Elisa] [Bug 423007] When file is opened via Dolphin, it is appended to the end of the playlist, not played immediately

2024-02-16 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=423007

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com

--- Comment #13 from Thomas Bertels  ---
One way to fix this would be to add an argument like -queue which would add the
file to the queue instead of playing it.
A "Dolphin Service Menu" script could then be created to queue the selected
file.
Then the default behavior could be set to empty the queue and play the opened
file.

Note that an option to keep the queue but still play the opened file (like
Audacious has) could be added too.

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

[plasmashell] [Bug 477689] Draw symlink emblem for desktop icons with no thumbnail that are symlinks

2024-02-14 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=477689

Thomas Bertels  changed:

   What|Removed |Added

 CC||tbert...@gmail.com

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