libchcore

Clone Tools
  • last updated a few minutes ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Bugfix: wrong stats management when resuming file copy after being cancelled first (CH-141).

Bugfix: pausing/resuming task did not take already processed part of files into account. That caused resuming to ask for file replacement when unnecessary (CH-140).

Fixed a few problems found with VS2013 static analysis.

  1. … 2 more files in changeset.
Updated version release scripts to use VS2013 binaries (CH-136)

  1. … 8 more files in changeset.
Changed build target to v120_xp (CH-135)

  1. … 8 more files in changeset.
Fixed unit tests failing (CH-133).

Updated paths to boost libraries to reference boost 1.57 (CH-132).

  1. … 3 more files in changeset.
Adjusted code to build with boost 1.56.

  1. … 2 more files in changeset.
Included missing unit test file in VS2013 project.

Bugfix: task files often not being deleted when using RemoveFinished/RemoveTask functionalities. With this change the task files locked at the usual deletion time will be deleted at next CH startup (CH-99)

    • -0
    • +115
    ./TObsoleteFiles.cpp
Bugfix: files with sizes changing during copying and files pointed to by symlinks are now copied correctly with correct stats displayed (CH-124).

Changed the default task versioning to be independent to CH version (as data model won't change as often as CH version numbers). The version was set to 1 and there is no migration provided as this is the alpha version. (CH-127).

Performed de-duplication of the progress data and stats data (i.e. current file processed size was available in both progress data and stats data and not always updated simultaneously). There is no separate progress data anymore - everything is now placed in the stats data. (CH-124)

Removed binary serializer files from VS2013 project file (CH-118)

Bugfix: CH exits when no configuration file exists (CH-123).

Bugfix: fixed serialization problems with 32bit builds (CH-118).

  1. … 53 more files in changeset.
Bugfix: different layout of shared memory between 64bit shell ext and 32bit application caused explorer to crash (CH-117).

Added support for successfully loading corrupted task files (now loading such task does not force CH to exit - instead an error is logged (if possible) and task is marked appropriately in the status dialog) (CH-59)

  1. … 4 more files in changeset.
Added possibility to choose destination path for "Copy To/Move To/CopyMove To Special" shell ext items (CH-109).

  1. … 10 more files in changeset.
Additional unit tests for TConfig class (CH-60)

Added first batch of unit tests for TConfig class (CH-60)

    • -0
    • +299
    ./Tests/TestsTConfig.cpp
Fixed unit tests not working after recent changes (CH-60)

Bugfix: crash when opening explorer's context menu (boost lexical_cast incorrectly detected underlying stream type due to the implicit cast of TString to const wchar_t) (CH-107).

  1. … 17 more files in changeset.
Bugfix: fixed crash when importing configuration from xml file in 32bit builds (CH-90).

Fixed missing files in VS2013 projects for resizable message box (CH-67).

  1. … 2 more files in changeset.
Optimized serialization stack to avoid blocking gui thread for a long time (CH-103).

    • -0
    • +96
    ./TPlainStringPool.cpp
    • -0
    • +52
    ./TPlainStringPool.h
  1. … 3 more files in changeset.
Rewritten serializer row storage to use memory pool (thus reducing memory allocations and speeding up destructions) (CH-103).

    • -21
    • +54
    ./TSQLiteSerializerContainer.cpp
    • -192
    • +320
    ./TSQLiteSerializerRowData.cpp
  1. … 8 more files in changeset.
Added support for indexing serialization data by column index (for reduced overhead when handling many rows) (CH-103)

    • -48
    • +113
    ./TSQLiteSerializerRowData.cpp
Switched row data handling to not use shared pointers nor RowData object to pass information (optimization to slim down the serialization cost) (CH-103).

    • -10
    • +10
    ./TSQLiteSerializerContainer.cpp
  1. … 12 more files in changeset.
Adding/retrieving rows (to be serialized) now uses a single method instead of two allowing for simpler code at caller's plase (also a preparation for replacing smart pointer with a reference to real object) (CH-103).

  1. … 5 more files in changeset.