Release Notes 2021-11-22

Controller v4.3.1

Improvements:

  • Output folder validations refactored to fix the bug related with missing Error message on OutputFolder and creation of multiple folders .

About new OutputPath folder Validations

The method ValidateOutputPath was deleted an now the output validations implemented two different ways to validate the output path in the class FileSystemValidator, to avoid the bug related to creating of mutiples folders trying the validated the path.

The first method ValidateOutputPathBeforeSubmit, that validated the path in real time before to do click in the button of start conversion.

    public FileSystemValidationStatus ValidateOutputPathBeforeSubmit(string inputPath, string outputPath)

And handle the follow ValidationStatus:

  • OK

  • PATH_TOO_LONG

  • HAS_INVALID_CHARACTERS

  • NO_READ_PERMISSION

  • INVALID_EXTENSION

  • INVALID_EXTENSION

  • DOES_NOT_EXIST

  • DIRECTORY_IS_NOT_EMPTY

  • INCORRECT_SYNTAX

  • NETWORK_PATH

  • EQUIVALENT_PATHS

The second method ValidateOutputPathAfterSubmit, that validated the path after to sent the submit with the imformation path.

public FileSystemValidationStatus ValidateOutputPathAfterSubmit(string outputPath)

And handle the follow ValidationStatus:

  • NO_WRITE_PERMISSION;

  • PATH_IS_NOT_DIRECTORY.

Generic UI v4.1.4

Improvements:

  • Electron Updated to v16.0.0

  • Fix Bug related to missing Error message on OutputFolder and creation of multiple folders, using the new outpath validations implemented in controller.

Contracts v2.1.7

Improvements

  • ValidateOuthPath was removed and divided to the methods ValidateOutputPathBeforeSubmit and ValidateOutputPathAfterSubmit in IFileSystemValidator.

Last updated