One minor annoyance I have found with the Dashboard is that when the page was launched, the weather forecast showed up displaying the days it was last launched which may have been some days previous. Has anyone noticed the same? By refreshing the page, it went away and got the current 3 day forecast. Wether this is due to the Browser (Firefox) I'm using I don't know.
I solved it with a bit of code at the bottom of index,php which refreshes the page just once after loading. If anyone is interested this is what it is.
I believe that if people have cookies turned off it might not work, but it works for me anyway

<script type='text/javascript'>
(function()
{
if( window.localStorage )
{
if( !localStorage.getItem( 'firstLoad' ) )
{
localStorage[ 'firstLoad' ] = true;
window.location.reload();
}
else
localStorage.removeItem( 'firstLoad' );
}
})();
</script>
cheers
Tony C.