[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-03-10 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #54 from 319513...@outlook.com <319513...@outlook.com> ---
The problem should be caused by git submodule's url, I use ssh as submodule's
url for a quicker clone. But it need my private key.

I push a commit to use https but not ssh to fix this problem. It should be
fixed.

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-03-01 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #52 from 319513...@outlook.com <319513...@outlook.com> ---
Thanks for your test. :)

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-02-28 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #49 from 319513...@outlook.com <319513...@outlook.com> ---
All layouts mentioned by https://bugs.kde.org/show_bug.cgi?id=418256 has been
implemented. 

That is Row, Col and Square, it can be configured through plugin's settings
dialog.

So I think https://bugs.kde.org/show_bug.cgi?id=418256 can be closed with 7.6.0
release.

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-02-28 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #43 from 319513...@outlook.com <319513...@outlook.com> ---
Sorry, it's my mistake, I am forget to push
3fdf1b0b18f75ac9dd3027940d0daf797814788a of QtFlowLayout. 

And it should be OK now.

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-02-21 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #39 from 319513...@outlook.com <319513...@outlook.com> ---
Thanks

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-02-17 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #36 from 319513...@outlook.com <319513...@outlook.com> ---
Ok, I just made a commit. Plug can store/restore settings now.

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-02-15 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #34 from 319513...@outlook.com <319513...@outlook.com> ---
These works:

1. Move all options to a dialog : has been done today. :)
2. Saved and restored settings: will be doing at 2022/2/18(UTC+8), because I
have a 36-hour train today.

emm, where is the place for me to store settings?
~/.config/digikam/plugins/flowplugin.ini or anywhere I like?

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-02-14 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #32 from 319513...@outlook.com <319513...@outlook.com> ---
Thanks, that pr has been merged. Add support for qt6 for my plugin will be
considered also. But not this time. I just want wait for the process of
digikam.

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

[digikam] [Bug 418256] Support for album icon-view Masonry layouts

2022-02-14 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=418256

319513...@outlook.com <319513...@outlook.com> changed:

   What|Removed |Added

 CC||319513...@outlook.com

--- Comment #1 from 319513...@outlook.com <319513...@outlook.com> ---
Hi, I write some codes to implement a plugin, it might meet your needs. Give it
a look!

https://github.com/cathaysia/digikamflowplugin

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-02-14 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #28 from 319513...@outlook.com <319513...@outlook.com> ---
emm, I had do some works today, and all bugs previous should be fixed, and
three styles (Row, Col, and Square) can work normally. I had send a email to
digikam-de...@kde.org to do a pr(Because I has not the permission to make a pr
by email). And that patch has be tested on my laptop.

Looking forward to the approval of this pr. :)

(ps, PreviewThread may bring some bugs, I don't  know much about it, I add it
to plugin still, and it should works in most scenes, but for my part, I just
want add this plugin to digikm)

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-02-08 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #27 from 319513...@outlook.com <319513...@outlook.com> ---
Sorry reply too later. 

I encounter some bugs that makes this plugins can't meet my requirements. For a
compromise, I write two function to load album, the one use QThreadPool, and
anther use  PreviewLoadThread, then I add a option let user decide which loader
they like.

Besides, I rename data_loading to master, and the previous master rename to
old. And I remove raw sync codes, use signal-and-slot for a more clear code,
although its performance is slightly lower, I think it's worth it.

Let me make it clear, the bugs come from PreviewLoadThread is:

1. t->load(this->createLoadingDescription(url.toLocalFile()));, then only one
picture for every album be loaded.
2. if I use PreviewLoadThread::loadFastButLargeSynchronously(url.toLocalFile(),
1920 * 1080); then digikam will crash when I close plugins before all pictures
be loaded.

