reverted to a previous changeset which had these type of entries... so working round the .net 4 requirement of the latest chageset at present.. :-)
public static PreValue MakeNewPreValue(int dataTypeDefinitionId, string value)
{
// TODO: Revert back to using "Default parameter specifiers" when we compile against .NET 4.0
return MakeNewPreValue(dataTypeDefinitionId, value, string.Empty, 0); // [LK] Added 'underloaded' method, as "Default parameter specifiers are not permitted" in .NET 3.5
We'll still support Umbraco v4.5.2+ and .NET 3.5 but only with bug-fixes in uComponents v3.0.x. Any major new features in uComponents will only be in future releases.
cheers lee... for some reason I thought legacy might be u4.0 and the old schema....
ps are you interested in extensions to uComponents? (i've duplicated textstringArray and extended into providing defintitonlist and table markup as toXML() with headers for the admin datatype prevalue editors to be specified)
ps completely understand you moving to .net 4 and u 4.7, but I'm stuck with .net3.5 due to hosting :-(
Sorry, my fault with badly naming the branches ... should have used version numbers instead (e.g. 3.x and 4.x) ... I'll speak with the team about renaming them - makes sense.
Yes, we are open to extensions. If you familiar with Mercurial, easiest way is to fork the repo and make a pull request. Otherwise drop me an email, and send me a zip of your modifications.
.net 3.5 source?
Just downloaded the latest source and opened in vs 2008, there now seems to be .net4 only code in the latest changeset...
and tailored to u4.7 core.. eg
Default parameter specifiers are not permitted C:\WebDevelopment\Umbraco\v4.5.2\UmbracoJPT\ucomponents\uComponents.Core\uQuery\uQuery-PreValues.cs
And using umbraco.NodeFactory....
Is support for .net3.5 and u4.5.2 being phased out? :-(
reverted to a previous changeset which had these type of entries... so working round the .net 4 requirement of the latest chageset at present.. :-)
public static PreValue MakeNewPreValue(int dataTypeDefinitionId, string value)
{
// TODO: Revert back to using "Default parameter specifiers" when we compile against .NET 4.0
return MakeNewPreValue(dataTypeDefinitionId, value, string.Empty, 0); // [LK] Added 'underloaded' method, as "Default parameter specifiers are not permitted" in .NET 3.5
}
Hi Mike,
We have a separate branch in our source control for the .NET 3.5 version (supporting Umbraco v4.5.2+)
http://ucomponents.codeplex.com/SourceControl/list/changesets?branch=legacy
The main branch ("default") is our latest effort to support API improvements that came with Umbraco 4.7+
Cheers, Lee.
We'll still support Umbraco v4.5.2+ and .NET 3.5 but only with bug-fixes in uComponents v3.0.x. Any major new features in uComponents will only be in future releases.
cheers lee... for some reason I thought legacy might be u4.0 and the old schema....
ps are you interested in extensions to uComponents? (i've duplicated textstringArray and extended into providing defintitonlist and table markup as toXML() with headers for the admin datatype prevalue editors to be specified)
ps completely understand you moving to .net 4 and u 4.7, but I'm stuck with .net3.5 due to hosting :-(
Hi Mike,
Sorry, my fault with badly naming the branches ... should have used version numbers instead (e.g. 3.x and 4.x) ... I'll speak with the team about renaming them - makes sense.
Yes, we are open to extensions. If you familiar with Mercurial, easiest way is to fork the repo and make a pull request. Otherwise drop me an email, and send me a zip of your modifications.
Thanks, Lee.
is working on a reply...