eBiss 3

Hilfe & Dokumentation

User Tools

Site Tools


en:relnotes:version_3_8:version_03_08_308

Version 3.8.308 (17.9.24)

Custom filters

The filters that can be set in the table views can now be saved and stored as standard filters for everyone, for a group or user-specifically. These filters are used in the message baskets, for example, to filter messages according to specific criteria. See also Custom filters.

Inclusion of the locations in the global search.

TaskNotificatorEx, $DocumentType and $DocumentTypes added

For TaskNotificatorEx, the list of variables has been supplemented by $DocumentType and $DocumentTypes.

Proof of use of jobs

The EventRouter was not included when determining the proof of use. This gap has been closed.

Extension of the eBiss API with IChannel

The last communication channel used for the message can be read out via the LastChannel property:

   Api.Data.IChannel LastChannel { get; }

Communication channels can be searched for on the node:

        /// <summary>
        /// Search for channels that begin with the name. The parameter can be null, in which case all channels are returned
        /// </summary>
        /// <param name="name"></param>
        /// <returns></returns>
        IList<IChannel> FindChannels(string name);

The new interfaces are IChannel and IHarddiskReceiveChannel for the file receive channel:

    public interface IChannel
    {
        string Name { get; }
 
        ChannelDirection Direction { get; }
 
        AddressType AddressType { get; }
    }
 
    public interface IHarddiskReceiveChannel : IChannel
    {
        string InputPath {  get; }
 
    }

SFTP receive channel, error on logout

A sporadic error in the SFTP receive channell during logout, which is not reproducible and lies outside our code, is now only recorded in the log and no longer leads to the creation of a task.

Drag & drop in message basket - subject not correct

With the extension that allows you to create a message while holding down the Shift key when dragging & dropping in the message basket, an error has crept in: If the Shift key was not pressed and several messages were created, the subject of the messages was the same.

This error has been fixed.

.NET Framework 4.8 necessary

From eBiss version 3.8.306 you need the runtime environment “Microsoft .NET Framework 4.8”, see: Version 3.8.306 (17.7.24)

en/relnotes/version_3_8/version_03_08_308.txt · Last modified: 2024/09/13 14:29 by 127.0.0.1