Anther way is use loadFastButLargeSynchronously inside QThreadPool, this can
solve bug 2, but I still feel some stuck when close plugin before pictures be
loaded.

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-01-25 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #25 from 319513...@outlook.com <319513...@outlook.com> ---
Hi, I am try to load images by PreviewLoadThread::load or
PreviewLoadThread::load_*, and for every album, only a picture can be loaded
successfully.

here is my core codes:

auto t = new PreviewLoadThread(this);
connect(t, &PreviewLoadThread::signalImageLoaded, this, &PicDialog::loadPic);
void PicDialog::loadPic(const LoadingDescription& desc, const DImg& dimg) {
if(dimg.isNull()) {
qDebug() << "DImg null: " << desc.filePath;
return;
}
auto* lbl = new QLabel;
auto  pix = dimg.convertToPixmap();
qDebug() << pix;
lbl->setPixmap(pix);
layout_->addWidget(lbl);
}

Then I load pictures by:

auto items = iface->currentAlbumItems();
for(auto& it: items) dialog->load(it);

void PicDialog::load(const QUrl& url) {
QSize desktopSize = qApp->primaryScreen()->geometry().size();
int   deskSize= qMax(640, qMax(desktopSize.height(),
desktopSize.width()));
t->load(url.toLocalFile(), PreviewSettings::fastPreview(), deskSize);
}

and here is it's log when open dialog:

digikam.general: Try to get preview from "/home/tea/Pictures/wallpaper/01.jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/01.jpg!960.jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/01.jpg!960.jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/01.jpg!960.jpg"
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/175751wirixiojeqbroizu.jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/175754qa7lln4zedqm9l97.jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/175756hvt94t5e2tz9g71u.jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/175756hvt94t5e2tz9g71u.jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/175756hvt94t5e2tz9g71u.jpg"
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/175800vt9lyztbyiv87yec.jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/175800vt9lyztbyiv87yec.jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/175800vt9lyztbyiv87yec.jpg"
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/1590557931-0019.jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/1590557931-0019.jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/1590557931-0019.jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/1590557931-0019.jpg"
digikam.general: Try to get preview from "/home/tea/Pictures/wallpaper/鬼刀
(3).jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from "/home/tea/Pictures/wallpaper/鬼刀
(4).jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from "/home/tea/Pictures/wallpaper/鬼刀
(6).jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/鬼刀 (6).jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/鬼刀 (6).jpg"
digikam.general: Try to get preview from "/home/tea/Pictures/wallpaper/鬼刀
(9).jpg"
digikam.general: Preview quality:  2
...
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/wallpaper28.jpg"
digikam.general: Preview quality:  2
digikam.general: Try to get preview from
"/home/tea/Pictures/wallpaper/wallpaper28.jpg"
digikam.general: Preview quality:  0
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/wallpaper28.jpg"
digikam.general: Try to load DImg preview from:
"/home/tea/Pictures/wallpaper/wallpaper28.jpg"
digikam.dimg: "/home/tea/Pictures/wallpaper/wallpaper28.jpg" : "JPEG" file
identified
digikam.metaengine: Loading metadata with "Exiv2" backend from
"/home/tea/Pictures/wallpaper/wallpaper28.jpg"
digikam.dimg.jpeg: Start of Image  ( 1 )
digikam.dimg.jpeg: JFIF APP0 marker: version 1.02, density 300x300  1  ( 1 )
digikam.dimg.jpeg: Miscellaneous marker 0xe1, length 8805  ( 1 )
digikam.dimg.jpeg: Miscellaneous marker 0xed, length 10006  ( 1 )
digikam.dimg.jpeg: Miscellaneous marker 0xe1, length 6140  ( 1 )
digikam.dimg.jpeg: Miscellaneous marker 0xe2, length 3158  ( 1 )
digikam.dimg.jpeg: Adobe APP14 marker: version 100, flags 0x4000 0x,
transform 1  ( 1 )
digikam.dimg.jpeg: Define Quantization Table 0  precision 0  ( 1 )
digikam.dimg.jpeg: Define Quantization Table 1  precision 0  ( 1 )
digikam.dimg

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-01-25 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #24 from 319513...@outlook.com <319513...@outlook.com> ---
Hi, sorry too later replay. 

