[Spam] [Bug 471612] dfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471612

Christophe Marin  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |NOT A BUG
   Assignee|schwanc...@protonmail.com   |n...@kde.org

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

[Spam] [Bug 471435] Got banned on Phabricator with no valid reason

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471435

Christophe Marin  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |NOT A BUG

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

[Powerdevil] [Bug 463034] "Battery low" notification persists even if battery fully charged

2023-06-29 Thread Raphaël Jakse
https://bugs.kde.org/show_bug.cgi?id=463034

Raphaël Jakse  changed:

   What|Removed |Added

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

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

[Powerdevil] [Bug 471636] New: Notification about low battery still there after charging during suspend

2023-06-29 Thread Raphaël Jakse
https://bugs.kde.org/show_bug.cgi?id=471636

Bug ID: 471636
   Summary: Notification about low battery still there after
charging during suspend
Classification: Plasma
   Product: Powerdevil
   Version: 5.27.6
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: raphael@jakse.fr
CC: m...@ratijas.tk, natalie_clar...@yahoo.de
  Target Milestone: ---

It's the "low battery: 98%" bug. I'm quite entertained by this bug, because
it's mostly harmless and quite comical. Bear with me.

SUMMARY

The low battery notification is duly updated when the reported charge 
percentage changes. Which is a nice touch. Very KDE-like. So much polish. We
are taken by the hand. Unfortunately, it does not seem to check whether the
percentage still matches the need for displaying the notification. Therefore,
you can trick it into telling a joke. See the steps.

(well, you guessed the steps; unfortunately, I had to spoil the story in the
title for a good bug report).

STEPS TO REPRODUCE
1. Use your laptop until a low battery notification shows up.
2. Suspend
3. Plug the computer while it's asleep
4. Wait a while
5. Wake it up and unlock

OBSERVED RESULT

Notice how the low battery notification is still there, complete with the
updated percentage.

EXPECTED RESULT

The battery notification should be gone.

Now, a static notification that would not update the percentage would have the
same issue, but with the updated charge, it's extra fun.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: updated openSUSE Tumbleweed
KDE Plasma Version: 5.27.6
KDE Frameworks Version: 5.107.0
Qt Version: 5.15.10

ADDITIONAL INFORMATION

Related to #463034. But I believe they should be distinguished because #463034
seems to describe something that implies that some code detecting AC plug is
not working correctly. We still want the notification to be hidden as soon as
the AC is plugged, not only when the percentage is higher than the limit.

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

[kate] [Bug 471471] Add "Open.." to the tab context menu

2023-06-29 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=471471

Christoph Cullmann  changed:

   What|Removed |Added

 CC||cullm...@kde.org
   Severity|normal  |wishlist

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

[frameworks-kjobwidgets] [Bug 471531] Kate crashes after login from lockscreen

2023-06-29 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=471531

Christoph Cullmann  changed:

   What|Removed |Added

   Assignee|kwrite-bugs-n...@kde.org|kdelibs-b...@kde.org
 CC||cullm...@kde.org
Version|22.12.3 |5.103.0
Product|kate|frameworks-kjobwidgets
  Component|general |general

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

[valgrind] [Bug 471634] New: strtod() gives inaccurate values on Alpine Linux (musl-libc) under valgrind

2023-06-29 Thread Nick Little
https://bugs.kde.org/show_bug.cgi?id=471634

Bug ID: 471634
   Summary: strtod() gives inaccurate values on Alpine Linux
(musl-libc) under valgrind
Classification: Developer tools
   Product: valgrind
   Version: 3.21.0
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: jsew...@acm.org
  Reporter: nicklaus.lit...@gmail.com
  Target Milestone: ---

Created attachment 159980
  --> https://bugs.kde.org/attachment.cgi?id=159980&action=edit
Test File

SUMMARY
When running under valgrind on Alpine Linux, strtod() gives inaccurate values.
Test was performed on x86_64 architecture. (The same test on Ubuntu valgrind
v3.19 yielded the correct values.)

Each test prints out the original value passed in followed by a comma and then
the result of converting the value to a string (using sprintf(..., "%.17g",
...)) and parsing it using strtod(). Examining the bits of the resulting values
indicates that the last 10-11 bits of the mantissa are zero'd out compared to
the expected values. My best guess is that this has something to do with how
valgrind's dynamic recompiler and musl's implementation of strtod().

