Changeset 72 for trunk/UCore.pas


Ignore:
Timestamp:
Dec 13, 2021, 8:47:20 PM (2 years ago)
Author:
chronos
Message:
  • Fixed: Properties with just BASE64 instead of ENCODING=BASE64 was not decoded using Base64 and so contact photos were not loaded correctly.
  • Added: Allow to save from file and load to file contact property values in All fields tab.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UCore.pas

    r69 r72  
    8888    LastContactTabIndex: Integer;
    8989    LastContactFileName: string;
     90    LastPropertyValueFileName: string;
    9091    GenerateCount: Integer;
    9192    ToolbarVisible: Boolean;
     
    485486    LastContactFileName := ReadStringWithDefault('LastContactFileName', '');
    486487    LastSplitDir := ReadStringWithDefault('LastSplitDir', '');
     488    LastPropertyValueFileName := ReadStringWithDefault('LastPropertyValueFileName', '');
    487489    GenerateCount := ReadIntegerWithDefault('GenerateCount', 1);
    488490  finally
     
    510512    WriteString('LastContactFileName', LastContactFileName);
    511513    WriteString('LastSplitDir', LastSplitDir);
     514    WriteString('LastPropertyValueFileName', LastPropertyValueFileName);
    512515    WriteInteger('GenerateCount', GenerateCount);
    513516  finally
Note: See TracChangeset for help on using the changeset viewer.