I had made a commit to using PreviewloadThread:
https://github.com/cathaysia/digikamflowplugin/commit/e06105ee9fdb6d7cedd253f83916f15c39f6f7f3

But when I using PreviewloadThread, I can just load a image ervery album, I
don't know what things happened. I will try to solve this problem today. But
some time needed.

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-01-23 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #20 from 319513...@outlook.com <319513...@outlook.com> ---
But you should know is that digikam has not export PreviewLoadThread as a
interface for plugins. 

Run *grep -R PreviewLoadThread* in /usr/include/digikam can get nothing. I
don't thing it a good idea to copy PreviewLoadThread.h and
PreviewLoadThread.cpp, which depends other sources.

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-01-22 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #18 from 319513...@outlook.com <319513...@outlook.com> ---
Created attachment 145787
  --> https://bugs.kde.org/attachment.cgi?id=145787&action=edit
plugin that using PreviewLoadThread

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-01-22 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #17 from 319513...@outlook.com <319513...@outlook.com> ---
Created attachment 145785
  --> https://bugs.kde.org/attachment.cgi?id=145785&action=edit
plugin that using master code

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-01-22 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #16 from 319513...@outlook.com <319513...@outlook.com> ---
I had implement square and row layout by a simple algorithm in QtFlowLayout:
https://github.com/cathaysia/QtFlowLayout/tree/43c24711106fd365c76c7ff9b46ab391a126baa3

If you have any interesting, you can just compile it and run ctest for a skim.
But I haven't add it to digikamflowplugin. For the reason is I don't know
whether I should PreviewLoadThread or not.

In fact, I'm prefer using PreviewLoadThread , as you say, it bring more clear
codes and more image format's support, I can enjoy the ecosystem of whole
digikam. But I can't stand it's preference.

I'll upload two gifs to compare the two case, please give it a look.

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-01-21 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #15 from 319513...@outlook.com <319513...@outlook.com> ---
That (https://bugs.kde.org/show_bug.cgi?id=418256) is something interesting, if
possible, I'd like to implement normal layout(1:1) and masonry layout(row)

It should just take a little time.

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-01-18 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #13 from 319513...@outlook.com <319513...@outlook.com> ---
Hi, I had do some changes at new brach:
https://github.com/cathaysia/digikamflowplugin/tree/data_loading

I use ManagedLoadSaveThread to loading images, it makes my codes more clear.
However, I can't get more performance. To be exact, my plugin become slower,
and eat more memory.

At the first case, I use threads by threadpool:
https://github.com/cathaysia/digikamflowplugin/blob/27f3d310e5dc22a7aab28f771cf8ce0236734f31/src/PicFlowView.cpp#L205

and a thread deal 3 QPixmap: 
https://github.com/cathaysia/digikamflowplugin/blob/27f3d310e5dc22a7aab28f771cf8ce0236734f31/src/PicFlowView.cpp#L208

For the second, I scale images when it's size beyond 1920x1080:
https://github.com/cathaysia/digikamflowplugin/blob/27f3d310e5dc22a7aab28f771cf8ce0236734f31/src/PicFlowView.cpp#L187

Because all cpu works be done in sub-threads, so it's quickly.

But when I use ManagedLoadSaveThread, what can I do seems just: 

1. use LoadingModeShared:
https://github.com/cathaysia/digikamflowplugin/blob/f5e575639341dbc6656740bc90f7016739c64eb9/src/picdialog.hpp#L38
2. use PreviewSettings::fastPreview() :
https://github.com/cathaysia/digikamflowplugin/blob/f5e575639341dbc6656740bc90f7016739c64eb9/src/picdialog.cpp#L61

But both them can't obtain  significant profit.

If you try plugins that compiled by two branchs, you will find master branch
better than data_loading branch.

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-01-18 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #12 from 319513...@outlook.com <319513...@outlook.com> ---
HAHA. I can feel your enthusiasm to me. So I never depressed by your words. ;) 

