[ark] [Bug 476196] Ark fails to parse 7z archive if it was created with attributes omitted ('-mtr=off')

2024-04-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=476196

Elvis Angelaccio  changed:

   What|Removed |Added

   Version Fixed In||24.05
 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED

--- Comment #4 from Elvis Angelaccio  ---
I'll mark this one as fixed. As discussed on gitlab, the new libarchive-based
7z backend can handle these kind of archives just fine.

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

[ark] [Bug 468240] Ark can no longer open 7z archives ( possibly due to changes in 7zip new release )

2024-04-23 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=468240

--- Comment #13 from Elvis Angelaccio  ---
Git commit 56d9da15e9480cad8791c40e6b56beaadc1f by Elvis Angelaccio.
Committed on 23/04/2024 at 12:08.
Pushed by elvisangelaccio into branch 'release/24.05'.

libarchive: add support for unencrypted 7-zip

libarchive can extract 7-zip archives and also create them, with full
support for all the expected compression methods available in the 7-zip
format.

This commit enables the 7-zip format in the libarchive plugin, which makes
Ark always able to provide basic support for 7z archives. This was
currently possible only when the 7z binary is installed on the system,
which may not be always true (some distributions don't ship a 7z binary
by default).

Unfortunately libarchive doesn't support encrypted 7z archives yet,
which means this cannot be a drop-in replacement for the 7z plugin.
Also it doesn't allow to create multi-volume files.

But it is a first step towards deprecating the 7z plugin. This plugin has not
been always reliable in the past, since it needs to parse the CLI output
of the 7z binary. And there is the additional problem of the p7zip/7-zip
upstream projects being weirdly maintained.

Note: the minimum supported compression level is 1 instead of 0 (unlike
the 7z plugin), since the bzip2 library (used by libarchive) doesn't
accept 0 as minimum value and it would be too complicated to use
different value ranges for different compression methods.

M  +1-0README.md
M  +16   -1plugins/libarchive/kerfuffle_libarchive.json.cmake
M  +24   -0plugins/libarchive/libarchiveplugin.cpp
M  +44   -9plugins/libarchive/readwritelibarchiveplugin.cpp
M  +2-1plugins/libarchive/readwritelibarchiveplugin.h

https://invent.kde.org/utilities/ark/-/commit/56d9da15e9480cad8791c40e6b56beaadc1f

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

[ark] [Bug 468240] Ark can no longer open 7z archives ( possibly due to changes in 7zip new release )

2024-04-23 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=468240

--- Comment #12 from Elvis Angelaccio  ---
Git commit a751cf8c12c05e23280a8e60c51baa6c35e9d04a by Elvis Angelaccio.
Committed on 23/04/2024 at 10:46.
Pushed by elvisangelaccio into branch 'master'.

libarchive: add support for unencrypted 7-zip

libarchive can extract 7-zip archives and also create them, with full
support for all the expected compression methods available in the 7-zip
format.

This commit enables the 7-zip format in the libarchive plugin, which makes
Ark always able to provide basic support for 7z archives. This was
currently possible only when the 7z binary is installed on the system,
which may not be always true (some distributions don't ship a 7z binary
by default).

Unfortunately libarchive doesn't support encrypted 7z archives yet,
which means this cannot be a drop-in replacement for the 7z plugin.
Also it doesn't allow to create multi-volume files.

But it is a first step towards deprecating the 7z plugin. This plugin has not
been always reliable in the past, since it needs to parse the CLI output
of the 7z binary. And there is the additional problem of the p7zip/7-zip
upstream projects being weirdly maintained.

Note: the minimum supported compression level is 1 instead of 0 (unlike
the 7z plugin), since the bzip2 library (used by libarchive) doesn't
accept 0 as minimum value and it would be too complicated to use
different value ranges for different compression methods.

M  +1-0README.md
M  +16   -1plugins/libarchive/kerfuffle_libarchive.json.cmake
M  +24   -0plugins/libarchive/libarchiveplugin.cpp
M  +44   -9plugins/libarchive/readwritelibarchiveplugin.cpp
M  +2-1plugins/libarchive/readwritelibarchiveplugin.h

https://invent.kde.org/utilities/ark/-/commit/a751cf8c12c05e23280a8e60c51baa6c35e9d04a

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

[ark] [Bug 468240] Ark can no longer open 7z archives ( possibly due to changes in 7zip new release )

2024-03-17 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=468240

