[All Adaptavist Apps]

Page tree

Our Early Access Programme (EAP) allows interested parties to try out the latest development releases of Theme Builder, prior to the final stable release. As such, you should not use EAP releases in production environments - they may contain bugs or partially complete functionality.

Builder 4.0.2 is a bugfix release to resolve issues with Internet Explorer & Atlassian menu-items

Builder 4.0.2-RC

  • Add view-attachment mode to page & blogpost decorator
  • Add @parentparent selector
  • Avoid checking global permissions for anonymous users

Builder 4.0.2-M5

  • Re-instate script compression
  • Fix editing of text resources
  • Automatically select first link when selecting a new plugin while defining aliases
  • Add tinyurl menulink
  • Update CodeMirror
  • Add some logging to LayoutManager

Builder 4.0.2-M4

  • Prevent the upload of empty resource files
  • Update dashboard.wiki to pass the 'dashboard' param to recently-updated-dashboard
  • Allow builder-show/hide to toggle on whether the space has a @parent or @child
  • Allow layout to be defaulted based on the parent space's layout selection
  • Add {blog-roll} macro

Builder 4.0.2-M3

  • Remove EULA
  • Persuade menus to update watch & favourite icons
  • Add %PARENT% css/js replacement
  • Ensure that jQuery is passing spacekeys to manage-layouts action
  • Move reusable content out of theme body into main decorator
  • Update permission checking to pass space keys where possible

Builder 4.0.2-M2

  • Use contextPath when replacing layout resource urls.
  • Avoid using cluster manager before it has been autowired on confluence startup
  • Make builder menus compatible with atlassian jQuery enhancements (NB: Watch/Favourite links are working but the display is not updating yet)

Builder 4.0.2-M1

  • Fix backup tab in IE
  • Add tree-view to {list-spaces}
  • Notation guide updates
  • Remove reflection from clustered cache abstraction layer
  • Ensure all node caches are concurrent

Download

  File Modified
Java Archive adaptavist-plugin-themeBuilder-4.0.2-M1.jar Feb 24, 2010 by amoran
Java Archive adaptavist-plugin-themeBuilder-4.0.2-M2.jar Mar 08, 2010 by amoran
Java Archive adaptavist-plugin-themeBuilder-4.0.2-M3.jar Mar 10, 2010 by amoran
Java Archive adaptavist-plugin-themeBuilder-4.0.2-M4.jar Mar 17, 2010 by amoran
Java Archive adaptavist-plugin-themeBuilder-4.0.2-M5.jar Mar 24, 2010 by amoran
Java Archive adaptavist-plugin-themeBuilder-4.0.2-RC.jar Apr 07, 2010 by amoran

Reporting Problems

Please report any issues that you find to tracker.adaptavist.com

  • No labels

1 Comment

  1. Unknown User (amoran)

    The following CSS should work around some of the watch/favourite display issues:

    .dynarch-popup-menu .pageunfavourite .icon {
        background: transparent url("%CONTEXTPATH%/images/icons/fav_on_16.png") no-repeat scroll center;
    }
    .dynarch-popup-menu .pagefavourite .icon {
        background: transparent url("%CONTEXTPATH%/images/icons/fav_off_16.png") no-repeat scroll center;
    }
    .dynarch-popup-menu .action-page-favourite .icon {
        background: transparent url("%CONTEXTPATH%/images/icons/fav_off_16.png") no-repeat scroll center;
    }
    .dynarch-popup-menu .ie-page-favourite-selected .icon {
        background: transparent url("%CONTEXTPATH%/images/icons/fav_on_16.png") no-repeat scroll center;
    }
    
    .dynarch-popup-menu .pagestopwatching .icon {
        background: transparent url("%CONTEXTPATH%/images/icons/watch_on_16.png") no-repeat scroll center;
    }
    .dynarch-popup-menu .pagestartwatching .icon {
        background: transparent url("%CONTEXTPATH%/images/icons/watch_off_16.png") no-repeat scroll center;
    }
    .dynarch-popup-menu .action-page-watching .icon {
        background: transparent url("%CONTEXTPATH%/images/icons/watch_on_16.png") no-repeat scroll center;
    }
    .dynarch-popup-menu .action-page-watching.inactive .icon {
        background: transparent url("%CONTEXTPATH%/images/icons/watch_off_16.png") no-repeat scroll center;
    }