Average Joe user is most of the users I know that use WP. Be that as it may, perhaps an upgrade is in order for 2.1 to at least get back to the less complex way of organizing links.
[Edit after reading Otto's last post which was being published as I was writing this]
I agree with you Otto, in that editing template files will be better in the long run especially when it comes to so many different themes that were / are unable to utilize the previous links manager features (by previous, I am talking about previous to 2.1 Ella of course)
However, I am also of the belief that non code friendly users should have the simplicity that previous versions of 2.1 had regarding being able to order links as needed from within the admin panel and if they so decide to choose a theme that doesn't work with the old style links manager, then they'd need to get an alternate theme, widgetize, get a plug-in or alas, modify the theme's template. While I don't have the expertise in writing plug-ins (yet) - I am sure we will see a 2.1 plug-in that addresses 'ease of use' for ordering links that will hopefully not require editing template files... One of the great features of WP has been it vast array of plug-ins and so I am sure one is on it's way.
My contribution to those that want to customize their links --
With my very limited knowledge of PHP, I was able to set 2.1 to have only a certain number of links in a category. Now of course I am using the K2 theme so this fix will be a bit easier than having to modify an actual template file - and K2 itself is not perfect (yet!)
Basically I wanted 5 links to be randomized from my Blogroll - (Category 2) so within K2's sidebar modules, I enabled 2 PHP modules, labelling the first module, Blogroll (merely as a point of reference within K2's sidebar modules but I did not allow the name of the module to be visible since the category is defined in the code anyway.) - and in the Module's code:
<?php wp_list_bookmarks('category=2&before=<li>&after=</li>
&show_images=1&show_description=0&orderby=rand&limit=5'); ?>
Which returns only category 'Blogroll' and a maximum of 5 links chosen randomly.
Next module I named 'Links' - and in the module's code:
<?php wp_list_bookmarks('category=3&before=<li>&after=</li>
&show_images=1&show_description=0&orderby=url'); ?>
Which returns ALL links in category 'Links'.
This IS a pain to have to do - but you only need to do it one time - and yes it is a very temorary fix and it does rely on wanting to use K2 but the idea can just as easily be inserted into a sidebar template (I think - since I have not tried as yet...) or perhaps another sidebar widget will give you similar results...
If you are running 2.07 and don't want to have to mess with this type of modification - JUST wait on 2.1 and read the support each day and see if there are any intentions for the WP developers to change things to make adding links as easy as it was in old versions.
Personally I like 2.1 - It is faster than previous versions and aside from the links issue mentioned in this topic and a few minor bugs that I am sure will be worked out in future releases... it works well and is still as customizable as ever before if not even better.
Vince