The release notes from the new version 1.4.3.0 of C#Bot.
Features
No new features were included.
Improvements
- Added numerous requested protected regions
- Add Using statement to auto dispose SmtpClient instance in “EmailService.SendEmail”
- View, Edit, Delete Entity Crud buttons can now be configured independent of the security diagram
- Added fields to
EntityUtils.tsx
to better control fetching logic of references
Resolved Defects
- Fixed Issue where Datetime Picker component would throw an error when viewed on a mobile device
- Resolved Issues with Public routes protected regions in
Frontend.tsx
Migration Path
Protected Regions
In this release several protected regions have been changed. Any changes done in these protected regions will need to be reapplied.
Frontend
clientside/src/Views/frontend.tsx
Protected Regions | Notes |
---|---|
customize the Application specific public routes | These protected regions were renamed to make them unique for each public route. |
FormDesigner
clientside/src/Forms/Designer/FormDesigner.tsx
Protected Regions | Notes |
---|---|
Add any additional props here | Protected region inside FormDesignerProps renamed to Add any additional generic props here |
TileOptions
clientside\src\Forms\Questions\TileOptions.tsx
Protected Regions | Notes |
---|---|
customize the Application specific public routes | These protected regions were renamed to make them unique for each public route. |
Override renderConditions here | Replaced with outer protected region: customize the TileOptions renderConditions function |
Override renderRadioOptions here | Replaced with outer protected region: customize the TileOptions renderRadioOptions function |
Override renderStylingOptions here | Replaced with outer protected region:customize the TileOptions renderStylingOptions function |
Override renderValidators here | Replaced with outer protected region:customize the TileOptions renderValidators function |
Override render here | Replaced with outer protected region: customize the TileOptions render function |