STEPS TO REPRODUCE
1. Compile Test File: `g++ -Wall -o ValgrindStrtodTest ValgrindStrtodTest.cxx`
2. Run without valgrind to observe correct results: `./ValgrindStrtodTest`
3. Run with valgrind to observe incorrect results: `valgrind
./ValgrindStrtodTest`

OBSERVED RESULT
~ $ g++ -Wall -o ValgrindTest cal-ro/ValgrindTest.cxx
~ $ ./ValgrindTest
71596396.900554374, 71596396.900554374: GOOD
37033884.342276432, 37033884.342276432: GOOD
71596396.900543213, 71596396.900543213: GOOD
37033884.342269897, 37033884.342269897: GOOD
7.2506449597179708e+307, 7.2506449597179708e+307: GOOD
1.7428478780436407e+308, 1.7428478780436407e+308: GOOD
~ $ valgrind ./ValgrindTest
==108== Memcheck, a memory error detector
==108== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==108== Using Valgrind-3.21.0 and LibVEX; rerun with -h for copyright info
==108== Command: ./ValgrindTest
==108==
71596396.900554373, 71596396.900543212: BAD
37033884.342276431, 37033884.342269897: BAD
71596396.900543212, 71596396.900543212: GOOD
37033884.342269897, 37033884.342269897: GOOD
7.2506449597179707e+307, 7.2506449597178859e+307: BAD
1.7428478780436407e+308, 1.7428478780438379e+308: BAD
==108==
==108== HEAP SUMMARY:
==108== in use at exit: 0 bytes in 0 blocks
==108==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
==108==
==108== All heap blocks were freed -- no leaks are possible
==108==
==108== For lists of detected and suppressed errors, rerun with: -s
==108== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
~ $ uname -a
Linux cf8449d6eb32 5.10.16.3-microsoft-standard-WSL2 #1 SMP Fri Apr 2 22:23:49
UTC 2021 x86_64 Linux
~ $ cat /etc/os-release
NAME="Alpine Linux"
ID=alpine
VERSION_ID=3.18.2
PRETTY_NAME="Alpine Linux v3.18"
HOME_URL="https://alpinelinux.org/";
BUG_REPORT_URL="https://gitlab.alpinelinux.org/alpine/aports/-/issues";

EXPECTED RESULT
The output when running with valgrind should match the output when running
without valgrind:
71596396.900554374, 71596396.900554374: GOOD
37033884.342276432, 37033884.342276432: GOOD
71596396.900543213, 71596396.900543213: GOOD
37033884.342269897, 37033884.342269897: GOOD
7.2506449597179708e+307, 7.2506449597179708e+307: GOOD
1.7428478780436407e+308, 1.7428478780436407e+308: GOOD

SOFTWARE/OS VERSIONS
Linux: Alpine 3.18 image running on WSL

ADDITIONAL INFORMATION
Also performed the same test on WSL Ubuntu image. The expected results were
observed.

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

[lattedock] [Bug 470114] Feature Request: Ways to better notify / manage / recover from crashed plasmoids or widgets

2023-06-29 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=470114

Bug Janitor Service  changed:

   What|Removed |Added

   Severity|crash   |wishlist

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

[lattedock] [Bug 470114] Feature Request: Ways to better notify / manage / recover from crashed plasmoids or widgets

2023-06-29 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=470114

Bug Janitor Service  changed:

   What|Removed |Added

   Severity|wishlist|crash

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

[Spam] [Bug 471618] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471618

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471626] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471626

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471624] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471624

Christophe Marin  changed:

   What|Removed |Added

  Component|general |Spam
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471623] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471623

Christophe Marin  changed:

   What|Removed |Added

  Component|general |Spam
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471630] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471630

Christophe Marin  changed:

   What|Removed |Added

  Component|general |Spam
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471616] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471616

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471613] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471613

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471625] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471625

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471614] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471614

Christophe Marin  changed:

   What|Removed |Added

  Component|general |Spam
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471622] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471622

Christophe Marin  changed:

   What|Removed |Added

  Component|general |Spam
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471621] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471621

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471617] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471617

