We are happy to announce that we have put Catel 5.12.0 into beta. This means the team thinks it’s (nearly) code complete, and only bug fixes will be applied to the beta channel. We aim to release the new version in about 2 weeks time, so make sure to test before this date. Our recommendation is to try out the new beta as soon as possible, this is your time to provide feedback! We already had some great feedback, thanks for the users reporting. You can download the beta via NuGet, just make sure to enable “Include prerelease” when checking for updates. Serialization engine improvements We’ve blogged about this earlier,… read more →
Today we have released a beta of Catel.Fody (3.7.0). This version will introduce support for weaving of automatic properties of the ObservableObject in Catel (it alread supports ModelBase and ViewModelBase). Automatic weaving of properties Tired of writing all the dreadful RaisePropertyChange calls in your ObservableObject models? Catel will now weave everything for you. public class Person : ObservableObject { public string FirstName { get; set; } public string LastName { get; set; } } will be weaved into: public class Person : ObservableObject { private string _firstName; private string _lastName; public string FirstName { get { return _firstName; } set { _firstName = value; RaisePropertyChanged(nameof(FirstName)); } } public string LastName… read more →
We are happy to announce that we have put Catel 5.8.0 into beta. This means the team thinks it’s code complete, and only bug fixes will be applied to the beta channel. We aim to release the new version somewhere in January 2019, so make sure to test before this date. Our recommendation is to try out the new beta as soon as possible, this is your time to provide feedback! We already had some great feedback, thanks for the users reporting. You can download the beta via NuGet, just make sure to enable “Include prerelease” when checking for updates. The changes we are most proud of are support for… read more →
We are happy to announce that we have put Catel 5.8.0 into beta. This means the team thinks it’s code complete, and only bug fixes will be applied to the beta channel. We aim to release the new version on November 12, 2018 so make sure to test before this date. Our recommendation is to try out the new beta as soon as possible, this is your time to provide feedback! We already had some great feedback, thanks for the users reporting. You can download the beta via NuGet, just make sure to enable “Include prerelease” when checking for updates. Changes in Catel so far: Platform support changes #1103 /… read more →
We are happy to announce that we have put Catel 5.6.0 into beta. This means the team thinks it’s code complete, and only bug fixes will be applied to the beta channel. Our recommendation is to try out the new beta as soon as possible, this is your time to provide feedback! You can download the beta via NuGet, just make sure to enable “Include prerelease” when checking for updates. Changes in Catel 5.6.0 so far: Platform support changes #1103 / #1165 Convert to multi-targeted projects, PCL is no longer supported (.NET Standard is the replacement) Classes / members marked as obsolete #1124 Mark NullableValueConverter as obsolete since converter doesn’t… read more →
We are happy to announce that we have put Catel 5.3.0 into beta. This means the team thinks it’s code complete, and only bug fixes will be applied to the beta channel. Our recommendation is to try out the new beta as soon as possible, this is your time to provide feedback! You can download the beta via NuGet, just make sure to enable “Include prerelease” when checking for updates. Changes in Catel 5.3.0 so far: Classes / members marked as obsolete #1124 Mark NullableValueConverter as obsolete since converter doesn’t have a target type, so this converter won’t work as expected NullableValueConverter Added/fixed (+) #333 CTL-271 Support generic lists in… read more →