Because I have not the idea to push my code to this huge project, so I write
Chinese at first. (just a toy for me), and write English is some torture for
me.

But I will use English as much as possible later. I'm sorry for my poor level
of English.

It must be happy that have such a enthusiastic and  practical man like you to
help me at new year.

For Q1, I need some time to view source code for understand it's structure and
logic. So it may take more time.

All the best.

Longtao Zhang

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

[digikam] [Bug 448593] New generic Flow View plugin for digiKam

2022-01-18 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #10 from 319513...@outlook.com <319513...@outlook.com> ---
Thanks for all your suggestions. I had do some changes. And for your
suggestions:

Q5: I translate all docs and comments to English. Sorry for my bad habits.
Q6: spdlog has been removed recently, but I forget update my documents.

Q4: I had replace c++ api with qt api as much as possible other than
std::jthread. It need some time.
Q3: Thanks again. I remove it. And remove some headers that does't need.

Q2: That forever loop can be break by
https://github.com/cathaysia/digikamflowplugin/blob/f66aa255392893ea734820e117fbd35944aded24/src/PicFlowView.cpp#L252

Q1: Thanks for this suggestion very much. I'll work at now to do this. :)

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

[digikam] [Bug 448593] new view plugin for digikam

2022-01-17 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #8 from 319513...@outlook.com <319513...@outlook.com> ---
Thanks, this has been fix at 640413057fde0e066027988225c59a3a92654aa3

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

[digikam] [Bug 448593] new view plugin for digikam

2022-01-16 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #4 from 319513...@outlook.com <319513...@outlook.com> ---
Understand. But for my part, it seems fedora has not contains these 3rd
plugins. So I am afraid I can't get any benefit from this.

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

[digikam] [Bug 448593] new view plugin for digikam

2022-01-16 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

--- Comment #2 from 319513...@outlook.com <319513...@outlook.com> ---
What you means is make my plugin as a 3rd plugin? My intention was simply to
have digikam installed with this plugin.

In this case, is my plugin compiled separately from digikam? Can I get the
header file for digikam at compile time?

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

[digikam] [Bug 448593] New: new view plugin for digikam

2022-01-16 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448593

Bug ID: 448593
   Summary: new view plugin for digikam
   Product: digikam
   Version: unspecified
  Platform: RedHat RPMs
OS: Linux
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: Plugin-Generic-GLViewer
  Assignee: digikam-bugs-n...@kde.org
  Reporter: 319513...@outlook.com
  Target Milestone: ---

Created attachment 145537
  --> https://bugs.kde.org/attachment.cgi?id=145537&action=edit
binary

Hi, I write a viewer for digikam to brought flow view, and I use it for a long
time. I am here to ask it's possible merge it to digikam's repo? It may need
some modify.

Here is it's repo: https://github.com/cathaysia/digikamflowplugin

and here some screenshot:
https://github.com/cathaysia/digikamflowplugin/tree/master/screenshot

emm, all documents and commit msgs wrote by Chinese. But I will change it to
English if this plugin can be merged.

For fedora, here is a binary:

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

[plasmashell] [Bug 448299] It's possible to enable webgl for plasmashell?

2022-01-12 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448299

--- Comment #3 from 319513...@outlook.com <319513...@outlook.com> ---
Thanks for your comments and efforts very much.  :)
I'd like to help test it if needed

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

[plasmashell] [Bug 448299] New: It's possible to enable webgl for plasmashell?

2022-01-11 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=448299

Bug ID: 448299
   Summary: It's possible to enable webgl for plasmashell?
   Product: plasmashell
   Version: 5.23.4
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: Desktop Containment
  Assignee: notm...@gmail.com
  Reporter: 319513...@outlook.com
