Yes this (API change) was noted in release notes and notification email:
GleamTech.Core:
- **Changed:** Moved namespace GleamTech.Web to GleamTech.AspNet for mostly future ASP.NET Core support.
Started to abstract System.Web dependencies so that most codebase can be shared in future.
- GleamTech.AspNet.UI: Sub-namespace for common component model and rendering.
- GleamTech.AspNet.WebForms: Sub-namespace for ASP.NET Web Forms support.
- GleamTech.AspNet.Mvc: Sub-namespace for ASP.NET MVC support.
- GleamTech.AspNet.WebPages: Sub-namespace for ASP.NET Web Pages (Razor, WebMatrix) support.
FileUltimate:
Changed: Started to abstract System.Web dependencies so that most codebase can be shared in future (ASP.NET Core support).
- API changes:
- <GleamTech:FileManager> -> <GleamTech:FileManagerControl>
- FullViewport=“true” -> DisplayMode="Viewport" fileManager.DisplayMode = DisplayMode.Viewport
- ShowOnLoad=“false” -> Hidden="true" fileManager.Hidden = true
- ModalDialog = true -> DisplayMode=“Window” and WindowOptions-Modal="true" fileManager.DisplayMode = DisplayMode.Window fileManager.WindowOptions.Modal = true
- ModalDialogTitle -> WindowOptions-Title fileManager.WindowOptions.Title
- Html.RenderJs and Html.RenderCss -> this.RenderHead (Me.RenderHead in VB)
- Html.RenderControl -> this.RenderBody (Me.RenderBody in VB)
Please see the example projects for updated usage samples.