Releases
-
1.1.0
Released 20.11.2025Improvements
- Visual rework of all input fields with aligned design
- Rework of the
Panelcomponent- Fixed data loading issues
- Panels can now be used in forms
- Fields in panels can now be part of the display name for an entity
- New button to create another entity when saving a new entity
- New button to return to the list view of entities from the details view
- Identity can now be used without email functionality
- Improved pagination on tables
- Added option to select a page directly via dropdown
- Added option to select the number of items per page
- Options for per page can now be defined in the resource
- Aligned naming of labels, titles and other texts
- Added screenreader text for delete and detach operations in tables
- Improved performance of initial load
- Updated dependencies
Bug Fixes
- Fixed bold font rendering in Safari
-
1.0.0
Released 16.06.2025We are excited to announce our initial release of Centias, a .NET toolbox designed to help developers rapidly implement fully functional admin panels in C#.
New Features
- Added Resources as starting point for representing your entity models.
- Added a collection of Fields to build your admin panels with:
BooleanFieldfor representing boolean dataCountryFieldfor storing and representing information regarding countriesCurrencyFieldfor representing currencies based on their 3-letter ISO code, such as USD for US DollarsDateOnlyFieldfor dates without an hourly componentDateTimeOffsetFieldfor dates including the hourly component, e.g. 6/16/2025 12:30:00 PMEmailFieldfor valid email addressesEnumFieldfor custom C# EnumsFileFieldfor uploading and representing non-image filesIdFieldfor representing the unique database identifier of an entityImageFieldfor uploading and representing typical image-based files such as JPEGs, PNGs or GIFsNumberFieldfor numeric representations, such as int, double or floatPasswordFieldused for managing local accountsTextFieldfor short one-liner textsTextAreaFieldfor longer multi-line texts
- Added Dashboard functionality along with four new Metrics to visualize your data with:
- Added
DistributionMetricto display the distribution of values across different categories - Added
ProgressMetricto visualize the progress towards a pre-defined target value - Added
TrendMetricto show the development of values over time - Added
ValueMetricto display an absolute value at the current point of time
- Added
- Added Search functionality so you can quickly find entities based on your specified Fields.
- Added Actions as feature so you can simplify and streamline complex data modifications.
- Added Filter functionality for different Fields so you can more easily focus on the data that matters to you.
- Added Sorting for Fields in ascending or descending order. This feature supports multiple data types, including strings, numbers, and dates.
- Added Entra authentication which allows you to quickly implement login mechanics based on Microsoft Entra.
- Added Identity mechanics which makes it easy to implement authentication with local accounts:
- Added
IdentityUserResourceto create and manage local user accounts - Added
IdentityRoleResourceto create and manage account roles for role-based authentication
- Added