CopyHandler

Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Bugfix: fixed showing CH items in explorer context menus (CH-108).

Additional unit tests for TConfig class (CH-60)

    • -11
    • +47
    /src/libchcore/ConfigNodeContainer.cpp
    • -54
    • +409
    /src/libchcore/Tests/TestsTConfig.cpp
Added first batch of unit tests for TConfig class (CH-60)

    • -2
    • +2
    /src/libchcore/ConfigNodeContainer.cpp
    • -0
    • +299
    /src/libchcore/Tests/TestsTConfig.cpp
    • -0
    • +36
    /src/libchcore/libchcore.vc90.vcproj
Fixed unit tests not working after recent changes (CH-60)

    • -3
    • +3
    /src/libchcore/Tests/TestsTSQLiteStatement.cpp
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).

    • -22
    • +13
    /src/libchcore/ConfigNodeContainer.cpp
  1. … 17 more files in changeset.
Changed standard message boxes displayed when shell extension is not registered or version does not match to resizable message box with checkbox "Do not show this again". That allows to get rid of the annoying messages with each launch of ch when user does not want to register the extension (CH-67).

Bugfix: fixed crash when importing configuration from xml file in 32bit builds (CH-90).

    • -2
    • +1
    /src/libchcore/ConfigNodeContainer.cpp
Fixed problem with wrong parsing of resource files stored with VS2013 (it stores trimmed lines which was not parsed correctly) (CH-106).

Fixed problem with wrong parsing of resource files when saved with VS2013 (it stores trimmed lines) (CH-106)

Resizable message box: applied minimum size limit to the dialog box and adjusted the default layout to work properly for simple one line message boxes (CH-67).

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

    • -0
    • +2
    /src/libchcore/libchcore.vc120.vcxproj
Added resizable message box (partially implemented - checkbox support is missing) (CH-67).

    • -0
    • +353
    /src/ch/TMsgBox.cpp
Optimized serialization stack to avoid blocking gui thread for a long time (CH-103).

    • -12
    • +12
    /src/libchcore/ISerializerRowData.h
    • -0
    • +96
    /src/libchcore/TPlainStringPool.cpp
    • -0
    • +52
    /src/libchcore/TPlainStringPool.h
    • -2
    • +2
    /src/libchcore/TSQLiteColumnDefinition.h
    • -13
    • +16
    /src/libchcore/TSQLiteSerializerRowData.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).

    • -0
    • +1
    /src/libchcore/TSQLiteColumnDefinition.h
    • -55
    • +21
    /src/libchcore/TSQLiteSerializerRowData.h
  1. … 8 more files in changeset.
Added support for indexing serialization data by column index (for reduced overhead when handling many rows) (CH-103)

    • -12
    • +25
    /src/libchcore/ISerializerRowData.h
    • -15
    • +35
    /src/libchcore/TSQLiteSerializerRowData.h
Switched row data handling to not use shared pointers nor RowData object to pass information (optimization to slim down the serialization cost) (CH-103).

    • -5
    • +14
    /src/libchcore/ISerializerRowData.h
    • -15
    • +11
    /src/libchcore/TBasePathData.cpp
    • -6
    • +35
    /src/libchcore/TSQLiteSerializerRowData.h
    • -14
    • +10
    /src/libchcore/TSubTaskArray.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).

    • -4
    • +0
    /src/libchcore/TSQLiteColumnDefinition.h
    • -0
    • +2
    /src/libchcore/TSQLiteSerializerRowData.h
  1. … 5 more files in changeset.
Added extended columns definitions to support slimmer row data in the future (CH-103).

    • -3
    • +24
    /src/libchcore/IColumnsDefinition.h
    • -3
    • +10
    /src/libchcore/TFileFiltersArray.cpp
    • -2
    • +13
    /src/libchcore/TModPathContainer.cpp
  1. … 21 more files in changeset.
Removed use of smart pointer for column definitions (slimming down the serialization mechanism weight) (CH-103).

  1. … 17 more files in changeset.
Adjusted serialization tracing, exported TSimpleTimer from the engine dll (CH-103).

    • -12
    • +62
    /src/libchcore/SerializerTrace.h
Serialization optimization - reduced significantly count of sqlites' prepare() statements (now serialization requsts are grouped together) (CH-103)

    • -0
    • +50
    /src/libchcore/SerializerTrace.h
    • -0
    • +32
    /src/libchcore/TSQLiteSerializer.cpp
    • -1
    • +29
    /src/libchcore/TSQLiteSerializerRowData.h
Bugfix: resuming task worked incorrectly (CH-101).

    • -32
    • +53
    /src/libchcore/TSubTaskCopyMove.cpp
    • -3
    • +67
    /src/libchcore/TSubTaskStatsInfo.cpp
Fixed problem of task data files not being removed when the task itself is removed (CH-99).

Bugfix: operation type was not serialized correctly (CH-102).

    • -62
    • +106
    /src/libchcore/TSubTaskArray.cpp
Bugfix: subtask stats were not displayed in status dialog when task processing finished (CH-100).

Added missing VS2013 project entries (CH-95).

Bugfix: Same paths added to the favorite list when using custom copy dialog (CH-95)

    • -0
    • +39
    /src/ch/TRecentPathsTools.cpp
    • -0
    • +28
    /src/ch/TRecentPathsTools.h
Bugfix: Filtering settings dialog - time filtering only displays date (CH-96).

Fixed build problem where ch resource were compiled even when unchanged (VS2013) (CH-98)

Added serialization support for subtasks - delete, copymove, fastmove (CH-58).

    • -0
    • +15
    /src/libchcore/TSQLiteTaskSchema.cpp
    • -20
    • +13
    /src/libchcore/TSubTaskArray.cpp
    • -36
    • +67
    /src/libchcore/TSubTaskCopyMove.cpp
    • -17
    • +56
    /src/libchcore/TSubTaskDelete.cpp
    • -17
    • +56
    /src/libchcore/TSubTaskFastMove.cpp
    • -32
    • +132
    /src/libchcore/TSubTaskStatsInfo.cpp
    • -13
    • +47
    /src/libchcore/TSubTaskStatsInfo.h