Christophe Marin  changed:

   What|Removed |Added

  Component|general |Spam
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471632] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471632

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471629] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471629

Christophe Marin  changed:

   What|Removed |Added

  Component|general |Spam
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471628] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471628

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471612] dfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471612

Christophe Marin  changed:

   What|Removed |Added

  Component|general |Spam
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471620] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471620

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471619] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471619

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471615] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471615

Christophe Marin  changed:

   What|Removed |Added

  Component|general |Spam
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471633] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471633

Christophe Marin  changed:

   What|Removed |Added

  Component|general |Spam
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471631] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471631

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471627] dfsdfsdfsdf

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471627

Christophe Marin  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[KDE MediaWiki] [Bug 471633] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471633

Bug ID: 471633
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471632] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471632

Bug ID: 471632
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471631] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471631

Bug ID: 471631
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471630] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471630

Bug ID: 471630
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471626] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471626

Bug ID: 471626
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471629] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471629

Bug ID: 471629
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471628] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471628

Bug ID: 471628
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471627] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471627

Bug ID: 471627
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471625] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471625

Bug ID: 471625
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471624] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471624

Bug ID: 471624
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471623] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471623

Bug ID: 471623
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471622] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471622

Bug ID: 471622
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471621] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471621

Bug ID: 471621
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471620] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471620

Bug ID: 471620
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471619] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471619

Bug ID: 471619
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471618] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471618

Bug ID: 471618
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471617] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471617

Bug ID: 471617
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471616] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471616

Bug ID: 471616
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471615] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471615

Bug ID: 471615
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471614] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471614

Bug ID: 471614
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471613] New: dfsdfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471613

Bug ID: 471613
   Summary: dfsdfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
STEPS TO REPROsdfsdfDUCE
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

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

[KDE MediaWiki] [Bug 471612] New: dfsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471612

Bug ID: 471612
   Summary: dfsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0x...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

sfsdf
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

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

[Spam] [Bug 471584] Biased idiots

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471584

Tobias Fella  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |NOT A BUG
 CC||fe...@posteo.de

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

[Spam] [Bug 471583] Fuck you

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471583

Tobias Fella  changed:

   What|Removed |Added

 Resolution|--- |NOT A BUG
 Status|REPORTED|RESOLVED
 CC||fe...@posteo.de

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

[Spam] [Bug 471592] I just want to die right now!

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471592

Tobias Fella  changed:

   What|Removed |Added

 Resolution|--- |NOT A BUG
 CC||fe...@posteo.de
 Status|REPORTED|RESOLVED

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

[Spam] [Bug 471595] Got banned on speedrun.com for no reason: https://www.speedrun.com/user/KEMONO_PANTSU

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471595

Tobias Fella  changed:

   What|Removed |Added

 Resolution|--- |NOT A BUG
 Status|REPORTED|RESOLVED

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

[Spam] [Bug 471611] sdfsdfsdfsfd

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471611

Tobias Fella  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
Product|KDE MediaWiki   |Spam
   Assignee|schwanc...@protonmail.com   |n...@kde.org
  Component|general |Spam
 Resolution|--- |NOT A BUG

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

[Spam] [Bug 471610] sdfs

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471610

Tobias Fella  changed:

   What|Removed |Added

   Assignee|schwanc...@protonmail.com   |n...@kde.org
 Resolution|--- |NOT A BUG
Product|KDE MediaWiki   |Spam
  Component|general |Spam
 Status|REPORTED|RESOLVED

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

[Spam] [Bug 471609] sdfsdf

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471609

Tobias Fella  changed:

   What|Removed |Added

 Resolution|--- |NOT A BUG
 Status|REPORTED|RESOLVED
  Component|general |Spam
Product|KDE MediaWiki   |Spam
   Assignee|schwanc...@protonmail.com   |n...@kde.org

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

[Spam] [Bug 471597] I swear I'm not spamming

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471597

Tobias Fella  changed:

   What|Removed |Added

  Component|general |Spam
Product|KDE MediaWiki   |Spam
 Status|REPORTED|RESOLVED
 Resolution|--- |NOT A BUG
   Assignee|schwanc...@protonmail.com   |n...@kde.org

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