CC: plasma-b...@kde.org
  Target Milestone: 1.0

Hi. I'm a user of wallpaper engine, and a man who implement it for Linux.
However, some wallpapers which I like used webgl, but plasmashell not support
it. So I am here to ask can we enable webgl for plasmashell?

a issue relevant  is:
https://github.com/catsout/wallpaper-engine-kde-plugin/issues/44

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

[digikam] [Bug 437845] No mysql Qt module provided for Flatpak bundle

2021-05-30 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=437845

--- Comment #5 from 319513...@outlook.com <319513...@outlook.com> ---
yes, it just beacause lack qt-runtime, but flatpak has no this :(. Thanks for
your reply. Please close this issue.

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

[digikam] [Bug 437845] No mysql Qt module provided for Flatpak bundle

2021-05-30 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=437845

--- Comment #3 from 319513...@outlook.com <319513...@outlook.com> ---
Although I change to kdeapps/digikam, but it seem no difference.


```
$ flatpak install kdeapps digikam -y   
Looking for matches…

org.kde.digikam permissions:
ipc   cups   wayland   x11  file access [1]
dbus access [2]   tags [3]

[1] host, xdg-config/kdeglobals:ro
[2] com.canonical.AppMenu.Registrar
[3] nightly


ID BranchOpRemote
Download
 1. [✓] org.kde.digikam.Locale masteri kdeapps
33.3 kB / 3.0 MB
 2. [✓] org.kde.digikammasteri kdeapps   
135.8 MB / 167.5 MB

Installation complete.
$ flatpak run org.kde.digikam 
QSocketNotifier: Can only be used with threads started with QThread
libEGL warning: wayland-egl: could not open /dev/dri/renderD128 (没有那个文件或目录)
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
```

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

[digikam] [Bug 437845] New: No mylisq privided for flatpak

2021-05-29 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=437845

Bug ID: 437845
   Summary: No mylisq privided for flatpak
   Product: digikam
   Version: 7.1.0
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Database
  Assignee: digikam-bugs-n...@kde.org
  Reporter: 319513...@outlook.com
  Target Milestone: ---

SUMMARY

flatpak not include a mysql driver, can't connect to mysql server

STEPS TO REPRODUCE
1. flatpak install digikam -y
2. try connect a mysql server

OBSERVED RESULT

"Driver not loaded"

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.

[frameworks-kio] [Bug 421213] Can no longer copy/move files into a symlinked folder

2020-05-16 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=421213

--- Comment #21 from 319513...@outlook.com <319513...@outlook.com> ---
bug fixed at archlinux today

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

[dolphin] [Bug 421322] Copy file into symbolic link folder happen error

2020-05-11 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=421322

--- Comment #5 from 319513...@outlook.com <319513...@outlook.com> ---
I found when I copy file into a symbolic link folder's subfolder could work

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

[dolphin] [Bug 421385] New: Search result not contain Chinese file

2020-05-11 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=421385

Bug ID: 421385
   Summary: Search result not contain Chinese file
   Product: dolphin
   Version: 20.04.0
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: search
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: 319513...@outlook.com
CC: kfm-de...@kde.org
  Target Milestone: ---

Created attachment 128380
  --> https://bugs.kde.org/attachment.cgi?id=128380&action=edit
Search result

SUMMARY


STEPS TO REPRODUCE
1. Open dolphin and press 'Ctrl +  F' or 'Ctrl + Shift F'
2. Try search Chinese file
3. Don't show any result

OBSERVED RESULT

Could search English file, but not suit for Chinese file, I guess this problem
happen with other language, such Japanese and Korean.

EXPECTED RESULT

Show Chinese file correctly at search result

Operating System: Arch Linux 
KDE Plasma Version: 5.18.5
KDE Frameworks Version: 5.70.0
Qt Version: 5.14.2
Kernel Version: 5.6.11-arch1-1
OS Type: 64-bit
Processors: 8 × Intel® Core™ i7-8550U CPU @ 1.80GHz
Memory: 15.5 GiB


ADDITIONAL INFORMATION

This problem happen with any folder, whether it is symbolic link or not.

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

[dolphin] [Bug 421322] Copy file into symbolic link folder happen error

2020-05-11 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=421322

319513...@outlook.com <319513...@outlook.com> changed:

   What|Removed |Added

 Resolution|DUPLICATE   |---
 Status|RESOLVED|REPORTED

--- Comment #4 from 319513...@outlook.com <319513...@outlook.com> ---
this bug still exist after rollback to plasma-workspace-5.18.5-2 and
plasma-desktop-5.18.5-2

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

[dolphin] [Bug 421322] New: Copy file into symbolic link folder happen error

2020-05-11 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=421322

Bug ID: 421322
   Summary: Copy file into symbolic link  folder happen error
   Product: dolphin
   Version: 20.04.0
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: 319513...@outlook.com
CC: kfm-de...@kde.org
  Target Milestone: ---

Created attachment 128356
  --> https://bugs.kde.org/attachment.cgi?id=128356&action=edit
problem screenshot

SUMMARY


STEPS TO REPRODUCE
1. ln -s /data/Music ~/ 
2. copy and paste a file into Music (use shortcut or drag)
3. dolphin say: file already exist. Change new name and click `OK`, you will
find this file be copyed into ~/

OBSERVED RESULT

only symbolic link folder have this problem

EXPECTED RESULT

copy file correctly

SOFTWARE/OS VERSIONS
Operating System: Arch Linux 
KDE Plasma Version: 5.18.5
KDE Frameworks Version: 5.70.0
Qt Version: 5.14.2
Kernel Version: 5.6.11-arch1-1
OS Type: 64-bit
Processors: 8 × Intel® Core™ i7-8550U CPU @ 1.80GHz
Memory: 15.5 GiB

ADDITIONAL INFORMATION

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

[frameworks-kcmutils] [Bug 420441] New: org.kde.kcm1.2 : QML module does not contain information about components contained in plugins.

2020-04-22 Thread 319513897
https://bugs.kde.org/show_bug.cgi?id=420441

Bug ID: 420441
   Summary: org.kde.kcm1.2 :  QML module does not contain
information about components contained in plugins.
   Product: frameworks-kcmutils
   Version: 5.69.0
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: general
  Assignee: kdelibs-b...@kde.org
  Reporter: 319513...@outlook.com
  Target Milestone: ---

SUMMARY
kde setting -> locale setting -> language -> add language can't work.
When I try add new language from "language", it had nothing happend.
I use "journalctl -xb" found some error : 

4月 23 11:14:50 dragon systemsettings5[14280]:
QQmlEngine::setContextForObject(): Object already has a QQmlContext
4月 23 11:14:50 dragon systemsettings5[14280]: kf5.ki18n: "1 instead of 2
arguments to message {无法找到代码为“%2”的语言的翻译文件。...} supplied before conversion."
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:39:
TypeError: Cannot read property 'LanguageCode' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:39:
TypeError: Cannot read property 'LanguageCode' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:39:
TypeError: Cannot read property 'LanguageCode' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:39:
TypeError: Cannot read property 'LanguageCode' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:39:
TypeError: Cannot read property 'LanguageCode' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:39:
TypeError: Cannot read property 'LanguageCode' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:39:
TypeError: Cannot read property 'LanguageCode' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:39:
TypeError: Cannot read property 'LanguageCode' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:39:
TypeError: Cannot read property 'LanguageCode' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:39:
TypeError: Cannot read property 'LanguageCode' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:39:
TypeError: Cannot read property 'LanguageCode' of null
4月 23 11:14:50 dragon systemsettings5[14280]:
file:///usr/share/kpackage/kcms/kcm_translations/contents/ui/main.qml:43:
TypeError: Cannot read property 'display' of null
4月 23 11:14:50 dragon sy