--- Comment #11 from Elvis Angelaccio  ---
(In reply to Scarlett Moore from comment #9)
> ark(28728)/(ark.kerfuffle) \[31m\[34munknown\[0m: Executing "/usr/bin/7z"
> ("l", "-slt", "/home/scarlett/Downloads/sample-1.7z") within directory
...
> ark(28728)/(ark.part) \[31munknown\[0m: No entry listed by the plugin

Looks like it fails to either run the 7z process or parse its CLI output. Does
snap allow a process to spawn another process?

Anyway, I've been working to add support for 7z archives in the libarchive
plugin: https://invent.kde.org/utilities/ark/-/merge_requests/238

Which means that Ark will be able to create and extract 7z archives even
without any 7z binary installed. Testers are welcome :)

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

[ark] [Bug 474174] Please add multithread / multicore extraction and compression

2023-11-05 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=474174

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/util
   ||ities/ark/-/commit/e0928747
   ||e26415a1b46e753c517fb83b4b2
   ||4c62c
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
   Version Fixed In||24.02

--- Comment #4 from Elvis Angelaccio  ---
Git commit e0928747e26415a1b46e753c517fb83b4b24c62c by Elvis Angelaccio, on
behalf of Zhangzhi Hu.
Committed on 05/11/2023 at 12:58.
Pushed by elvisangelaccio into branch 'master'.

Add support for xz & zstd multithread compression

xz & zstd compression was single-threaded; make it multi-threaded,
with an algorithm to calculate the ideal number of threads based
on the number of CPU cores.
FIXED-IN: 24.02

M  +18   -0plugins/libarchive/readwritelibarchiveplugin.cpp

https://invent.kde.org/utilities/ark/-/commit/e0928747e26415a1b46e753c517fb83b4b24c62c

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

[ark] [Bug 264941] Ark should support squashfs to support Snap and AppImage-Type2 packages

2023-11-05 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=264941

Elvis Angelaccio  changed:

   What|Removed |Added

Summary|Ark should support squashfs |Ark should support squashfs
   |to support Snap and |to support Snap and
   |AppImage packages   |AppImage-Type2 packages

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

[ark] [Bug 399949] [libzip] Extract files from multivolume ZIP archives not working

2023-10-13 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=399949

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/util
   ||ities/ark/-/commit/142080ba
   ||b56c2193767635593979c6e8db3
   ||1a594
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #8 from Elvis Angelaccio  ---
Git commit 142080bab56c2193767635593979c6e8db31a594 by Elvis Angelaccio, on
behalf of Ilya Pominov.
Committed on 13/10/2023 at 18:47.
Pushed by elvisangelaccio into branch 'master'.

[libzipplugin] Add support for multi-volume archives

Add support for multi-volume archives (read-only mode)

M  +195  -21   plugins/libzipplugin/libzipplugin.cpp
M  +7-0plugins/libzipplugin/libzipplugin.h

https://invent.kde.org/utilities/ark/-/commit/142080bab56c2193767635593979c6e8db31a594

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

[ark] [Bug 467654] Akr fails to open some valid rar files saying: "The archive is empty or Ark could not open its content."

2023-05-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=467654

--- Comment #4 from Elvis Angelaccio  ---
Does it happen with all rar files or just some?

Any chance you can upload an affected file?

Also, please check which RAR plugin are you using (you can do it in the Ark
settings).

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

[ark] [Bug 469583] The link to Ark’s homepage redirects

2023-05-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=469583

--- Comment #1 from Elvis Angelaccio  ---
Do you feel like submitting a patch for this? :)

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

[ark] [Bug 459418] Ark should check if there is sufficient free space available in destination before start extraction

2023-02-27 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459418

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/util |https://invent.kde.org/util
   |ities/ark/commit/fcd9a966a5 |ities/ark/commit/6cbcbb4a79
   |f6a2180431fddf331447bef2434 |72c0887ab8e8be4c7ebd7ff5f27
   |fc3 |e00

--- Comment #2 from Elvis Angelaccio  ---
Git commit 6cbcbb4a7972c0887ab8e8be4c7ebd7ff5f27e00 by Elvis Angelaccio, on
behalf of Nikita Karpei.
Committed on 27/02/2023 at 22:19.
Pushed by elvisangelaccio into branch 'release/22.12'.

Fix free space check
FIXED-IN: 22.12.3


(cherry picked from commit fcd9a966a5f6a2180431fddf331447bef2434fc3)

M  +6-0kerfuffle/archiveentry.cpp
M  +3-0kerfuffle/archiveentry.h
M  +1-1kerfuffle/archiveinterface.cpp
M  +11   -5kerfuffle/jobs.cpp
M  +1-0plugins/libarchive/libarchiveplugin.cpp

https://invent.kde.org/utilities/ark/commit/6cbcbb4a7972c0887ab8e8be4c7ebd7ff5f27e00

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

[ark] [Bug 459418] Ark should check if there is sufficient free space available in destination before start extraction

2023-02-27 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459418

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/util
   ||ities/ark/commit/fcd9a966a5
   ||f6a2180431fddf331447bef2434
   ||fc3
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED
   Version Fixed In||22.12.3

--- Comment #1 from Elvis Angelaccio  ---
Git commit fcd9a966a5f6a2180431fddf331447bef2434fc3 by Elvis Angelaccio, on
behalf of Nikita Karpei.
Committed on 27/02/2023 at 18:59.
Pushed by elvisangelaccio into branch 'master'.

Fix free space check
FIXED-IN: 22.12.3

M  +6-0kerfuffle/archiveentry.cpp
M  +3-0kerfuffle/archiveentry.h
M  +1-1kerfuffle/archiveinterface.cpp
M  +11   -5kerfuffle/jobs.cpp
M  +1-0plugins/libarchive/libarchiveplugin.cpp

https://invent.kde.org/utilities/ark/commit/fcd9a966a5f6a2180431fddf331447bef2434fc3

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

[gwenview] [Bug 439697] Gwenview crashes in Gwenview::RasterImageItem::paint() when trying to rotate a jpg file quickly multiple times

2023-01-07 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=439697

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||elvis.angelac...@kde.org

--- Comment #14 from Elvis Angelaccio  ---
I was also hit by this crash.

Here's my stacktrace with debug symbols:

#0  __memcpy_avx_unaligned_erms () at
../sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S:544
#1  0x7558e9b0 in memcpy (__len=, __src=,
__dest=, __dest=, __src=,
__len=) at /usr/include/bits/string_fortified.h:29
#2  QImage::copy (this=0x5654d5a0, r=...) at image/qimage.cpp:1239
#3  0x77d0c651 in Gwenview::RasterImageItem::paint
(this=0x5684bc30, painter=0x7fffccc0) at
/home/elvis/dev/kde/gwenview/lib/documentview/rasterimageitem.cpp:105
#4  0x760a4a32 in QGraphicsScenePrivate::draw
(this=this@entry=0x55a5d9d0, item=item@entry=0x5684bc30,
painter=painter@entry=0x7fffccc0, viewTransform=viewTransform@entry=0x0, 
transformPtr=transformPtr@entry=0x566f0910,
exposedRegion=exposedRegion@entry=0x55af2dc0, widget=,
opacity=opacity@entry=1, effectTransform=,
wasDirtyParentSceneTransform=, 
drawItem=) at graphicsview/qgraphicsscene.cpp:4981
#5  0x760a52b7 in QGraphicsScenePrivate::drawSubtreeRecursive
(this=this@entry=0x55a5d9d0, item=0x5684bc30,
painter=painter@entry=0x7fffccc0, viewTransform=viewTransform@entry=0x0, 
exposedRegion=exposedRegion@entry=0x55af2dc0,
widget=widget@entry=0x55b73820, parentOpacity=parentOpacity@entry=1,
effectTransform=0x0) at graphicsview/qgraphicsscene.cpp:4873
#6  0x760a478a in QGraphicsScenePrivate::draw
(this=this@entry=0x55a5d9d0, item=item@entry=0x5683c740,
painter=painter@entry=0x7fffccc0, viewTransform=viewTransform@entry=0x0, 
transformPtr=transformPtr@entry=0x5684ad20,
exposedRegion=exposedRegion@entry=0x55af2dc0, widget=,
opacity=opacity@entry=1, effectTransform=,
wasDirtyParentSceneTransform=, 
drawItem=) at graphicsview/qgraphicsscene.cpp:5013
#7  0x760a52b7 in QGraphicsScenePrivate::drawSubtreeRecursive
(this=this@entry=0x55a5d9d0, item=0x5683c740,
painter=painter@entry=0x7fffccc0, viewTransform=viewTransform@entry=0x0, 
exposedRegion=exposedRegion@entry=0x55af2dc0,
widget=widget@entry=0x55b73820, parentOpacity=parentOpacity@entry=1,
effectTransform=0x0) at graphicsview/qgraphicsscene.cpp:4873
#8  0x760a478a in QGraphicsScenePrivate::draw (this=0x55a5d9d0,
item=0x560d5560, painter=0x7fffccc0, viewTransform=,
transformPtr=, exposedRegion=, 
widget=, opacity=, effectTransform=, wasDirtyParentSceneTransform=, drawItem=)
at graphicsview/qgraphicsscene.cpp:5013
#9  0x7607be0c in QGraphicsItemEffectSourcePrivate::draw
(this=0x5605b690, painter=0x7fffccc0) at
graphicsview/qgraphicsitem.cpp:11331
#10 0x76109f1a in QGraphicsEffectSource::draw (this=0x566dcb60,
painter=0x7fffccc0) at effects/qgraphicseffect_p.h:90
#11 0x760a56b4 in QGraphicsScenePrivate::drawSubtreeRecursive
(this=, item=, painter=0x7fffccc0,
viewTransform=, exposedRegion=0x55af2dc0,
widget=0x55b73820, 
parentOpacity=, effectTransform=0x0) at
graphicsview/qgraphicsscene.cpp:4867
#12 0x760c84a4 in QGraphicsScenePrivate::drawItems
(widget=0x55b73820, exposedRegion=, viewTransform=0x0,
painter=0x7fffccc0, this=) at
graphicsview/qgraphicsscene.cpp:4735
#13 QGraphicsView::paintEvent (this=, event=) at
graphicsview/qgraphicsview.cpp:3561
#14 0x75daf514 in QWidget::event (this=0x55a81d00,
event=0x7fffd040) at kernel/qwidget.cpp:8826
#15 0x75e5dac3 in QFrame::event (this=0x55a81d00, e=0x7fffd040)
at widgets/qframe.cpp:550
#16 0x74e8cc02 in
QCoreApplicationPrivate::sendThroughObjectEventFilters
(receiver=receiver@entry=0x55b73820, event=event@entry=0x7fffd040) at
kernel/qcoreapplication.cpp:1190
#17 0x75d78b4c in QApplicationPrivate::notify_helper (this=, receiver=0x55b73820, e=0x7fffd040) at
kernel/qapplication.cpp:3634
#18 0x74e8cf98 in QCoreApplication::notifyInternal2
(receiver=0x55b73820, event=0x7fffd040) at
kernel/qcoreapplication.cpp:1064
#19 0x75da33db in QWidgetPrivate::sendPaintEvent
(this=this@entry=0x55b73980, toBePainted=...) at kernel/qwidget.cpp:5479
#20 0x75da47b6 in QWidgetPrivate::drawWidget (this=0x55b73980,
pdev=0x566e4808, rgn=..., offset=..., flags=..., sharedPainter=, repaintManager=) at kernel/qwidget.cpp:5429
#21 0x75d84890 in QWidgetRepaintManager::paintAndFlush
(this=0x55eba0b0) at kernel/qwidgetrepaintmanager.cpp:1016
#22 0x75daf1e4 in QWidget::event (this=0x558cc8f0,
event=0x55ed3f00) at kernel/qwidget.cpp:8990
#23 0x774c527e in KXmlGuiWindow::event (this=0x558cc8f0,
ev=0x55ed3f00) at
/usr/src