[Spam] [Bug 471598] Just asking for the help I deserve

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471598

Tobias Fella  changed:

   What|Removed |Added

 Resolution|--- |NOT A BUG
Product|KDE MediaWiki   |Spam
   Assignee|schwanc...@protonmail.com   |n...@kde.org
  Component|general |Spam
 Status|REPORTED|RESOLVED

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

[Spam] [Bug 471599] Can I die

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471599

Tobias Fella  changed:

   What|Removed |Added

  Component|general |Spam
 Resolution|--- |NOT A BUG
   Assignee|schwanc...@protonmail.com   |n...@kde.org
Product|KDE MediaWiki   |Spam
 Status|REPORTED|RESOLVED

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

[Spam] [Bug 471600] No one becomes sad even if I commit suicide

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471600

Tobias Fella  changed:

   What|Removed |Added

   Assignee|schwanc...@protonmail.com   |n...@kde.org
 Resolution|--- |NOT A BUG
 Status|REPORTED|RESOLVED
  Component|general |Spam
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471601] No one becomes sad even if I commit suicide

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471601

Tobias Fella  changed:

   What|Removed |Added

  Component|general |Spam
   Assignee|schwanc...@protonmail.com   |n...@kde.org
 Status|REPORTED|RESOLVED
Product|KDE MediaWiki   |Spam
 Resolution|--- |NOT A BUG

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

[Spam] [Bug 471602] Just want to end my life

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471602

Tobias Fella  changed:

   What|Removed |Added

 Resolution|--- |NOT A BUG
 Status|REPORTED|RESOLVED
   Assignee|schwanc...@protonmail.com   |n...@kde.org
Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[Spam] [Bug 471603] 逃げ道を絶たれた

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471603

Tobias Fella  changed:

   What|Removed |Added

   Assignee|schwanc...@protonmail.com   |n...@kde.org
 Resolution|--- |NOT A BUG
 Status|REPORTED|RESOLVED
Product|KDE MediaWiki   |Spam
  Component|general |Spam

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

[KDE MediaWiki] [Bug 471603] 逃げ道を絶たれた

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471603

Tobias Fella  changed:

   What|Removed |Added

 CC||fe...@posteo.de

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

[Spam] [Bug 471604] FUCK ME

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471604

Tobias Fella  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
  Component|general |Spam
 Resolution|--- |NOT A BUG
 Status|REPORTED|RESOLVED
   Assignee|schwanc...@protonmail.com   |n...@kde.org

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

[Spam] [Bug 471605] I HATE MYSELF AND NOTHING ELSE

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471605

Tobias Fella  changed:

   What|Removed |Added

   Assignee|schwanc...@protonmail.com   |n...@kde.org
 Status|REPORTED|RESOLVED
  Component|general |Spam
 Resolution|--- |NOT A BUG
Product|KDE MediaWiki   |Spam

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

[Spam] [Bug 471606] I HATE MYSELF AND NOTHING ELSE

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471606

Tobias Fella  changed:

   What|Removed |Added

Product|KDE MediaWiki   |Spam
   Assignee|schwanc...@protonmail.com   |n...@kde.org
 Status|REPORTED|RESOLVED
 Resolution|--- |NOT A BUG
  Component|general |Spam

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

[Spam] [Bug 471607] I HATE MYSELF AND NOTHING ELSE

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471607

Tobias Fella  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
   Assignee|schwanc...@protonmail.com   |n...@kde.org
Product|KDE MediaWiki   |Spam
 Resolution|--- |NOT A BUG
  Component|general |Spam

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

[KDE MediaWiki] [Bug 471611] New: sdfsdfsdfsfd

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471611

Bug ID: 471611
   Summary: sdfsdfsdfsfd
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please tsdfry to attach a backtrace with
debug symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***


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

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

[Spam] [Bug 471608] sdfsfdsdfsdf

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471608

Tobias Fella  changed:

   What|Removed |Added

   Assignee|schwanc...@protonmail.com   |n...@kde.org
  Component|general |Spam
Product|KDE MediaWiki   |Spam
 Resolution|--- |NOT A BUG
 Status|REPORTED|RESOLVED

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

[KDE MediaWiki] [Bug 471610] New: sdfs

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471610

