[kde] [Bug 489317] New: can't edit any videos since 24.05.1 update

2024-06-27 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=489317

Bug ID: 489317
   Summary: can't edit any videos since  24.05.1 update
Classification: I don't know
   Product: kde
   Version: unspecified
  Platform: Mint (Ubuntu based)
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: teampchan...@gmail.com
  Target Milestone: ---

***
If you're not sure this is actually a bug, instead post about it at
https://discuss.kde.org

If you're reporting a crash, attach a backtrace with debug symbols; see
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

SUMMARY


STEPS TO REPRODUCE
1. 
2. 
3. 

OBSERVED RESULT


EXPECTED RESULT


SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 
KDE Frameworks Version: 
Qt Version: 

ADDITIONAL INFORMATION
I am using the flat pack version on latest Linux mint version .. Video  plays
in the clip monitor, but not in project monitor for me to edit.

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

[valgrind] [Bug 483786] Incorrect parameter indexing in FreeBSD clock_nanosleep syscall wrapper

2024-03-17 Thread Pat Kelsey
https://bugs.kde.org/show_bug.cgi?id=483786

--- Comment #3 from Pat Kelsey  ---
Thanks!

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

[valgrind] [Bug 483786] Incorrect parameter indexing in FreeBSD clock_nanosleep syscall wrapper

2024-03-16 Thread Pat Kelsey
https://bugs.kde.org/show_bug.cgi?id=483786

--- Comment #1 from Pat Kelsey  ---
Created attachment 167336
  --> https://bugs.kde.org/attachment.cgi?id=167336=edit
Test Program

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

[valgrind] [Bug 483786] New: Incorrect parameter indexing in FreeBSD clock_nanosleep syscall wrapper

2024-03-16 Thread Pat Kelsey
https://bugs.kde.org/show_bug.cgi?id=483786

Bug ID: 483786
   Summary: Incorrect parameter indexing in FreeBSD
clock_nanosleep syscall wrapper
Classification: Developer tools
   Product: valgrind
   Version: 3.22.0
  Platform: Other
OS: FreeBSD
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: memcheck
  Assignee: jsew...@acm.org
  Reporter: kel...@ieee.org
  Target Milestone: ---

Created attachment 167335
  --> https://bugs.kde.org/attachment.cgi?id=167335=edit
Patch

In coregrind/m_syswrap/syswrap-freebsd.c, PRE(sys_clock_nanosleep) and
POST(sys_clock_nanosleep) each refer to the struct timespec arguments of the
syscall by the wrong indexes (using ARG1 and ARG2 instead of ARG3 and ARG4,
respectively).

The result is that errors in the third and fourth arguments to
clock_nanosleep() are always missed, and spurious errors concerning those
arguments are generated based on the values supplied to the first two
arguments.

The attached patch resolves the issue, as verified with the attached test
program.  The same bug does not appear in the Linux variant of this syscall
wrapper.

The attached test program was built using:

cc -Wall -o valgrind-test valgrind-test.c

The output of an unpatched 3.22.0 valgrind run of the test program is:

