Hi Stephan,
I updated one of my sites with your newest version (3.1). No change though. But, I have a lot of plugins on that site and the hang-up might be due to some sort of incompatibility with something. Anyway, thought you should have at least one report.
BTW, I'm wondering if there's a better way of styling the article's title. Currently you have this tag:
<p <?php if ($instance['class']) echo ' class="'.$instance['myclass'].'"'; ?>>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</p>
So, I've been editing it like so, so I can have some control over the title style:
<p class="postTitle"<?php if ($instance['class']) echo ' class="'.$instance['myclass'].'"'; ?>>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</p>