Bug ID: 471610
   Summary: sdfs
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://commdfsdfsdfunity.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***


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

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

[KDE MediaWiki] [Bug 471609] New: sdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471609

Bug ID: 471609
   Summary: sdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOsdfsdfWTOs/Debugging/How_to_create_useful_crash_reports
***


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

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

[KDE MediaWiki] [Bug 471608] New: sdfsfdsdfsdf

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471608

Bug ID: 471608
   Summary: sdfsfdsdfsdf
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

sdf

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

[KDE MediaWiki] [Bug 471607] New: I HATE MYSELF AND NOTHING ELSE

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471607

Bug ID: 471607
   Summary: I HATE MYSELF AND NOTHING ELSE
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you aI HATE MYSELF AND NOTHING ELSEre reporting a crash, please try to
attach a backtrace with debug symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***


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

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

[KDE MediaWiki] [Bug 471606] New: I HATE MYSELF AND NOTHING ELSE

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471606

Bug ID: 471606
   Summary: I HATE MYSELF AND NOTHING ELSE
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

I HATE MYSELF AND NOTHING ELSE

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

[KDE MediaWiki] [Bug 471605] New: I HATE MYSELF AND NOTHING ELSE

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471605

Bug ID: 471605
   Summary: I HATE MYSELF AND NOTHING ELSE
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

I HATE MYSELF AND NOTHING ELSE

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

[KDE MediaWiki] [Bug 471604] New: FUCK ME

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471604

Bug ID: 471604
   Summary: FUCK ME
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

FUCK ME

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

[KDE MediaWiki] [Bug 471603] New: 逃げ道を絶たれた

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471603

Bug ID: 471603
   Summary: 逃げ道を絶たれた
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

逃げ道を絶たれた

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

[KDE MediaWiki] [Bug 471602] New: Just want to end my life

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471602

Bug ID: 471602
   Summary: Just want to end my life
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

Just want to end my life

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

[KDE MediaWiki] [Bug 471601] New: No one becomes sad even if I commit suicide

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471601

Bug ID: 471601
   Summary: No one becomes sad even if I commit suicide
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

No one becomes sad even if I commit suicide

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

[KDE MediaWiki] [Bug 471600] New: No one becomes sad even if I commit suicide

2023-06-29 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=471600

Bug ID: 471600
   Summary: No one becomes sad even if I commit suicide
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

No one becomes sad even if I commit suicide

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

[KDE MediaWiki] [Bug 471599] New: Can I die

2023-06-29 Thread KEMONO_PANTSU_2
https://bugs.kde.org/show_bug.cgi?id=471599

Bug ID: 471599
   Summary: Can I die
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

Can I die

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

[KDE MediaWiki] [Bug 471598] New: Just asking for the help I deserve

2023-06-29 Thread KEMONO_PANTSU_2
https://bugs.kde.org/show_bug.cgi?id=471598

Bug ID: 471598
   Summary: Just asking for the help I deserve
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

Just asking for the help I deserve

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

[KDE MediaWiki] [Bug 471597] New: I swear I'm not spamming

2023-06-29 Thread KEMONO_PANTSU_2
https://bugs.kde.org/show_bug.cgi?id=471597

Bug ID: 471597
   Summary: I swear I'm not spamming
Classification: Websites
   Product: KDE MediaWiki
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: schwanc...@protonmail.com
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

I swear I'm not spamming

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

[Spam] [Bug 471591] If you're not willing to help me then just kill me right now

2023-06-29 Thread Fushan Wen
https://bugs.kde.org/show_bug.cgi?id=471591

Fushan Wen  changed:

   What|Removed |Added

Product|clazy   |Spam
  Component|general |Spam
   Assignee|unassigned-b...@kde.org |n...@kde.org

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

[Spam] [Bug 471595] Got banned on speedrun.com for no reason: https://www.speedrun.com/user/KEMONO_PANTSU

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471595

Christophe Marin  changed:

   What|Removed |Added

   Assignee|mjo...@kde.org  |n...@kde.org
  Component|general |Spam
Product|amor|Spam

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

[krusader] [Bug 471596] New: Crash during copy