$valgrind ./valgrind-test
==95892== Memcheck, a memory error detector
==95892== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==95892== Using Valgrind-3.22.0 and LibVEX; rerun with -h for copyright info
==95892== Command: ./valgrind-test
==95892==
==95892== Syscall param clock_nanosleep(rqtp) points to unaddressable byte(s)
==95892==at 0x4994F2A: __sys_clock_nanosleep (in /lib/libc.so.7)
==95892==by 0x20197A: valgrind_should_complain (in
/usr/home/pkelsey/valgrind-test/valgrind-test)
==95892==by 0x201A2A: main (in
/usr/home/pkelsey/valgrind-test/valgrind-test)
==95892==  Address 0x4 is not stack'd, malloc'd or (recently) free'd
==95892==
==95892== Syscall param clock_nanosleep(rqtp) points to unaddressable byte(s)
==95892==at 0x4994F2A: __sys_clock_nanosleep (in /lib/libc.so.7)
==95892==by 0x2019BA: valgrind_should_not_complain (in
/usr/home/pkelsey/valgrind-test/valgrind-test)
==95892==by 0x201A2F: main (in
/usr/home/pkelsey/valgrind-test/valgrind-test)
==95892==  Address 0x4 is not stack'd, malloc'd or (recently) free'd
==95892==
==95892== Syscall param clock_nanosleep(rqtp) points to unaddressable byte(s)
==95892==at 0x4994F2A: __sys_clock_nanosleep (in /lib/libc.so.7)
==95892==by 0x2019FD: valgrind_should_not_complain2 (in
/usr/home/pkelsey/valgrind-test/valgrind-test)
==95892==by 0x201A34: main (in
/usr/home/pkelsey/valgrind-test/valgrind-test)
==95892==  Address 0x4 is not stack'd, malloc'd or (recently) free'd
==95892==
==95892== Syscall param clock_nanosleep(rmtp) points to unaddressable byte(s)
==95892==at 0x4994F2A: __sys_clock_nanosleep (in /lib/libc.so.7)
==95892==by 0x2019FD: valgrind_should_not_complain2 (in
/usr/home/pkelsey/valgrind-test/valgrind-test)
==95892==by 0x201A34: main (in
/usr/home/pkelsey/valgrind-test/valgrind-test)
==95892==  Address 0x1 is not stack'd, malloc'd or (recently) free'd
==95892==
==95892==
==95892== HEAP SUMMARY:
==95892== in use at exit: 0 bytes in 0 blocks
==95892==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
==95892==
==95892== All heap blocks were freed -- no leaks are possible
==95892==
==95892== For lists of detected and suppressed errors, rerun with: -s
==95892== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 0 from 0)


The output of the patched 3.22.0 valgrind run of the test program is (with path
differences to the patched binary elided):

$valgrind ./valgrind-test
==95928== Memcheck, a memory error detector
==95928== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==95928== Using Valgrind-3.22.0 and LibVEX; rerun with -h for copyright info
==95928== Command: ./valgrind-test
==95928==
==95928== Syscall param clock_nanosleep(rqtp) points to uninitialised byte(s)
==95928==at 0x498CF2A: __sys_clock_nanosleep (in /lib/libc.so.7)
==95928==by 0x20197A: valgrind_should_complain (in
/usr/home/pkelsey/valgrind-test/valgrind-test)
==95928==by 0x201A2A: main (in
/usr/home/pkelsey/valgrind-test/valgrind-test)
==95928==  Address 0x1ffc000990 is on thread 1's stack
==95928==  in frame #1, created by valgrind_should_complain (???:)
==95928==
==95928==
==95928== HEAP SUMMARY:
==95928== in use at exit: 0 bytes in 0 blocks
==95928==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
==95928==
==95928== All heap blocks were freed -- no leaks are possible
==95928==
==95928== Use --track-origins=yes to see where uninitialised values come from
==95928== For lists of detected and suppressed errors, rerun with: -s
==95928== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 

[plasmashell] [Bug 472176] Plasma crash after enabling wireguard/openvpn VPN

2023-10-27 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=472176

Pat  changed:

   What|Removed |Added

 CC||pat...@outlook.com

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

[kde] [Bug 474389] Error with install

2023-09-10 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=474389

Pat  changed:

   What|Removed |Added

   Platform|Other   |Kubuntu

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

[kde] [Bug 474389] New: Error with install

2023-09-10 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=474389

Bug ID: 474389
   Summary: Error with install
Classification: I don't know
   Product: kde
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: patk...@proton.me
  Target Milestone: ---

Created attachment 161549
  --> https://bugs.kde.org/attachment.cgi?id=161549=edit
Error Screen shot

When i downloaded Discords install, then i click on the download in my browser
this took me to Discover: 'discord-0 --Discover 

and i get an error:

W: An error occurred during the signature verification. The repository is not
updated and the previous index files will be used. GPG error:
http://apt.postgresql.org/pub/repos/apt lunar-pgdg InRelease: The following
signatures couldn't be verified because the public key is not available:
NO_PUBKEY 7FCC7D46ACCC4CF8
E: http://apt.postgresql.org/pub/repos/apt lunar-pgdg InRelease is not (yet)
available (The following signatures couldn't be verified because the public key
is not available: NO_PUBKEY 7FCC7D46ACCC4CF8)

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

