This page has information about updates, enhancements, and bug fixes in our latest software releases, ensuring you are always updated about our ongoing developments.
On this page:
This is the first release or FrameworX v10.
More than just modifications on top of previous release, FrameworX v10 was a generational change of technologies and major evolution on user interfaces, concepts and nomenclature, new functionality, enhancements on the internal architecture and product wide performance optimizations.
Therefore the Release notes shall include the future modifications on top of the FrameworX initial release, but not all the modifications comparing with FactoryStudio. In order to review the major differences of FrameworX v10 comparing with previous product line, refer to the section What is new in FrameworX v10
We will include in this section the items found and modified throughout the Release Candidate process, in order to help track and control what is being released throughout the builds:
==>> build RC2 10.0.0.262 [03/21/2024]
==>> build RC2 10.0.0.263 [03/25/2024]
==>> build RC2 10.0.0.265 [04/01/2024]
On IIS:
Enable/Install ASPNET 4.8.
MIME Types:
.tzip : application/x-zip-compressed
.dat : application/octet-stream
On Command Prompt (Run as Administrator), install share in TCP/IP service using “netsh” program (Windows):
netsh http add urlacl url=http://+:<port>/rtServices sddl=D:(A;;GX;;;IU)
If using https: netsh http add urlacl url=https://+:<port>/rtServices sddl=D:(A;;GX;;;IU)
netsh http add urlacl url=http://+:<port>/rtServices/ws sddl=D:(A;;GX;;;IU)
If using https: netsh http add urlacl url=https://+:<port>/rtServices/ws sddl=D:(A;;GX;;;IU)
TInternal- 10.0.0.265 - TServer was very slow when using a TimeZone after UTC such as Taipei (UTC+8h).
TInternal- 10.0.0.265 - Created ‘SearchPath' class in “T.Toolkit” assembly. It is used to set main path, where “fx-10” files are installed. It must be used before first access to ‘DataAccess’. Now the customer program only needs “T.Toolkit” assembly in its folder. Example:
T.Toolkit.SearchPath.Initialize(@"C:\Program Files\Tatsoft\FrameworX\fx-10");
using (DataAccess dataAccess = new DataAccess())
{
...
}