2023-06-29 Thread Jaap van Wingerde
https://bugs.kde.org/show_bug.cgi?id=471596

Bug ID: 471596
   Summary: Crash during copy
Classification: Applications
   Product: krusader
   Version: unspecified
  Platform: Debian stable
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: krusader-bugs-n...@kde.org
  Reporter: k...@vanwingerde.nl
CC: krusader-bugs-n...@kde.org
  Target Milestone: ---

Application: krusader (2.7.2 "Peace of Mind")

Qt Version: 5.15.2
Frameworks Version: 5.78.0
Operating System: Linux 6.1.0-0.deb11.7-amd64 x86_64
Windowing system: X11
Distribution: Debian GNU/Linux 11 (bullseye)

-- Information about the crash:
- What I was doing when the application crashed:

Script was copying many files. Krusader stiopped, the script continued to work.

The crash can be reproduced sometimes.

-- Backtrace:
Application: Krusader (krusader), signal: Segmentation fault
Content of s_kcrashErrorMessage: [Current thread is 1 (Thread 0x7f42029f6d80
(LWP 16727))]
[KCrash Handler]
#6  0x55c2baa0ce58 in KrViewItem::itemRect (this=0x55c2bc4dadd0) at
./krusader/Panel/PanelView/krviewitem.cpp:140
#7  0x55c2ba9d9502 in KrPreviewJob::sort (this=this@entry=0x55c2bc50ebd0)
at ./krusader/Panel/krpreviewjob.cpp:142
#8  0x55c2ba9d9dfd in KrPreviewJob::slotStartJob (this=0x55c2bc50ebd0) at
./krusader/Panel/krpreviewjob.cpp:101
#9  0x7f4206ae45e0 in doActivate (sender=0x55c2bc50ec00,
signal_index=3, argv=argv@entry=0x7ffdc57d7710) at kernel/qobject.cpp:3898
#10 0x7f4206add900 in QMetaObject::activate (sender=,
m=m@entry=0x7f4206d442a0 ,
local_signal_index=local_signal_index@entry=0, argv=argv@entry=0x7ffdc57d7710)
at kernel/qobject.cpp:3946
#11 0x7f4206ae84ba in QTimer::timeout (this=, _t1=...) at
.moc/moc_qtimer.cpp:205
#12 0x7f4206ad9f2f in QObject::event (this=0x55c2bc50ec00,
e=0x7ffdc57d7880) at kernel/qobject.cpp:1336
#13 0x7f420776315f in QApplicationPrivate::notify_helper (this=, receiver=0x55c2bc50ec00, e=0x7ffdc57d7880) at
kernel/qapplication.cpp:3632
#14 0x7f4206aadfca in QCoreApplication::notifyInternal2
(receiver=0x55c2bc50ec00, event=0x7ffdc57d7880) at
kernel/qcoreapplication.cpp:1063
#15 0x7f4206b048e3 in QTimerInfoList::activateTimers (this=0x55c2bb03ec80)
at kernel/qtimerinfo_unix.cpp:643
#16 0x7f4206b05164 in timerSourceDispatch (source=) at
kernel/qeventdispatcher_glib.cpp:183
#17 0x7f42051d3e6b in g_main_dispatch (context=0x7f41fc005000) at
../../../glib/gmain.c:3325
#18 g_main_context_dispatch (context=0x7f41fc005000) at
../../../glib/gmain.c:4043
#19 0x7f42051d4118 in g_main_context_iterate
(context=context@entry=0x7f41fc005000, block=block@entry=1,
dispatch=dispatch@entry=1, self=) at ../../../glib/gmain.c:4119
#20 0x7f42051d41cf in g_main_context_iteration (context=0x7f41fc005000,
may_block=may_block@entry=1) at ../../../glib/gmain.c:4184
#21 0x7f4206b0551f in QEventDispatcherGlib::processEvents
(this=0x55c2bb03b2a0, flags=...) at kernel/qeventdispatcher_glib.cpp:423
#22 0x7f4206aac98b in QEventLoop::exec (this=this@entry=0x7ffdc57d7ac0,
flags=..., flags@entry=...) at
../../include/QtCore/../../src/corelib/global/qflags.h:69
#23 0x7f4206ab4c00 in QCoreApplication::exec () at
../../include/QtCore/../../src/corelib/global/qflags.h:121
#24 0x7f4206f30bdc in QGuiApplication::exec () at
kernel/qguiapplication.cpp:1867
#25 0x7f42077630d5 in QApplication::exec () at kernel/qapplication.cpp:2824
#26 0x55c2ba9a2574 in main (argc=, argv=) at
./krusader/main.cpp:316
[Inferior 1 (process 16727) detached]