[Discover] [Bug 473547] Getting Error At Update

2023-09-10 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=473547

Pat  changed:

   What|Removed |Added

  Component|Updates (interactive)   |discover

--- Comment #5 from Pat  ---
(In reply to Nate Graham from comment #1)
> Sounds like something is wrong in Ubuntu land. As the error message window
> that you copied this text from requested, please report it to them.


Who's ?? Them

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

[Discover] [Bug 473547] Getting Error At Update

2023-09-09 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=473547

Pat  changed:

   What|Removed |Added

Summary|Get Error At Update |Getting Error At Update

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

[Discover] [Bug 473547] Get Error At Update

2023-09-09 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=473547

Pat  changed:

   What|Removed |Added

Summary|Hashes give me error|Get Error At Update

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

[Discover] [Bug 473547] Hashes give me error

2023-09-09 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=473547

Pat  changed:

   What|Removed |Added

   Platform|Other   |Kubuntu
  Component|discover|Updates (interactive)

--- Comment #4 from Pat  ---
(In reply to Nate Graham from comment #1)
> Sounds like something is wrong in Ubuntu land. As the error message window
> that you copied this text from requested, please report it to them.


And you should know that this error happens when update i get the error

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

[Discover] [Bug 473547] Hashes give me error

2023-09-09 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=473547

--- Comment #3 from Pat  ---
Ok It Back again this is what i got as an error:


W: An error occurred during the signature verification. The repository is not
updated and the previous index files will be used. GPG error:
http://apt.postgresql.org/pub/repos/apt lunar-pgdg InRelease: The following
signatures couldn't be verified because the public key is not available:
NO_PUBKEY 7FCC7D46ACCC4CF8
E: http://apt.postgresql.org/pub/repos/apt lunar-pgdg InRelease is not (yet)
available (The following signatures couldn't be verified because the public key
is not available: NO_PUBKEY 7FCC7D46ACCC4CF8)

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

[Discover] [Bug 473547] Hashes give me error

2023-09-09 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=473547

--- Comment #2 from Pat  ---
(In reply to Nate Graham from comment #1)
> Sounds like something is wrong in Ubuntu land. As the error message window
> that you copied this text from requested, please report it to them.

The error is gone now. Sorry for the late reply

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

[Discover] [Bug 473547] New: Hashes give me error

2023-08-19 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=473547

Bug ID: 473547
   Summary: Hashes give me error
Classification: Applications
   Product: Discover
   Version: 5.27.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: discover
  Assignee: plasma-b...@kde.org
  Reporter: patk...@proton.me
CC: aleix...@kde.org
  Target Milestone: ---

When i Open About discover window i get the error message I've pasted below 



E: http://ca.archive.ubuntu.com/ubuntu lunar-updates/main amd64 DEP-11 Metadata
is not (yet) available (Hash Sum mismatch
Hashes of expected file:
 - Filesize:333734 [weak]
 - SHA256:25b1f398ad7689676741525cd6d0c38dd98869096aacf7f15f011430ecd5b7dc
 - SHA1:21c916a0a5bb2d1aa89bba67f63be735fbefef44 [weak]
 - MD5Sum:97a2d0fca20a18b551f517cdf4b4729e [weak]
Hashes of received file:
 - SHA256:0d4e5a44e216ef11226c2a42d0856c53b252b5618a2582f04cf39a52f2cc3be5
 - SHA1:60828e4ea4a01e6917f41e1a474cb20439434ac2 [weak]
 - MD5Sum:8706d895752c4b97dfdd5ccfefee526b [weak]
 - Filesize:333734 [weak]
Last modification reported: Sat, 19 Aug 2023 17:34:22 +
Release file created at: Sat, 19 Aug 2023 20:52:02 +

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

[Akonadi] [Bug 473067] Akondai Server crashes randomly

2023-08-06 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=473067

Pat  changed:

   What|Removed |Added

 CC||pat.hat...@gmail.com

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

[Discover] [Bug 443040] Discover crashes on launch in Attica::ProviderManager::parseProviderFile()

2021-10-03 Thread Pat McInnes
https://bugs.kde.org/show_bug.cgi?id=443040

--- Comment #5 from Pat McInnes  ---
(In reply to Nate Graham from comment #3)
> Do you have networkmanager installed but disabled, by any chance?

No. I do not have Network Manager installed - not that I would know how to
confirm this. There is nothing in the Applications list or search results.

Could you please confirm / explain how to install this - since I cannot access
Discover

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

[Discover] [Bug 443040] Discover crashes on launch in Attica::ProviderManager::parseProviderFile()

2021-10-03 Thread Pat McInnes
https://bugs.kde.org/show_bug.cgi?id=443040

--- Comment #4 from Pat McInnes  ---
No. I do not have Network Manager installed - not that I would know how to
confirm this. There is nothing in the Applications list or search results.

Could you please confirm / explain how to install this - since I cannot access
Discover

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

[Discover] [Bug 443040] Discovery will not load or open

2021-09-27 Thread Pat McInnes
https://bugs.kde.org/show_bug.cgi?id=443040

--- Comment #2 from Pat McInnes  ---
This is the message in Discovery when I attempt to open it:
"Unable to load applications"
"Please verify Internet connectivity"

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

[Discover] [Bug 443040] Discovery will not load or open

2021-09-27 Thread Pat McInnes
https://bugs.kde.org/show_bug.cgi?id=443040

Pat McInnes  changed:

   What|Removed |Added

 CC||patrick.mcin...@gmail.com

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

[Discover] [Bug 443040] Discovery will not load or open

2021-09-27 Thread Pat McInnes
https://bugs.kde.org/show_bug.cgi?id=443040

--- Comment #1 from Pat McInnes  ---
Created attachment 141968
  --> https://bugs.kde.org/attachment.cgi?id=141968=edit
New crash information added by DrKonqi

plasma-discover (5.22.5) using Qt 5.15.3

- What I was doing when the application crashed:
Checking Discovery for Updates

- Unusual behavior I noticed:
It opened, stating that there was no internet connection - which is not true,
as I had a steady and stable connection.

- Custom settings of the application:
None that I can remember. Automatic updates are turned on in System Settings
however.

-- Backtrace (Reduced):
#4  0x7fb5c5955d8c in std::__atomic_base::load
(__m=std::memory_order_relaxed, this=0x51) at
/usr/include/c++/9/bits/atomic_base.h:413
#5  QAtomicOps::loadRelaxed (_q_value=...) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qatomic_cxx11.h:239
#6  QBasicAtomicInteger::loadRelaxed (this=0x51) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qbasicatomic.h:107
#7  QtPrivate::RefCount::isShared (this=0x51) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:101
[...]
#9  QHash::insert (avalue=..., akey=...,
this=0x564c5309c388) at /usr/include/x86_64-linux-gnu/qt5/QtCore/qhash.h:770

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

[Discover] [Bug 443040] New: Discovery will not load or open

2021-09-27 Thread Pat McInnes
https://bugs.kde.org/show_bug.cgi?id=443040

Bug ID: 443040
   Summary: Discovery will not load or open
   Product: Discover
   Version: unspecified
  Platform: Neon Packages
OS: Linux
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: discover
  Assignee: lei...@leinir.dk
  Reporter: patrick.mcin...@gmail.com
CC: aleix...@kde.org
  Target Milestone: ---

Created attachment 141967
  --> https://bugs.kde.org/attachment.cgi?id=141967=edit
KDE Crash Report

Discovery continuously crashes after an update. Multiple attempts, restarts and
Konsole/Terminal commands have not been able to fix it. It opens stating that
it is not connected to the internet, which is confirmed untrue as I can browse
the internet on Firefox.

Once it "connects" it, attempts to load - and then crashes.


STEPS TO REPRODUCE
1. Click on Discovery
2. Wait to "connect"
3. Loads - then crashes

OBSERVED RESULT
Discovery crashes and is unable to load

EXPECTED RESULT
Discovery to open so I can check for Updates

SOFTWARE/OS VERSIONS
Qt Version: 5.15.3
Frameworks Version: 5.86.0
Operating System: Linux 5.11.0-36-generic x86_64
Windowing System: X11
Drkonqi Version: 5.22.5
Distribution: KDE neon User Edition 5.22

ADDITIONAL INFORMATION
Please see attached (generated) kcrash file for more information

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

[frameworks-kfilemetadata] [Bug 438186] New: kfilemetadata: Executable ExternalExtractors are ignored, contrary to the documentation.

2021-06-06 Thread Pat Thoyts
https://bugs.kde.org/show_bug.cgi?id=438186

Bug ID: 438186
   Summary: kfilemetadata: Executable ExternalExtractors are
ignored, contrary to the documentation.
   Product: frameworks-kfilemetadata
   Version: 5.82.0
  Platform: unspecified
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: pinak.ah...@gmail.com
  Reporter: pat.tho...@gmail.com
  Target Milestone: ---

SUMMARY

Commit 73da9a53cb added code to extractorcollection.cpp that skips files that
are not libraries. However, this library is supposed to support executable
files in the libexec/kf5/kfilemetadata/externalextractors subdirectories. The
commit mentioned above skips all such files so no executable external extractor
is ever recognised. Inverting the logic when checking for external extractors
(line 114) enables the use of such executable files

STEPS TO REPRODUCE
1. Create a folder under libexec/kf5/kfilemetadata/externalextractors (eg
testextractor) and add a manifest.json and an executable shell script or python
program.
2. Run QT_LOGGING_RULES="*.debug=true" ./bin/dump path/to/some/file
3. Look for the output of the extractor or for it to have been located in the
debug output 

OBSERVED RESULT

The external extractor is not found and not called.

EXPECTED RESULT

The external extractor is called as documented.

SOFTWARE/OS VERSIONS
Windows: not tested
macOS: not tested
Linux/KDE Plasma: KDE neon User Edition 5.21
(available in About System)
KDE Plasma Version: 5.21.5
KDE Frameworks Version: 5.82.0
Qt Version: 5.15.3

ADDITIONAL INFORMATION

Probably broken since 5.76.0 but I've only tested 5.82.0

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

[kate] [Bug 423253] Caret gets stuck when moving vertically through soft-wrapped lines.

2021-03-17 Thread Pat Brown
https://bugs.kde.org/show_bug.cgi?id=423253

Pat Brown  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/fram
   ||eworks/ktexteditor/commit/8
   ||0762d259b20373876db6a8622cf
   ||17329db7221c

--- Comment #5 from Pat Brown  ---
Git commit 80762d259b20373876db6a8622cf17329db7221c by Tom N Harris, on behalf
of Pat Brown.
Committed on 17/03/2021 at 03:20.
Pushed by cullmann into branch 'master'.

Restrict horizontal range of cursor to avoid unintentionally wrapping.

When converting a x position to cursor column for a wrapped text line,
the last column should not be used or else the cursor will jump to the
next line.

M  +4-0src/render/katerenderer.cpp

https://invent.kde.org/frameworks/ktexteditor/commit/80762d259b20373876db6a8622cf17329db7221c

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

[digikam] [Bug 425824] PayPal donation links are not displayed

2020-08-26 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=425824

--- Comment #7 from Pat David  ---
Yikes, sorry for the delay - I'm just seeing this. :(

Yes, the solution is what I would have done, but we can look to see if there's
a better answer than allowing unsafe html.

Thank you for catching the yaml config option!

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

[kate] [Bug 423253] New: Caret gets stuck when moving vertically through soft-wrapped lines.

2020-06-19 Thread Pat Brown
https://bugs.kde.org/show_bug.cgi?id=423253

Bug ID: 423253
   Summary: Caret gets stuck when moving vertically through
soft-wrapped lines.
   Product: kate
   Version: 20.04.2
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: part
  Assignee: kwrite-bugs-n...@kde.org
  Reporter: opensou...@whoopdedo.org
  Target Milestone: ---

SUMMARY
When moving vertically through a wrapped line and the current column is close
to the soft-wrap position, the caret will jump to the first column of the line
below. This can cause the it to skip a line when moving down, or get "stuck"
when moving up.

STEPS TO REPRODUCE
1. Type: 123456 1234 123456789 12345 1234 12345
2. Adjust the window width so the text wraps to six lines.
3. Position the caret after the '6' in the third line.
4. Press the up key, up, up again, then down, then down, then down again.

OBSERVED RESULT
(Actual results may be depend on font and screen resolution. This was
reproduced with Hack 9pt at 166dpi.)
The second up keypress moves the caret to the start of line 2 instead of line
1. Moving up again doesn't cause the caret to move. When it moves down it
returns to the original column on line 3. Then jumps over line 4. And the last
down keypress moves it to the end of line 6.

Furthermore, adding an extra space at the end of the line changes which column
the bug occurs on.

EXPECTED RESULT
When the caret begins after the '8' of line three, the same sequence always
result in the caret moving to a different line and the last column less than or
equal to where it started.

SOFTWARE/OS VERSIONS
KDE Plasma Version: 5.19.1
KDE Frameworks Version: 5.71.0
Qt Version: 5.15.0
Kate version: 20.04.2
Kate Part version: 5.71.0
Arch Linux, Kernel version 5.7.2-arch1-1
Xorg version 1.20.8

ADDITIONAL INFORMATION

Happens in KWrite as well. Which is to be expected.

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

[digikam] [Bug 397990] Carousel images too large

2018-08-28 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=397990

Pat David  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

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

[digikam] [Bug 397990] Carousel images too large

2018-08-28 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=397990

--- Comment #3 from Pat David  ---
commit 8ed4b3279c6a946a857e12077cf7c3d32a6c407c (HEAD -> dev, origin/dev)
Author: Pat David 
Date:   Tue Aug 28 10:36:19 2018 -0500

Compress carousel images from PNG to JPG

This also removes the /static/img/carousel/info.txt file as it is
no longer needed (use /data/carousel.yml intead).

 data/carousel.yml   |  28 ++--
 static/img/carousel/carousel-01.jpg | Bin 0 -> 195135 bytes
 static/img/carousel/carousel-02.jpg | Bin 0 -> 134058 bytes
 static/img/carousel/carousel-03.jpg | Bin 0 -> 148632 bytes
 static/img/carousel/carousel-04.jpg | Bin 0 -> 118731 bytes
 static/img/carousel/carousel-05.jpg | Bin 0 -> 113304 bytes
 static/img/carousel/carousel-06.jpg | Bin 0 -> 85932 bytes
 static/img/carousel/carousel-07.jpg | Bin 0 -> 131056 bytes
 static/img/carousel/carousel-08.jpg | Bin 0 -> 85323 bytes
 static/img/carousel/carousel-09.jpg | Bin 0 -> 137596 bytes
 static/img/carousel/carousel-10.jpg | Bin 0 -> 111399 bytes
 static/img/carousel/carousel-11.jpg | Bin 0 -> 114148 bytes
 static/img/carousel/carousel-12.jpg | Bin 0 -> 97692 bytes
 static/img/carousel/carousel-13.jpg | Bin 0 -> 114397 bytes
 static/img/carousel/carousel-14.jpg | Bin 0 -> 79370 bytes
 static/img/carousel/info.txt|  14 --
 16 files changed, 14 insertions(+), 28 deletions(-)

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

[digikam] [Bug 397990] Carousel images too large

2018-08-28 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=397990

--- Comment #2 from Pat David  ---
(In reply to caulier.gilles from comment #1)
> You are right.
> 
> Using JPEG will reduce bandwidth. Let's go to convert PNG to JPEG with
> imagemagick...
> 
> Gilles

Excellent!  I'll convert them now and push the change.

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

[digikam] [Bug 397990] Carousel images too large

2018-08-28 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=397990

Pat David  changed:

   What|Removed |Added

 Status|UNCONFIRMED |CONFIRMED
 Ever confirmed|0   |1

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

[digikam] [Bug 397990] New: Carousel images too large

2018-08-28 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=397990

Bug ID: 397990
   Summary: Carousel images too large
   Product: digikam
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Website
  Assignee: digikam-bugs-n...@kde.org
  Reporter: patda...@gmail.com
  Target Milestone: ---

Gilles,

The carousel images are all .PNG files.  This is awesome for quality.  Not so
awesome for file size... :(

Loading the front page requires 13.2MB of download (almost 2 minutes to load
over fast 3G)!

I would like to:

1. Compress these to JPG (trying to keep as much visual quality as possible
while keeping the file sizes smaller).
2. Consider reducing the number of images in the carousel to cut down on total
download size.

Can I go ahead and compress the carousel images?

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

[digikam] [Bug 397990] Carousel images too large

2018-08-28 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=397990

Pat David  changed:

   What|Removed |Added

 CC||patda...@gmail.com

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

[digikam] [Bug 387047] Easily accessible signatures

2018-08-28 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=387047

--- Comment #14 from Pat David  ---
I've added links to sha256 hashes for downloads (on staging, will merge soon).

If/when you want to include PGP/GPG keys just let me know and I'll get them
included as well.

You can upload keys to a couple of common servers like:

https://pgp.mit.edu/
https://sks-keyservers.net/

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

[digikam] [Bug 387047] Easily accessible signatures

2018-08-27 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=387047

Pat David  changed:

   What|Removed |Added

 CC||patda...@gmail.com

--- Comment #10 from Pat David  ---
I am looking into this right now and might have a solution to at least provide
a link to a sha256 sum, as long as they get created and exist alongside the
provided binaries.

This will still require the packagers to create an sha256 sum when they create
their binaries, and to upload them along with the binaries.

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

[krita] [Bug 388410] monoprice/huion tablet wont work

2018-01-01 Thread pat
https://bugs.kde.org/show_bug.cgi?id=388410

--- Comment #4 from pat <leblanc@gmail.com> ---
(In reply to Boudewijn Rempt from comment #3)
> If you're really using 3.3.2, there is. Settings/Configure Krita/Tablet,
screens of krita
https://drive.google.com/file/d/1ILV2z1G3cSQ0NUI3SLCykukwKhHrpcKN/view?usp=sharing
https://drive.google.com/file/d/1QNmp8unmGPPsEQTG8VXE3uZrAMCY27EI/view?usp=sharing

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

[krita] [Bug 388410] monoprice/huion tablet wont work

2018-01-01 Thread pat
https://bugs.kde.org/show_bug.cgi?id=388410

--- Comment #2 from pat <leblanc@gmail.com> ---
thanks, but there is no option for Windows 8 Pointer API option in Krita's
settings.

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

[krita] [Bug 388410] New: monoprice/huion tablet wont work

2017-12-31 Thread pat
https://bugs.kde.org/show_bug.cgi?id=388410

Bug ID: 388410
   Summary: monoprice/huion tablet wont work
   Product: krita
   Version: 3.3.2
  Platform: MS Windows
OS: MS Windows
Status: UNCONFIRMED
  Severity: major
  Priority: NOR
 Component: tablet support
  Assignee: krita-bugs-n...@kde.org
  Reporter: leblanc@gmail.com
  Target Milestone: ---

Created attachment 109609
  --> https://bugs.kde.org/attachment.cgi?id=109609=edit
used debug view as per faqs

When focus is on krita, tablet does nothing at all. when using regular mouse to
refocus onto other items like a browser, tablet control is returned. Using a
monoprice 10x6.25 tablet with included/updated huion drivers, running windows
7.

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

[kdenlive] [Bug 379040] Timeline header menu disappears after adding shortcut

2017-04-22 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=379040

Pat <yinz...@gmail.com> changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Pat <yinz...@gmail.com> ---
Deleting /usr/share/kxmlgui5/kdenlive/kdenlive.rc seems to have permanently
resolved this.

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

[kdenlive] [Bug 379040] Timeline header menu disappears after adding shortcut

2017-04-21 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=379040

--- Comment #1 from Pat <yinz...@gmail.com> ---
Deleting ~/.local/share/kxmlgui5/kdenlive/kdenlive.rc will bring the menu back.

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

[kdenlive] [Bug 379040] New: Timeline header menu disappears after adding shortcut

2017-04-21 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=379040

Bug ID: 379040
   Summary: Timeline header menu disappears after adding shortcut
   Product: kdenlive
   Version: 16.12.3
  Platform: Ubuntu Packages
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: User Interface
  Assignee: j...@kdenlive.org
  Reporter: yinz...@gmail.com
  Target Milestone: ---

Created attachment 105129
  --> https://bugs.kde.org/attachment.cgi?id=105129=edit
timeline header menu screenshot - this disappears

The timeline header menu (see attached) disappears after adding a custom
shortcut under Settings > Configure Shortcuts

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

[kdenlive] [Bug 378966] Can't change timeline ruler from FPS to HH:MM:SS

2017-04-19 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=378966

Pat <yinz...@gmail.com> changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Pat <yinz...@gmail.com> ---
Resolved by deleting kdenliverc and restarting.

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

[kdenlive] [Bug 378966] New: Can't change timeline ruler from FPS to HH:MM:SS

2017-04-19 Thread Pat
https://bugs.kde.org/show_bug.cgi?id=378966

Bug ID: 378966
   Summary: Can't change timeline ruler from FPS to HH:MM:SS
   Product: kdenlive
   Version: 16.12.3
  Platform: Ubuntu Packages
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: User Interface
  Assignee: j...@kdenlive.org
  Reporter: yinz...@gmail.com
  Target Milestone: ---

There doesn't appear to be any way to change the timeline ruler view from FPS
to HH:MM:SS in v. 16.12.3

In previous version, 16.12.2, this option was available by right-clicking the
timecode display above the timeline ruler.

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

[digikam] [Bug 378703] Download page : add link to pre-version bundle repository from GDrive

2017-04-18 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=378703

--- Comment #2 from Pat David <patda...@gmail.com> ---
I also apparently cannot close/modify bugs for some reason. :(

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

[digikam] [Bug 378703] Download page : add link to pre-version bundle repository from GDrive

2017-04-18 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=378703

Pat David <patda...@gmail.com> changed:

   What|Removed |Added

 CC||patda...@gmail.com

--- Comment #1 from Pat David <patda...@gmail.com> ---
Fixed!

commit 29690565fefc8ad26e2a5681d506131153458d6b
Author: Mica Semrick <m...@silentumbrella.com>
Date:   Mon Apr 17 23:19:07 2017 -0700

Add link to Pre-Release binaries (bugzilla #378703) and clean up white
space.

 content/download/_index.md | 21 ++---
 1 file changed, 6 insertions(+), 15 deletions(-)

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

[digikam] [Bug 378697] New: Add image carousel to front page screenshots

2017-04-12 Thread Pat David
https://bugs.kde.org/show_bug.cgi?id=378697

Bug ID: 378697
   Summary: Add image carousel to front page screenshots
   Product: digikam
   Version: unspecified
  Platform: Other
OS: All
Status: UNCONFIRMED
  Severity: wishlist
  Priority: NOR
 Component: Website
  Assignee: digikam-de...@kde.org
  Reporter: patda...@gmail.com
  Target Milestone: ---

Per Gilles, make the front page screenshot image a carousel of
screenshots/actions shots.

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

[dolphin] [Bug 371577] New: Can copy photo from camera [galaxy 5s] but can't paste photo to desktop error msg 150

2016-10-24 Thread Pat McGee via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=371577

Bug ID: 371577
   Summary: Can copy photo from camera [galaxy 5s] but can't paste
photo to desktop error msg 150
   Product: dolphin
   Version: unspecified
  Platform: Mint (Ubuntu based)
OS: Linux
Status: UNCONFIRMED
  Severity: grave
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: pmc...@tntech.edu

I was able to copy photos from phone a few days ago, now I get unknown error
150 message

Reproducible: Always

Steps to Reproduce:
1.turn on camera and plug into computer
2.click on photo to copy
3.try to paste to desktop and get error msg

Actual Results:  
fI get error message and notice to report same

Expected Results:  
Pasted photo to desktop

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


[kmid] [Bug 368388] New: Who do I contact about licensing?

2016-09-07 Thread Pat Hobbis via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=368388

Bug ID: 368388
   Summary: Who do I contact about licensing?
   Product: kmid
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: wishlist
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: a2...@live.com

I want to include Kmid in a distro I am working on. How do i request a license
to do so.

Also please note my project is called KaraJamTM I want to ad chord detction or
even a way to manually input chords. A second text line perhaps?

Could you recommend a method? Just understand users need to see the chords in
advance of the beat. If you look at ClamChordData. 

I am not a programmer, and promise code will remain yours.

Please your code is as close as I have got so far. You can find apps for
android that do this?

All I can say is please.
Pat
KaraJam

Reproducible: Always

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