Release Notes

Public

9.0.16.4097: Mar 19 2020

Bug

Windows - Plastic: We fixed some errors in the Incoming Changes view, that could happen after experiencing an error.

These errors were:

* A dialog with the message "an error occurred processing your request" appeared when refreshing some views.

* When closing the GUI, it failed to save the guivisualstate.xml configuration file.

Bug

Windows - Gluon: We fixed an error calculating the status.

Under some circumstances, Gluon was unable to correctly display the status if working with corrupt workspace metadata. But now Gluon is stronger and it is able to handle this situation!

Bug

Windows - Plastic: The Workspace Explorer could sometimes freeze after a search.

You could reproduce this freeze as follows: type a search term in the Workspace Explorer, and quicly press the 'Enter' key to go to the first result. But now it's fixed!

Bug

Window - Plastic: We made the new daily rolling log file appender work in Plastic (adding to cm and the server).

Reminder: the daily rolling file appender writes one day's logs per file, and lets you set a maximum number of files to keep on disk. Configure it by adding something like this to your plastic.log.conf:

<appender name="DebugAppender" type="Codice.LogWrapper.DailyRollingFileAppender">
    <file value="plastic.debug.log.txt" />
    <maxFileCount value="3" />
    <appendToFile value="true" />
    <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%date %thread %property{TransactionID} %property{ClientMachine} %-5level %logger - %message%newline" />
    </layout>
</appender>