The reporter indicates this bug may be a duplicate of or related to bug 448647.

Possible duplicates by query: bug 448647, bug 425528, bug 414332, bug 284202,
bug 256794.

Reported using DrKonqi

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

[clazy] [Bug 471591] If you're not willing to help me then just kill me right now

2023-06-29 Thread KEMONO_PANTSU_EEVEE_FUCKER
https://bugs.kde.org/show_bug.cgi?id=471591

KEMONO_PANTSU_EEVEE_FUCKER  changed:

   What|Removed |Added

Product|Spam|clazy
  Component|Spam|general
 CC||smart...@kde.org
   Assignee|n...@kde.org|unassigned-b...@kde.org

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

[amor] [Bug 471595] New: Got banned on speedrun.com for no reason: https://www.speedrun.com/user/KEMONO_PANTSU

2023-06-29 Thread KEMONO_PANTSU_EEVEE_FUCKER
https://bugs.kde.org/show_bug.cgi?id=471595

Bug ID: 471595
   Summary: Got banned on speedrun.com for no reason:
https://www.speedrun.com/user/KEMONO_PANTSU
Classification: Applications
   Product: amor
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: mjo...@kde.org
  Reporter: needhelp0...@gmail.com
  Target Milestone: ---

Got banned on speedrun.com for no reason:
https://www.speedrun.com/user/KEMONO_PANTSU

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

[Spam] [Bug 471591] If you're not willing to help me then just kill me right now

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471591

Tobias Fella  changed:

   What|Removed |Added

 Resolution|--- |NOT A BUG
 Status|REPORTED|RESOLVED

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

[Spam] [Bug 471594] I hate myself in every way

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471594

Tobias Fella  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
   Assignee|schwanc...@protonmail.com   |n...@kde.org
Product|KDE MediaWiki   |Spam
 Resolution|--- |NOT A BUG
  Component|general |Spam

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

[Spam] [Bug 471435] Got banned on Phabricator with no valid reason

2023-06-29 Thread Christophe Marin
https://bugs.kde.org/show_bug.cgi?id=471435

Christophe Marin  changed:

   What|Removed |Added

   Assignee|dvra...@kde.org |n...@kde.org
  Component|General |Spam
Product|plasma-pass |Spam

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

[Spam] [Bug 471587] Kill youself

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471587

Tobias Fella  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
Product|KDE MediaWiki   |Spam
 Resolution|--- |NOT A BUG
  Component|general |Spam
   Assignee|schwanc...@protonmail.com   |n...@kde.org

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

[Spam] [Bug 471588] I HATE MYSELF AND THE ENTIRE WORLD

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471588

Tobias Fella  changed:

   What|Removed |Added

   Assignee|schwanc...@protonmail.com   |n...@kde.org
Product|KDE MediaWiki   |Spam
  Component|general |Spam
 Status|REPORTED|RESOLVED
 Resolution|--- |NOT A BUG

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

[Spam] [Bug 471589] Fucking hell

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471589

Tobias Fella  changed:

   What|Removed |Added

   Assignee|schwanc...@protonmail.com   |n...@kde.org
  Component|general |Spam
 Resolution|--- |NOT A BUG
Product|KDE MediaWiki   |Spam
 Status|REPORTED|RESOLVED

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

[Spam] [Bug 471590] I did nothing wrong and the world betrays me

2023-06-29 Thread Tobias Fella
https://bugs.kde.org/show_bug.cgi?id=471590

Tobias Fella  changed:

   What|Removed |Added

 Resolution|--- |NOT A BUG
Product|KDE MediaWiki   |Spam
   Assignee|schwanc...@protonmail.com   |n...@kde.org
  Component|general |Spam
 Status|REPORTED|RESOLVED

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

<    1   2   3   4   5   6   >