Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
  1. May 22, 2023
    • Floris Bos's avatar
      Bump version number · b4940878
      Floris Bos authored
      v1.7.5
      b4940878
    • Floris Bos's avatar
      Windows: fix handling of .zip files · 60c53db9
      Floris Bos authored
      If set(ZLIB_INCLUDE_PATH value) is called without setting cache,
      and find_package(zlib) is called twice, the second call fails.
      Behavior described here: https://gitlab.kitware.com/cmake/cmake/-/issues/21343
      
      It seems that the new libcurl version also calls find_package(zlib)
      so the second call by libarchive fails. And without zlib support
      handling .zip files that use deflate compression does not work.
      
      Only affected Windows, because we are only using a bundled zlib
      there.
      On Linux system libarchive and system zlib is used.
      On Mac OS X bundled libarchive, but system zlib is used.
      
      Ref #586
      60c53db9
    • Floris Bos's avatar
      Windows: fix depreceation warnings · e490ec1c
      Floris Bos authored
      - winsock2.h should be included before windows.h
      - QProcess::execute('name') -> QProcess::execute('name', args);
      e490ec1c
  2. May 21, 2023
  3. May 18, 2023
  4. May 11, 2023
  5. Apr 13, 2023
  6. Mar 30, 2023
    • Floris Bos's avatar
      Linux udisks2: force kernel to rescan MBR before ejection · 23b0bf6b
      Floris Bos authored
      Otherwise it may still be doing it during ejection, resulting
      in read IO errors in dmesg, which are harmless by themselves
      but may confuse users.
      
      Also tell udisks2 not to analyze disk by setting 'HintAuto'
      property on BlockDevice object to 'false'
      23b0bf6b
  7. Mar 24, 2023
  8. Mar 22, 2023
  9. Mar 20, 2023
  10. Mar 19, 2023
  11. Mar 10, 2023
  12. Mar 04, 2023
  13. Feb 02, 2023
  14. Jan 25, 2023
  15. Dec 29, 2022
  16. Nov 20, 2022
    • Floris Bos's avatar
      Advanced settings FAT modification: fix expanding directory · a403df43
      Floris Bos authored
      When no more directory entries are available in the existing
      cluster(s) of a directory on FAT32, we allocate an
      extra cluster.
      Make sure to zero out that new cluster, as disk checking utilities
      may not stop reading when reaching an end of directory marker but
      read the rest of cluster as well.
      So there must not be any garbage data from a previously deleted file
      in the sector there.
      
      Also add checks to prevent getting in an endless loop on
      encoutering circular "next cluster" references.
      a403df43