[valgrind] [Bug 452758] Valgrind does not read properly DWARF5 as generated by Clang14

2023-01-07 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=452758

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||elvis.angelac...@kde.org

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

[ark] [Bug 423895] Allow specifying filename and/or password encodings via unar

2022-12-04 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=423895

--- Comment #3 from Elvis Angelaccio  ---
See https://bugs.kde.org/show_bug.cgi?id=393901#c12

With that solution we would be able to handle non-unicode password with the
libzip plugin itself.

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

[ark] [Bug 423894] Enable unar to extract ZIP files

2022-12-04 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=423894

--- Comment #2 from Elvis Angelaccio  ---
I played a bit with The Unarchiver with zip files. One nice feature is that The
Unarchive does its own encoding probing which works quite well on some
archives.

So while my concern about addition complexity is still valid, it might still
make sense to add zip support to the unarchiver plugin.

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

[ark] [Bug 393901] can't unzip password protected files with password not in UTF-8 encoding

2022-12-04 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=393901

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||aa...@kde.org
  Component|general |plugins

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

[ark] [Bug 444032] Ark zstd tarball compress failed due to non-ascii character in filenames

2022-12-04 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=444032

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #3 from Elvis Angelaccio  ---
Please provide the required missing information, thanks.

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

[ark] [Bug 378904] Ark should use charset auto-detection for filenames

2022-12-04 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=378904

--- Comment #16 from Elvis Angelaccio  ---
Update on this issue: I played a bit with encoding probing using both
KEncodingProber and ICU.

The biggest issue with this approach is that filenames are usually very short,
so the prober does not have enough data to properly guess the correct encoding.

