Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Topic author was deleted

    Aug 14, 2012 @ 11:20

    Contour 1.1.13 changes

    Here is an overview of the changes in Contour 1.1.13 which is out today :)

    1.1.13 - August 2012
    Fixed: CON-81 threading issue with workflow types
    Fixed: CON-49 Recordset action with settings results in YSOD
    Fixed: CON-51 Checkbox field setting type not holding state when used on a field type
    Fixed: CON-52 No need for deleted state in entries viewer
    Fixed: CON-29 Extender controls may not be registered after PreRender.
    Fixed: CON-56 Adding custom fieldtype with addition settings and removing a settings breaks the form
    Fixed: CON-70 default members values in forms
    Fixed: CON-71 /umbraco_client/jqueryui.js file not found on form designer
    Fixed: CON-63 Entries viewer, forms that have lots if fields, UI runs off the page
    Fixed: CON-69 Create form from form picker bug
    Fixed: CON-68 Lots of fields kills entries viewer
    Fixed: CON-79 Sometimes slashes in the record will break entries viewer
    Fixed: CON-72 Install SQL script failing on Azure
    Fixed: CON-82 Improve setting validation on default datasources
    Fixed: CON-83 Settings not being validated on workflow editor
    Fixed: CON-84 Improve setting validation on default workflows
    Fixed: CON-86 Contour license conflicting with 3rd party licenses
    Fixed: CON-67 Entries viewer, sort columns by the way they exist on the form
    Fixed: CON-59 Record viewer issue when updating form
    Fixed: CON-88 Error on SQL Azure, Tables without a clustered index are not supported in this version of SQL Server
    Fixed: CON-90 Email record record actions needs different icon
    Added: CON-80 no need for license file when it's a local browser request (full mode)
    Added: CON-50 Add version number to config and dashboard
    Added: CON-74 Add version number to DLLs
    Added: CON-75 When adding a new field, auto scroll down to the add field form

    Package and upgrade files can be found on the project page http://our.umbraco.org/projects/umbraco-pro/contour

    Issue tracker is also public now and can be found at http://issues.umbraco.org/issues/CON

     

  • sun 403 posts 395 karma points
    Aug 14, 2012 @ 11:36
    sun
    0

    Thanks for you hard work.

    One question:

    Can add Recaptcha to Contour core code? and make it can customize which characaters can be used? It's more and more important now.

    If this can't be done, Please tell me how to do it.

  • Douglas Ludlow 210 posts 366 karma points
    Aug 14, 2012 @ 15:54
    Douglas Ludlow
    0

    Thanks Tim! This release is a great improvement. Thanks for all of your awesome work!

    @sun, the Recaptcha field type is available as part of the Contour Contrib package. If you don't want the rest of the field types, workflows, etc found in the package, the project is open source (MIT licensed), you can pull the Recaptcha code out and write your own dll. See the developer documentation for more details on how to create custom fieldtypes.

  • Douglas Ludlow 210 posts 366 karma points
    Aug 14, 2012 @ 16:59
    Douglas Ludlow
    0

    @Tim Geyssens,

    I've added some comments to a few of the issues, describing the bugs in more detail. However, these issues are now marked as fixed. Would it be best to create new issues? If so, what would be the best way to go about doing that? I don't have any rights.

    http://issues.umbraco.org/issue/CON-68#comment=67-2335

    http://issues.umbraco.org/issue/CON-63#comment=67-2334

  • Anders Stentebjerg 58 posts 234 karma points
    Aug 15, 2012 @ 16:20
    Anders Stentebjerg
    0

    Hi Tim,
    Congratulations with the release.
    Have you tried it with Umbraco 4.7.2? I cant make it work frontend … The form is not showing up, no errors at all :(

  • Comment author was deleted

    Aug 16, 2012 @ 09:05

    @Anders just tried on an Umbraco 4.7.2 and it works ... , does the preview form work and the contour section?

  • Comment author was deleted

    Aug 16, 2012 @ 09:10

    @DOuglas thanks again for the feedback :) I'll reopen the issues it should be possible to create issues soon just waiting on an import of the core issues and then it will be possible

  • Anders Stentebjerg 58 posts 234 karma points
    Aug 17, 2012 @ 11:34
    Anders Stentebjerg
    0

    Hey Tim,
    Thanks for your reply. Do you have 2 minutes on Skype where I can show you the problem? 

  • Comment author was deleted

    Aug 20, 2012 @ 09:32

    @Anders, sure could you mail me your skype username , tg at umbraco dot com

  • Comment author was deleted

    Aug 21, 2012 @ 13:32

    1.1.13.1 is out fixing 2 bugs that sneaked into the 1.1.13 release

    Fixed: CON-91 Value cannot be null. Parameter name: g
    Fixed: CON-63 Entries viewer, forms that have lots if fields, UI runs off the page

  • Comment author was deleted

    Aug 22, 2012 @ 11:11

    Apparently a show stopper sneaked into the 1.1.13 release http://issues.umbraco.org/issue/CON-98 so 1.1.13.2 is just out fixing this issue

    It only affects clean installs on sql server or sql azure of 1.1.13 and 1.1.13.1, upgrades aren't affected

    If you experience the bug please execute the following script

    ALTER TABLE [UFRecordDataBit]
    DROP CONSTRAINT PK_UFRecordDataBit
    
    
    ALTER TABLE [UFRecordDataDateTime]
    DROP CONSTRAINT PK_UFRecordDataDateTime
    
    
    ALTER TABLE [UFRecordDataInteger]
    DROP CONSTRAINT PK_UFRecordDataInteger
    
    
    ALTER TABLE [UFRecordDataLongString]
    DROP CONSTRAINT PK_UFRecordDataLongString
    
    ALTER TABLE [UFRecordDataString]
    DROP CONSTRAINT PK_UFRecordDataString
  • Anders Stentebjerg 58 posts 234 karma points
    Aug 27, 2012 @ 08:46
    Anders Stentebjerg
    0

    @Tim

    The reason it did not work is that the Contour is a. NET usercontrol and these can not print through XSLT - so my mistake :)

  • Comment author was deleted

    Aug 27, 2012 @ 08:48

    @Anders ah makes sense now, thanks for letting me know ;)

  • Douglas Ludlow 210 posts 366 karma points
    Sep 06, 2012 @ 01:28
    Douglas Ludlow
    0

    Tim, what's the best way to report bugs and feature requests for Contour? The issue tracker doesn't appear to allow the general public (like me) to add new items to the Contour project. Should I just report them here on the forum?

    A couple things, I'd like to add are that uploaded files have a link associated to them in the entries viewer and that the submit button text be customizable on a per form basis (perhaps a form setting?).

  • Nicolás Cova 48 posts 120 karma points
    Apr 17, 2013 @ 16:13
    Nicolás Cova
    0

    Hi. Did someone try this version with Umbraco 4.11.5? Thank you.

  • Comment author was deleted

    Apr 17, 2013 @ 16:47

    @Nicolas lastest version 3.0.9 should work on both v4 and v6 so also 4.11.5

  • Nicolás Cova 48 posts 120 karma points
    Apr 17, 2013 @ 17:35
    Nicolás Cova
    0

    @Tim

    Thanks for the quick reply. The thing is that my boss is kind of stubborn and insists in upgrading from 1.1.9 to 1.1.13 before trying out 3.0.9. That's why I  asked about 1.1.13's compatibility with 4.11.5. 

  • Comment author was deleted

    Apr 17, 2013 @ 17:39

    Not 100% sure but I think it should work

  • Nicolás Cova 48 posts 120 karma points
    Apr 17, 2013 @ 17:43
    Nicolás Cova
    0

    OK. I'll give it a shot and if anything comes up I'll let you know. Thanks!

  • Comment author was deleted

    Apr 17, 2013 @ 18:03
Please Sign in or register to post replies

Write your reply to:

Draft