One possible solution could be the following: we add KEncodingProber support in
the libzip plugin (Ark's default plugin for zip files). If KEncodingProber
detects one or more non-unicode encodings, Ark would show a notification to the
user asking if they want to attempt to fix garbled filenames, if any. If the
user confirms, the libzip plugin would then reload the archive and convert the
filenames from the detected encoding to the standard UTF-16 encoding used by
Qt. This "opt-in" step is required because if we do it automatically we could
break the normal workflow for valid zip archives that only contain UTF-8
filenames (since again, the probing is not precise and could detect a wrong
encoding for a valid UTF-8 filename, and there is the addition overhead problem
mentioned in previous comments).

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

[ark] [Bug 324978] Ark couldn't correctly extract files with non-Unicode filename

2022-12-04 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=324978

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #18 from Elvis Angelaccio  ---
Actually, there is bug #378904 which track the same issue and has more
information. Let's keep the discussion in a single place.

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

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

[ark] [Bug 378904] Ark should use charset auto-detection for filenames

2022-12-04 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=378904

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||frank...@goodhorse.idv.tw

--- Comment #15 from Elvis Angelaccio  ---
*** Bug 324978 has been marked as a duplicate of this bug. ***

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

[ark] [Bug 324978] Ark couldn't correctly extract files with non-Unicode filename

2022-12-04 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=324978

--- Comment #17 from Elvis Angelaccio  ---
Update on this issue: I played a bit with encoding probing using both
KEncodingProber and ICU.

The biggest issue with this approach is that filenames are usually very short,
so the prober does not have enough data to properly guess the correct encoding.

One possible solution could be the following: we add KEncodingProber support in
the libzip plugin (Ark's default plugin for zip files). If KEncodingProber
detects one or more non-unicode encodings, Ark would show a notification to the
user asking if they want to attempt to fix garbled filenames, if any. If the
user confirms, the libzip plugin would then reload the archive and convert the
filenames from the detected encoding to the standard UTF-16 encoding used by
Qt. This "opt-in" step is required because if we do it automatically we could
break the normal workflow for valid zip archives that only contain UTF-8
filenames (since again, the probing is not precise and could detect a wrong
encoding for a valid UTF-8 filename).

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

[ark] [Bug 431348] rar files with a unicode name containing non-latin characters cannot be opened

2022-12-03 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=431348

Elvis Angelaccio  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #8 from Elvis Angelaccio  ---
@Justin: the error you attached was caused by the fact that you did not have
RAR plugins available.

I can open the attached test file just fine with both the Unarchiver and RAR
plugins.

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

[ark] [Bug 444032] Ark zstd tarball compress failed due to non-ascii character in filenames

2022-12-03 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=444032

Elvis Angelaccio  changed:

   What|Removed |Added

  Component|general |plugins

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

[ark] [Bug 393901] can't unzip password protected files with password not in UTF-8 encoding

2022-12-03 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=393901

--- Comment #12 from Elvis Angelaccio  ---
I played a bit with the test file (thanks for that!).

If we convert the UTF-16 password provided by the ark password dialog to the
windows-1250 encoding using QTextCodec, the archive is extracted just fine
(since libzip just uses the raw bytes and doesn't care about the encoding). 

The problem is: how do we ask the user which encoding wants to use for the
password? We can't really do it in the password dialog, because ark uses the
general-purpose KPasswordDialog provided by kwidgetsaddons.

The easiest thing could be to add a dropdown menu in the ark settings to
configure which encoding to use for passwords.

There is the additional problem that QTextCodec is gone in Qt6 and the
replacement doesn't yet have feature parity: https://phabricator.kde.org/T14154

But since we need QTextCodec for Kate I don't think would be too bad if we keep
using it in Ark too.

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

[ark] [Bug 462162] Ark does not open .sit archives.

2022-11-24 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=462162

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/util
   ||ities/ark/commit/98c8d3f32c
   ||f6a4b65b0b5c59138ce6ae21bf0
   ||0a3
   Version Fixed In||23.04
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #5 from Elvis Angelaccio  ---
Git commit 98c8d3f32cf6a4b65b0b5c59138ce6ae21bf00a3 by Elvis Angelaccio.
Committed on 24/11/2022 at 21:48.
Pushed by elvisangelaccio into branch 'master'.

Add support for Stuffit archives

Unarchiver can extract unencrypted stuffit archives.

Credits to photogamut.org for the test file: 
http://photogamut.org/E_ICC_profile.html
FIXED-IN: 23.04

M  +2-1README.md
A  +---autotests/kerfuffle/data/test.sit
M  +8-0autotests/kerfuffle/extracttest.cpp
M  +7-0autotests/kerfuffle/loadtest.cpp
M  +7-0autotests/plugins/cliunarchiverplugin/cliunarchivertest.cpp
A  +---autotests/plugins/cliunarchiverplugin/data/test.sit
M  +2-1plugins/cliunarchiverplugin/kerfuffle_cliunarchiver.json.cmake

https://invent.kde.org/utilities/ark/commit/98c8d3f32cf6a4b65b0b5c59138ce6ae21bf00a3

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

[ark] [Bug 462162] Ark does not open .sit archives.

2022-11-24 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=462162

--- Comment #4 from Elvis Angelaccio  ---
(In reply to Lukas Sommer from comment #2)
> Yes, my use case was the file
> http://photogamut.org/Downloads/PhotoGamutRGB_avg6c.sit which was downloaded
> from http://photogamut.org/E_ICC_profile.html It contains only one single
> file: PhotoGamutRGB_avg6c.icc
> 
> According to Wikipedia https://en.wikipedia.org/wiki/StuffIt the unarchiver
> does not support the most recent versions of the .sit format.

Thanks for the file. Indeed unarchiver can extract it just fine. It doesn't
seem to support encrypted stuffit archives but I hope they are not so common :)

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

[ark] [Bug 462162] Ark does not open .sit archives.

2022-11-23 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=462162

--- Comment #1 from Elvis Angelaccio  ---
Yes, we can try with the unarchiver plugin.

Any chance you can upload a test .sit archive?

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

[plasmashell] [Bug 460493] Blurry "unread notifications" icon on HiDpi screen in a dual monitor setup with mixed scaling

2022-11-07 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=460493

Elvis Angelaccio  changed:

   What|Removed |Added

Summary|Blurry "unread  |Blurry "unread
   |notifications" icon on  |notifications" icon on
   |HiDpi screens   |HiDpi screen in a dual
   ||monitor setup with mixed
   ||scaling

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

[plasmashell] [Bug 460493] Blurry "unread notifications" icon on HiDpi screens

2022-11-05 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=460493

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #6 from Elvis Angelaccio  ---
(In reply to Fushan Wen from comment #2)
> Can you test
> https://invent.kde.org/frameworks/plasma-framework/-/merge_requests/556 to
> see if the bug is fixed?

Tested this patch but unfortunately doesn't fix it.

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

[ark] [Bug 461453] tar.gz are treated as gz

2022-11-05 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=461453

--- Comment #1 from Elvis Angelaccio  ---
What does "xdg-mime query filetype " shows you?

Please also run the same command on a tar.bz2/tar.xz file.

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

[plasmashell] [Bug 460493] Blurry "unread notifications" icon on HiDpi screens

2022-11-03 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=460493

--- Comment #5 from Elvis Angelaccio  ---
(In reply to Fushan Wen from comment #2)
> Can you test
> https://invent.kde.org/frameworks/plasma-framework/-/merge_requests/556 to
> see if the bug is fixed?

I'll try, thanks.

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

[plasmashell] [Bug 460493] Blurry "unread notifications" icon on HiDpi screens

2022-11-03 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=460493

--- Comment #4 from Elvis Angelaccio  ---
(In reply to Nate Graham from comment #1)
> How odd. Never seen this myself with ma 4k screen with 200% scaling.
> 
> Are you using Wayland or X11?

Wayland. I also forgot to mention that I have a dual-monitor setup, the 2nd
monitor has fullhd resolution and 100% scaling.

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

[ark] [Bug 458908] Cannot extract lz4 with single file inside

2022-11-02 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=458908

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/util
   ||ities/ark/commit/69453c8398
   ||74d0756add49910d17268a8c7b0
   ||59c
   Version Fixed In||22.12.0
 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #5 from Elvis Angelaccio  ---
Git commit 69453c839874d0756add49910d17268a8c7b059c by Elvis Angelaccio.
Committed on 02/11/2022 at 22:59.
Pushed by elvisangelaccio into branch 'master'.

Enable libarchive raw format to support "single-file" archives

libarchive provides a "raw format" that returns a single fake entry
called 'data' and the data for that entry is the whole input archive.

We can use this raw format to handle the "single-file" archives for
which we had the special KArchive-based singlefile plugins.
The advantage is that libarchive supports more formats than KArchive. In
particular with this commit we add support for the following new
formats that KArchive cannot handle:

- application/zlib
- application/x-lz4
- application/x-lzip
- application/x-lrzip
- application/x-lzop

Note 1: This fake 'data' entry requires a bunch of small changes in different
places, for which we use the recently 'displayName' property of
Archive::Entry.

Note 2: the documentation of archive_read_support_format_raw says that
it should not be always enabled, so we only enable it if we have a
"single-file" mimetype. For this purpose we generate in cmake a
LIBARCHIVE_RAW_MIMETYPES define that will be automatically updated when
adding new future mimetypes.
FIXED-IN: 22.12.0

M  +1-1kerfuffle/archiveentry.cpp
M  +1-1kerfuffle/archiveentry.h
M  +9-1kerfuffle/jobs.cpp
M  +1-1part/archivemodel.cpp
M  +1-2part/arkviewer.cpp
M  +1-1part/arkviewer.h
M  +3-6part/infopanel.cpp
M  +7-1part/part.cpp
M  +18   -0plugins/libarchive/CMakeLists.txt
M  +79   -29   plugins/libarchive/libarchiveplugin.cpp
M  +3-1plugins/libarchive/libarchiveplugin.h

https://invent.kde.org/utilities/ark/commit/69453c839874d0756add49910d17268a8c7b059c

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

[kio-gdrive] [Bug 439639] kio-gdrive (built against qtkeychain!) should no longer use "Akonadi Resources for Google Services" and needs regular re-authentication with a private ID,secret pair

2022-11-01 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=439639

--- Comment #12 from Elvis Angelaccio  ---
(In reply to Nate Graham from comment #10)
> Thanks Elvis. This seems better indeed. Does the UI guide the user in the
> direction of clicking that checkbox, so they can figure it out?

I attached a zip with some screenshots, so that you can have an idea. Basically
you need to click "Advanced" and then click to "Go to KDE KIO Worker...".

Given that you need to self-compile kio-gdrive and explicitly disable the
recommended KAccounts backend in order to get to this screen, I think it's not
too bad. I'm not aware of any distributions that disables the KAccounts
backend, or we would have received a lot more bug reports :)

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

[kio-gdrive] [Bug 439639] kio-gdrive (built against qtkeychain!) should no longer use "Akonadi Resources for Google Services" and needs regular re-authentication with a private ID,secret pair

2022-11-01 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=439639

--- Comment #11 from Elvis Angelaccio  ---
Created attachment 153390
  --> https://bugs.kde.org/attachment.cgi?id=153390=edit
screens of google oauth window

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

[dolphin] [Bug 445527] Dolphin crashes when closed while Ark compresses a file

2022-11-01 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=445527

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||elvis.angelac...@kde.org

--- Comment #10 from Elvis Angelaccio  ---
(In reply to Patrick Silva from comment #7)
> This fix seems related
> https://invent.kde.org/utilities/ark/-/commit/
> 291f8927211a036bf0c84e8548061c52b235c2dc

Correct.

(In reply to Andrey from comment #8)
> What about BUG 432891?

This is unrelated instead, and still an issue.

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

[ark] [Bug 459917] Special characters like ™ in archive filename and files/folders within archive cause issues during extraction

2022-10-30 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459917

--- Comment #5 from Elvis Angelaccio  ---
(In reply to the_iceqb from comment #3)
> Created attachment 153321 [details]
> Test File

Does this file reproduce the issue on your steam deck?

It opens fine for me on my steam deck. And it works fine with ark on a normal
PC with both the unrar and unarchive backends.

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

[ark] [Bug 458908] Cannot extract lz4 with single file inside

2022-10-30 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=458908

--- Comment #4 from Elvis Angelaccio  ---
(In reply to Elvis Angelaccio from comment #3)
> I played a bit with the libarchive raw filter and it seems to work fine.
> There are a couple of quirks that need adjustments, but overall I believe we
> can use it and, indeed, drop the single-file plugin.
> 
> Btw this issue doesn't affect only lz4, but also all the other compression
> formats that are currently unsopported by KArchive (lzo, lzip, lrzip, ...)

https://invent.kde.org/utilities/ark/-/merge_requests/151 if you want to try it
:)

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

[kio-gdrive] [Bug 439639] kio-gdrive (built against qtkeychain!) should no longer use "Akonadi Resources for Google Services" and needs regular re-authentication with a private ID,secret pair

2022-10-30 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=439639

--- Comment #9 from Elvis Angelaccio  ---
(In reply to Elvis Angelaccio from comment #6)
> Back in 2019 I tried to request new API keys for the qtkeychain backend,
> butI got fed up by Google bureaucracy and gave up.
> 
> I think we should really drop the qtkeychain backend since it's been broken
> for years now. The KAccounts backend is the way to go.

I pushed these keys to master. They do work as long as you click the "I trust
KDE e.V. as developer" button in the google auth screen. Not ideal but I think
it's better than shipping the old credentials that have been broken for years.

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

[kio-gdrive] [Bug 439639] kio-gdrive (built against qtkeychain!) should no longer use "Akonadi Resources for Google Services" and needs regular re-authentication with a private ID,secret pair

2022-10-30 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=439639

--- Comment #8 from Elvis Angelaccio  ---
Git commit 6d7456fde9762bf76007388d17b7367b20160ac4 by Elvis Angelaccio.
Committed on 30/10/2022 at 11:14.
Pushed by elvisangelaccio into branch 'master'.

Update Google Drive credentials for qtkeychain backend

These credentials were created back in Akademy 2019 but were never
shipped because Google never verified the "OAuth consent screen" shown
to the users. (I never understood if Google didn't like something or if
simply no one at Google looked at it).

However, these credentials do work if you go in the "advanced" section
of the oauth screen and click on the "I trust KDE e.V. as developer"
button. So I think is better to ship them anyway, rather than ship the
old credentials that have been broken for years.

The qtkeychain backend is disabled by default anyway and is only a fallback
for those who don't want to use the main KAccounts backend, which is the
recommended one.
CCMAIL: kde-ev-bo...@kde.org

M  +2-2src/keychainaccountmanager.cpp

https://invent.kde.org/network/kio-gdrive/commit/6d7456fde9762bf76007388d17b7367b20160ac4

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

[ark] [Bug 458908] Cannot extract lz4 with single file inside

2022-10-26 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=458908

Elvis Angelaccio  changed:

   What|Removed |Added

  Component|general |plugins

--- Comment #3 from Elvis Angelaccio  ---
I played a bit with the libarchive raw filter and it seems to work fine. There
are a couple of quirks that need adjustments, but overall I believe we can use
it and, indeed, drop the single-file plugin.

Btw this issue doesn't affect only lz4, but also all the other compression
formats that are currently unsopported by KArchive (lzo, lzip, lrzip, ...)

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

[plasmashell] [Bug 460493] New: Blurry "unread notifications" icon on HiDpi screens

2022-10-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=460493

Bug ID: 460493
   Summary: Blurry "unread notifications" icon on HiDpi screens
Classification: Plasma
   Product: plasmashell
   Version: 5.26.0
  Platform: Archlinux
OS: Linux
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: Notifications
  Assignee: plasma-b...@kde.org
  Reporter: elvis.angelac...@kde.org
CC: k...@privat.broulik.de
  Target Milestone: 1.0

Created attachment 152852
  --> https://bugs.kde.org/attachment.cgi?id=152852=edit
screenshot of blurry "unread notifications" icon

On my 4k 27'' monitor with 200% scaling, I always get a blurry icon in the
notification plasmoid when I have unread notifications. See attached
screenshot.

The other icons in the notifications plasmoid looks all good (e.g. the one when
you enable the "Do Not Disturb" mode), so I believe the "unread notifications"
icon is the only one affected by this issue.


SOFTWARE/OS VERSIONS
KDE Plasma Version: 5.26
KDE Frameworks Version: 5.99
Qt Version: 5.15.6

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

[kronometer] [Bug 438167] Hitting enter when writing notes for laps

2022-10-07 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=438167

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/util |https://invent.kde.org/util
   |ities/kronometer/commit/764 |ities/kronometer/commit/fd1
   |1dd8c56121de2473435a96c0e84 |721b79cd06663f4ac89c730d53e
   |aa904bb537  |a6658d0d55
   Version Fixed In||2.3.0

--- Comment #4 from Elvis Angelaccio  ---
Git commit fd1721b79cd06663f4ac89c730d53ea6658d0d55 by Elvis Angelaccio.
Committed on 07/10/2022 at 17:25.
Pushed by elvisangelaccio into branch '2.3'.

Fix Enter creating a new line when editing a note
FIXED-IN: 2.3.0

(cherry picked from commit aa17b213e82e8d50a78b3e6157363080ecac23ac)

M  +1-0src/gui/CMakeLists.txt
A  +30   -0src/gui/lapitemdelegate.cpp [License: GPL(v2.0+)]
A  +33   -0src/gui/lapitemdelegate.h [License: GPL(v2.0+)]
M  +13   -1src/gui/mainwindow.cpp
M  +2-0src/gui/mainwindow.h

https://invent.kde.org/utilities/kronometer/commit/fd1721b79cd06663f4ac89c730d53ea6658d0d55

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

[kronometer] [Bug 438167] Hitting enter when writing notes for laps

2022-10-07 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=438167

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/util |https://invent.kde.org/util
   |ities/kronometer/commit/aa1 |ities/kronometer/commit/764
   |7b213e82e8d50a78b3e61573630 |1dd8c56121de2473435a96c0e84
   |80ecac23ac  |aa904bb537

--- Comment #3 from Elvis Angelaccio  ---
Git commit 7641dd8c56121de2473435a96c0e84aa904bb537 by Elvis Angelaccio, on
behalf of Johnny Jazeix.
Committed on 07/10/2022 at 17:19.
Pushed by elvisangelaccio into branch 'cherry-pick-aa17b213'.

Fix Enter creating a new line when editing a note


(cherry picked from commit aa17b213e82e8d50a78b3e6157363080ecac23ac)

M  +1-0src/gui/CMakeLists.txt
A  +30   -0src/gui/lapitemdelegate.cpp [License: GPL(v2.0+)]
A  +33   -0src/gui/lapitemdelegate.h [License: GPL(v2.0+)]
M  +13   -1src/gui/mainwindow.cpp
M  +2-0src/gui/mainwindow.h

https://invent.kde.org/utilities/kronometer/commit/7641dd8c56121de2473435a96c0e84aa904bb537

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

[kronometer] [Bug 438167] Hitting enter when writing notes for laps

2022-10-07 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=438167

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/util
   ||ities/kronometer/commit/aa1
   ||7b213e82e8d50a78b3e61573630
   ||80ecac23ac
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #2 from Elvis Angelaccio  ---
Git commit aa17b213e82e8d50a78b3e6157363080ecac23ac by Elvis Angelaccio, on
behalf of Johnny Jazeix.
Committed on 07/10/2022 at 17:15.
Pushed by elvisangelaccio into branch 'master'.

Fix Enter creating a new line when editing a note

M  +1-0src/gui/CMakeLists.txt
A  +30   -0src/gui/lapitemdelegate.cpp [License: GPL(v2.0+)]
A  +33   -0src/gui/lapitemdelegate.h [License: GPL(v2.0+)]
M  +13   -1src/gui/mainwindow.cpp
M  +2-0src/gui/mainwindow.h

https://invent.kde.org/utilities/kronometer/commit/aa17b213e82e8d50a78b3e6157363080ecac23ac

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

[ark] [Bug 104404] Support for file type ARJ

2022-10-05 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=104404

Elvis Angelaccio  changed:

   What|Removed |Added

   Version Fixed In|21.04   |22.12
  Latest Commit|https://commits.kde.org/ark |https://commits.kde.org/ark
   |/89832ce1dc272c1b7ff5d1d847 |/01d0a2dd13fd888dd75caa5844
   |6071a48e1e08f1  |ecb69f40e6ae00

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

[ark] [Bug 104404] Support for file type ARJ

2022-10-05 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=104404

--- Comment #15 from Elvis Angelaccio  ---
https://invent.kde.org/utilities/ark/-/commit/01d0a2dd13fd888dd75caa5844ecb69f40e6ae00

Ark master (future 22.12 KDE Gear release) now has a proper backend to handle
the ARJ format. Thanks to Ilya Pominov for the contribution.

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

[ark] [Bug 459346] Extraction via context menu of Dolphin is aborted when I quit Dolphin

2022-09-28 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459346

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/util |https://invent.kde.org/util
   |ities/ark/commit/f9f71649bb |ities/ark/commit/291f892721
   |a9ada37a4b4519bae1d14c33b9d |1a036bf0c84e8548061c52b235c
   |2b4 |2dc

--- Comment #5 from Elvis Angelaccio  ---
Git commit 291f8927211a036bf0c84e8548061c52b235c2dc by Elvis Angelaccio.
Committed on 28/09/2022 at 17:28.
Pushed by elvisangelaccio into branch 'release/22.08'.

Stop killing extraction/compression jobs when dolphin quits
FIXED-IN: 22.08.2


(cherry picked from commit f9f71649bba9ada37a4b4519bae1d14c33b9d2b4)

M  +3-1app/compressfileitemaction.cpp
M  +3-1app/extractfileitemaction.cpp

https://invent.kde.org/utilities/ark/commit/291f8927211a036bf0c84e8548061c52b235c2dc

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

[ark] [Bug 459346] Extraction via context menu of Dolphin is aborted when I quit Dolphin

2022-09-28 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459346

Elvis Angelaccio  changed:

   What|Removed |Added

   Version Fixed In||22.08.2
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/util
   ||ities/ark/commit/f9f71649bb
   ||a9ada37a4b4519bae1d14c33b9d
   ||2b4
 Resolution|--- |FIXED

--- Comment #4 from Elvis Angelaccio  ---
Git commit f9f71649bba9ada37a4b4519bae1d14c33b9d2b4 by Elvis Angelaccio.
Committed on 28/09/2022 at 17:21.
Pushed by elvisangelaccio into branch 'master'.

Stop killing extraction/compression jobs when dolphin quits
FIXED-IN: 22.08.2

M  +3-1app/compressfileitemaction.cpp
M  +3-1app/extractfileitemaction.cpp

https://invent.kde.org/utilities/ark/commit/f9f71649bba9ada37a4b4519bae1d14c33b9d2b4

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

[ark] [Bug 458334] Ark does not support using the 7zz binary for 7z archives

2022-09-28 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=458334

--- Comment #4 from Elvis Angelaccio  ---
(In reply to nl6720 from comment #3)
> The fact that Ark needed to specifically add support for the 7z binary being
> the official 7-zip, shows that thoughtlessly symlinking 7z to 7zz is not
> wise.

I disagree. Ark is the exception here, because it uses 7z in advanced way, so
we had no choice.

Think about the common case. The 7z binary has been around for years and
software in the wild assumed they could extract a random 7zip archive with a
simple call to "7z x foo.7z".

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

[ark] [Bug 454181] Ark doesn't preview HTML files anymore

2022-09-27 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=454181

--- Comment #9 from Elvis Angelaccio  ---
(In reply to David from comment #8)
> (In reply to Elvis Angelaccio from comment #7)
> > Can you please attach a test archive that triggers this issue?
> 
> Happens with every single HTML file.

Well, I can't reproduce it then.

It would also help a screenshot of what you are seeing.

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

[ark] [Bug 458334] Ark does not support using the 7zz binary for 7z archives

2022-09-27 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=458334

--- Comment #2 from Elvis Angelaccio  ---
While it would be possible to adapt Ark to support the 7zz binary, it wouldn't
be the right thing to do.

Distributions that ship the new 7zz binary should also provide a legacy 7z
symlink for compatibility, like e.g. openSUSE does.

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

[ark] [Bug 459717] cli7zplugin: not working with latest upstream 7-zip

2022-09-27 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459717

--- Comment #1 from Elvis Angelaccio  ---
(In reply to Alexander from comment #0)
> ADDITIONAL INFORMATION
> Full logs(7z l -slt & ark) and test file upon request.

Yes, please provide a test archive and the full output of "7z l -slt" from
command line. Thanks.

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

[ark] [Bug 456797] Ark doesn't work with original 7-Zip

2022-09-27 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=456797

Elvis Angelaccio  changed:

   What|Removed |Added

   Version Fixed In||22.08.2
  Latest Commit|0eea2195fc1a97778e4b970ac50 |https://invent.kde.org/util
   |0d5e4407fabc6   |ities/ark/commit/6187ddc4be
   ||d6b9503406c3b68ddfeec0358e7
   ||d99
 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Elvis Angelaccio  ---
Git commit 6187ddc4bed6b9503406c3b68ddfeec0358e7d99 by Elvis Angelaccio, on
behalf of Hanabishi Recca.
Committed on 27/09/2022 at 21:35.
Pushed by elvisangelaccio into branch 'release/22.08'.

Fix incompatibility with original 7-Zip

It is wrong to expect strictly z here, the letter can be different and depends
on 7-Zip build type.
FIXED-IN: 22.08.2

M  +1-1plugins/cli7zplugin/cliplugin.cpp

https://invent.kde.org/utilities/ark/commit/6187ddc4bed6b9503406c3b68ddfeec0358e7d99

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

[ark] [Bug 454181] Ark doesn't preview HTML files anymore

2022-09-26 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=454181

--- Comment #7 from Elvis Angelaccio  ---
Can you please attach a test archive that triggers this issue?

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

[ark] [Bug 459613] [unarchiver] Cannot open password-protected RAR archives

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459613

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||bese...@gmail.com

--- Comment #9 from Elvis Angelaccio  ---
*** Bug 454320 has been marked as a duplicate of this bug. ***

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

[ark] [Bug 454320] Trying to decrypt password protected rar fails.

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=454320

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #3 from Elvis Angelaccio  ---


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

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

[ark] [Bug 459613] [unarchiver] Cannot open password-protected RAR archives

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459613

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||adriano.ceni@gmail.com

--- Comment #8 from Elvis Angelaccio  ---
*** Bug 458523 has been marked as a duplicate of this bug. ***

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

[ark] [Bug 458523] ARK 21.12.3 refuse the password of RAR file

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=458523

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #2 from Elvis Angelaccio  ---


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

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

[ark] [Bug 458523] ARK 21.12.3 refuse the password of RAR file

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=458523

Elvis Angelaccio  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|DUPLICATE   |---
 Ever confirmed|0   |1

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

[ark] [Bug 458523] ARK 21.12.3 refuse the password of RAR file

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=458523

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #1 from Elvis Angelaccio  ---


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

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

[ark] [Bug 459413] Extraction of certain types of archives (tar.zst, tar.Z, tar.lzma, tar.lz, tar.bz2) via context menu of Dolphin is slower than extraction directly with Ark

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459413

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||adriano.ceni@gmail.com

--- Comment #2 from Elvis Angelaccio  ---
*** Bug 458523 has been marked as a duplicate of this bug. ***

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

[ark] [Bug 432891] Wayland: Ark crashes when closed while loading an archive containing thousands of files

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=432891

Elvis Angelaccio  changed:

   What|Removed |Added

   Keywords||wayland

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

[ark] [Bug 459413] Extraction of certain types of archives (tar.zst, tar.Z, tar.lzma, tar.lz, tar.bz2) via context menu of Dolphin is slower than extraction directly with Ark

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459413

--- Comment #1 from Elvis Angelaccio  ---
That's because before extracting an archive, ark needs to "load" it. That's why
if you first open it in ark and then extract it, it's going to be faster.

Not much we can do here, it's a design choice in ark.

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

[ark] [Bug 459613] [unarchiver] Cannot open password-protected RAR archives

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459613

--- Comment #7 from Elvis Angelaccio  ---
(In reply to Sujal from comment #6)
> (In reply to Elvis Angelaccio from comment #5)
> > Looks like something broke in theunarchiver, I filed an issue upstream:
> > https://github.com/MacPaw/XADMaster/issues/148
> > 
> > As temporary workaround from ark settings you can disable the Unarchiver
> > plugin and enable the RAR plugin (you'll also need to install unrar on your
> > system).
> 
> Thanks for the information. Your method works. Do I need to switch back to
> unarchiver when bug resolved? As you said temporarily.
> 
> And, if you don't mind, how did you create a .rar archive in linux (your
> machine?) did you use a GUI app or the command line. If you used command
> line then probably there isn't any GUI for this file type. I heard its
> proprietary i.e., because.

The RAR plugin is better but requires non-free binaries (unrar and rar).

You can create a rar archive with Ark itself, as long as you have the
proprietary rar binary installed.

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

[ark] [Bug 459613] [unarchiver] Cannot open password-protected RAR archives

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459613

Elvis Angelaccio  changed:

   What|Removed |Added

Summary|Ark cannot authorize|[unarchiver] Cannot open
   |password-protected ZIP, RAR |password-protected RAR
   |archives|archives

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

[ark] [Bug 459613] Ark cannot authorize password-protected ZIP, RAR archives

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459613

Elvis Angelaccio  changed:

   What|Removed |Added

  Component|general |plugins

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

[ark] [Bug 459613] Ark cannot authorize password-protected ZIP, RAR archives

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459613

Elvis Angelaccio  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

--- Comment #5 from Elvis Angelaccio  ---
Looks like something broke in theunarchiver, I filed an issue upstream:
https://github.com/MacPaw/XADMaster/issues/148

As temporary workaround from ark settings you can disable the Unarchiver plugin
and enable the RAR plugin (you'll also need to install unrar on your system).

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

[ark] [Bug 459613] Ark cannot authorize password-protected ZIP, RAR archives

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459613

--- Comment #4 from Elvis Angelaccio  ---
Created attachment 152416
  --> https://bugs.kde.org/attachment.cgi?id=152416=edit
Example of header-encrypted RAR5 archive

Password = asdasd

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

[ark] [Bug 459613] Ark cannot authorize password-protected ZIP, RAR archives

2022-09-25 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=459613

--- Comment #3 from Elvis Angelaccio  ---
Created attachment 152415
  --> https://bugs.kde.org/attachment.cgi?id=152415=edit
Example of header-encrypted RAR4 archive

Password = asdasd

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

[kio-gdrive] [Bug 385388] Can not see shared folders

2022-09-23 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=385388

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/netw
   ||ork/kio-gdrive/commit/70a42
   ||997a1dcda8666df7b0f37ea7a92
   ||d0a6a58a
   Version Fixed In||22.12.0
 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #7 from Elvis Angelaccio  ---
Git commit 70a42997a1dcda8666df7b0f37ea7a92d0a6a58a by Elvis Angelaccio.
Committed on 23/09/2022 at 15:03.
Pushed by elvisangelaccio into branch 'master'.

Introduce support for Shared With Me files

'Shared With Me' files don't have a folderId as parent, so in listDir()
we need to adapt the query.

In resolveFileIdFromPath() we also need to check whether we have a 'top-level'
shared-with-me file. In that case, we avoid the recursion and just skip the
parentId in the query.
FIXED-IN: 22.12.0

M  +45   -11   src/kio_gdrive.cpp
M  +1-0src/kio_gdrive.h

https://invent.kde.org/network/kio-gdrive/commit/70a42997a1dcda8666df7b0f37ea7a92d0a6a58a

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

[kio-gdrive] [Bug 385388] Can not see shared folders

2022-09-23 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=385388

--- Comment #6 from Elvis Angelaccio  ---
Git commit 6c8de22b90bd020c997b2765db495c3aee27f24f by Elvis Angelaccio.
Committed on 23/09/2022 at 15:03.
Pushed by elvisangelaccio into branch 'master'.

Add sharedWithMeDate to property tab

M  +2-1src/gdrive_udsentry.h
M  +9-0src/integration/propertiesplugin/gdrivepropertiesplugin.cpp
M  +38   -24   src/integration/propertiesplugin/gdrivepropertiesplugin.ui
M  +3-0src/kio_gdrive.cpp

https://invent.kde.org/network/kio-gdrive/commit/6c8de22b90bd020c997b2765db495c3aee27f24f

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

[kronometer] [Bug 353077] Deleted sessions are not deleted if another session is created

2022-09-22 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=353077

Elvis Angelaccio  changed:

   What|Removed |Added

   Version Fixed In||2.3.0

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

[kronometer] [Bug 438167] Hitting enter when writing notes for laps

2022-09-22 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=438167

Elvis Angelaccio  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

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

[kronometer] [Bug 439998] Timer reset does not take effect if the computer is suspended and resumed.

2022-09-22 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=439998

Elvis Angelaccio  changed:

   What|Removed |Added

   Version Fixed In||2.3.0
  Latest Commit||https://invent.kde.org/util
   ||ities/kronometer/commit/1bc
   ||1a8ade91986df6c10df89f5b598
   ||c866dea4c1
 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED

--- Comment #1 from Elvis Angelaccio  ---
Git commit 1bc1a8ade91986df6c10df89f5b598c866dea4c1 by Elvis Angelaccio.
Committed on 22/09/2022 at 21:20.
Pushed by elvisangelaccio into branch 'master'.

Fix stopwatch restart after system sleep

m_accumulator was reset to 0 only inside the start() method if the
stopwatch was inactive. But in MainWindow::slotPrepareForSleep() we do
an unconditional pause() on the stopwatch, so this breaks the stopwatch
restart after the system resumes.

The proper fix is to reset m_accumulator inside the reset() method.
FIXED-IN: 2.3.0

M  +1-0src/core/stopwatch.cpp

https://invent.kde.org/utilities/kronometer/commit/1bc1a8ade91986df6c10df89f5b598c866dea4c1

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

[kronometer] [Bug 445568] Toolbar icons are blurry at default 32*32

2022-09-22 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=445568

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/util
   ||ities/kronometer/commit/484
   ||507f6bddefa83fc10407898947a
   ||5bd33a9768
   Version Fixed In||2.3.0
 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED

--- Comment #1 from Elvis Angelaccio  ---
Git commit 484507f6bddefa83fc10407898947a5bd33a9768 by Elvis Angelaccio.
Committed on 22/09/2022 at 20:49.
Pushed by elvisangelaccio into branch 'master'.

Enable HiDpi support
FIXED-IN: 2.3.0

M  +2-0src/main.cpp

https://invent.kde.org/utilities/kronometer/commit/484507f6bddefa83fc10407898947a5bd33a9768

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

[ark] [Bug 204323] Ark not kio-slave capable

2022-09-19 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=204323

--- Comment #20 from Elvis Angelaccio  ---
(In reply to Hirad from comment #19)
> (In reply to Elvis Angelaccio from comment #17)
> > We already prevent users from extracting to a non-local destination
> 
> And why is that? This limitation makes no sense and only cause headache when
> you have to extract archives to remote directories.

Because no one has wrote the code to implement this feature yet.

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

[kio-gdrive] [Bug 454030] can't use Google Drive (no longer allowed because of authentication)

2022-09-18 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=454030

--- Comment #3 from Elvis Angelaccio  ---
(In reply to David Chmelik from comment #2)
> (In reply to Elvis Angelaccio from comment #1)
> > Please make sure you are using kio-drive compiled with the KAccounts 
> > backend.
> 
> How can I find out?  Will it be in KDE Plasma 5 (KDEP5, KDE5) or only 6?

It's already in the current kio-gdrive release and it's the default backend. So
you should ask your distribution whether they have explicitly disabled the
KAccounts backend.

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

[kio-gdrive] [Bug 454030] can't use Google Drive (no longer allowed because of authentication)

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=454030

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #1 from Elvis Angelaccio  ---
Please make sure you are using kio-drive compiled with the KAccounts backend.

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

[kio-gdrive] [Bug 439639] kio-gdrive (built against qtkeychain!) should no longer use "Akonadi Resources for Google Services" and needs regular re-authentication with a private ID,secret pair

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=439639

--- Comment #6 from Elvis Angelaccio  ---
Back in 2019 I tried to request new API keys for the qtkeychain backend, butI
got fed up by Google bureaucracy and gave up.

I think we should really drop the qtkeychain backend since it's been broken for
years now. The KAccounts backend is the way to go.

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

[kio-gdrive] [Bug 427580] Add support for 'Shared with me' content

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=427580

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #1 from Elvis Angelaccio  ---


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

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

[kio-gdrive] [Bug 385388] Can not see shared folders

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=385388

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||jekal62...@zik2zik.com

--- Comment #5 from Elvis Angelaccio  ---
*** Bug 427580 has been marked as a duplicate of this bug. ***

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

[kio-gdrive] [Bug 449504] Manjaro Qonos breaks Google Drive in Dolphin

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=449504

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #1 from Elvis Angelaccio  ---
Is it still broken?

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

[kio-gdrive] [Bug 446445] Dolphin context menu: "Share -> Google Drive..." does not work

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=446445

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #1 from Elvis Angelaccio  ---
Seems to work for me. Please reopen if it's still broken for you.

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

[kio-gdrive] [Bug 436717] Opening files fails by 2/3 of tries

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=436717

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #1 from Elvis Angelaccio  ---
Did the files have a + in their paths? If yes, that's
https://bugs.kde.org/show_bug.cgi?id=414697

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

[kio-gdrive] [Bug 432471] Dolphin Crashes while adding folders also lots of notification !!!!

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=432471

Elvis Angelaccio  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Elvis Angelaccio  ---
Seems fixed with recent KIO versions.

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

[kio-gdrive] [Bug 429379] Gdrive not showing in application file selector

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=429379

Elvis Angelaccio  changed:

   What|Removed |Added

 Resolution|--- |UPSTREAM
 Status|REPORTED|RESOLVED

--- Comment #10 from Elvis Angelaccio  ---
Closing.

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

[kio-gdrive] [Bug 425545] The process for the gdrive protocol died unexpectedly

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=425545

Elvis Angelaccio  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||elvis.angelac...@kde.org
 Resolution|--- |DOWNSTREAM

--- Comment #9 from Elvis Angelaccio  ---
Closing as this is an old distro-specific issue.

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

[kio-gdrive] [Bug 427583] Integrate GDrive files into Dolphon's Recent Files

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=427583

Elvis Angelaccio  changed:

   What|Removed |Added

   Severity|normal  |wishlist

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

[kio-gdrive] [Bug 427581] Add support for 'Trash' folder content

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=427581

Elvis Angelaccio  changed:

   What|Removed |Added

   Severity|normal  |wishlist

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

[kio-gdrive] [Bug 422016] Not able to sign in says temporarily

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=422016

Elvis Angelaccio  changed:

   What|Removed |Added

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

--- Comment #2 from Elvis Angelaccio  ---
Closing. Please reopen if you still have issues with sign in.

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

[kio-gdrive] [Bug 414697] Folder name like "C++" incorrectly supported

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=414697

Elvis Angelaccio  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

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

[kio-gdrive] [Bug 395590] Cannot open files with name containing #

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=395590

Elvis Angelaccio  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Elvis Angelaccio  ---
(In reply to Twanoo51 from comment #2)
> Hi,
> 
> It is not possible in v1.2.4 to open folders with specials caracters like
> '+' in their name.

Let's track this is https://bugs.kde.org/show_bug.cgi?id=414697

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

[kio-gdrive] [Bug 391186] [kio-gdrive]Access token expires/invalidates after performing a few file operations

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=391186

--- Comment #11 from Elvis Angelaccio  ---
I just pushed a fix for another issue cause by expired tokens, but this
probably still doesn't fix the original issue reported here.

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

[kio-gdrive] [Bug 391186] [kio-gdrive]Access token expires/invalidates after performing a few file operations

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=391186

--- Comment #10 from Elvis Angelaccio  ---
Git commit 3db025102b89e96f74a7d8ff68147cd6649df100 by Elvis Angelaccio.
Committed on 15/09/2022 at 22:11.
Pushed by elvisangelaccio into branch 'master'.

Don't start runJob() loop if the access token is not available.

Otherwise the loop will go on forever, attempting to start jobs that
will never work.

KAccounts seems to return an empty access token when google returns
a 401 error (access code expired).

M  +3-0src/gdrivehelper.cpp
M  +3-0src/kaccountsmanager.cpp
M  +8-1src/kio_gdrive.cpp

https://invent.kde.org/network/kio-gdrive/commit/3db025102b89e96f74a7d8ff68147cd6649df100

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

[kio-gdrive] [Bug 397102] Selecting 'gdrive' from URL dropdown, then clicking gdrive account fails with 'Invalid protocol'

2022-09-15 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=397102

Elvis Angelaccio  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED

--- Comment #2 from Elvis Angelaccio  ---
(In reply to Christoph Feck from comment #0)
> Steps to reproduce:
> - start dolphin and click at right-end of URL bar to get to type-in mode
> - click linedit Clear button, a 'file' drop-down button appears
> - select Other > gdrive and accept the URL, which now reads 'gdrive://'

It seems this has been fixed in recent KIO versions. This step now results in a
'gdrive:' URL and then everything seems to work.

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

[kio-s3] [Bug 453887] kio-s3 compilation fails

2022-09-13 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=453887

Elvis Angelaccio  changed:

   What|Removed |Added

  Component|default |general
   Assignee|plasma-b...@kde.org |elvis.angelac...@kde.org
Product|kio-extras  |kio-s3

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

[kio-extras] [Bug 453887] kio-s3 compilation fails

2022-09-13 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=453887

--- Comment #2 from Elvis Angelaccio  ---
(In reply to Joost Cassee from comment #0)
> 
> [I'm not sure this is part of kio-extras, but because the kio-s3 repository
> has bugs disabled I assumed they want to have them reported here.]

The reason why kio-s3 bugs were disabled is that I haven't made an official
release yet. I'm actually surprised that someone is already compiling it :)
That said, I've created a bugzilla product for kio-s3. I'll move this bug
there.

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

[kio-gdrive] [Bug 456975] src/keychainaccountmanager.cpp:50:16: error: expected primary-expression before ‘const’

2022-08-01 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=456975

Elvis Angelaccio  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/netw
   ||ork/kio-gdrive/commit/1b0ac
   ||81dba8aa70bf421cae84c83a6ae
   ||f6553fb5
 Resolution|--- |FIXED

--- Comment #2 from Elvis Angelaccio  ---
Git commit 1b0ac81dba8aa70bf421cae84c83a6aef6553fb5 by Elvis Angelaccio, on
behalf of Nicolas Fella.
Committed on 01/08/2022 at 20:55.
Pushed by nicolasfella into branch 'master'.

Fully port away from Q_FOREACH

M  +1-1autotests/listtest.cpp
M  +3-2src/keychainaccountmanager.cpp

https://invent.kde.org/network/kio-gdrive/commit/1b0ac81dba8aa70bf421cae84c83a6aef6553fb5

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

[ark] [Bug 393959] Ark should check if there is sufficient free space available in destination before start extraction

2022-06-09 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=393959

Elvis Angelaccio  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/util
   ||ities/ark/commit/75ee205a77
   ||9a13f536186720295cae71f130c
   ||4a6
 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #3 from Elvis Angelaccio  ---
Git commit 75ee205a779a13f536186720295cae71f130c4a6 by Elvis Angelaccio, on
behalf of Tomaz  Canabrava.
Committed on 09/06/2022 at 17:46.
Pushed by elvisangelaccio into branch 'master'.

Block extraction if there's no space left

This works only on the BatchExtract, that's triggered by the
right click menu in dolphin. If the final size of the file
to be uncompressed is bigger than the free space on a folder
or device, quit with an error.

M  +5-0kerfuffle/archiveentry.cpp
M  +1-0kerfuffle/archiveentry.h
M  +17   -10   kerfuffle/archiveinterface.cpp
M  +6-0kerfuffle/archiveinterface.h
M  +24   -0kerfuffle/jobs.cpp
M  +0-2plugins/libarchive/readonlylibarchiveplugin.h

https://invent.kde.org/utilities/ark/commit/75ee205a779a13f536186720295cae71f130c4a6

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

  1   2   3   4   5   6   7   8   9   10   >