Blog » jQuery UI v1.5 Released, Focus on Consistent API and Effects
Posted June 9th, 2008 by PaulAdditionally, an issue has been found in ThemeRoller that causes the downloaded images to be default images in most cases. The issue was fixed now, and we also suggest you to try out downloading your theme again.
jQuery UI 1.5: Rethinking Our Approach to UI

When we first started with the UI project, we set out to build a generic, basic, and simple way of adding and extending core interaction to DOM elements. However, we soon found that our approach wasn’t working for UI. Using the “simple” approach, we were only able to serve simple interaction modules, but not full featured UI widgets. The second problem was that some plugins came from external sources making the UI suite seem disjointed and inconsistent.
All of this occurred right after we released 1.0 and we immediately realized it was time to reconsider our path. We had to find a approach that kept the simplicity of jQuery while making it possible to add full featured widgets to UI. We also already knew that something very simple to use is very challenging to develop. The first task was to build a generic API that allowed for maximum flexibility while being amazingly simple. The next task was making it similarly simple to develop plugins for that API.
One API to Rule Them All
What we came up with, was an API that removed 95% of our exposed methods, and kept only one single overloaded method per plugin. For example:
- $(”div”).draggable() creates a draggable
- $(”div”).draggable(”destroy”) destroys it
- $(”div”).draggable(”method”) calls another method on the plugin.
The new API also makes all callbacks behave similarly, exposes the default options for each plugin and intelligently cleans up plugins using remove(). We also made it possible to update plugin options on the fly, and added smaller updates that make UI feel like one suite.
In order to make this happen, we removed the jquery.dimensions.js (which can now be found in jQuery core), the ui.mouse.js and the *.ext.js dependancies, introduced a ui.core.js (which includes many useful helpers) and created the jQuery UI widget factory which makes creating a new plugin for UI amazingly simple while making it very difficult to break the API.
Stability, Debugging, Testing and jquery.simulate
It was extremely important that jQuery UI v1.5 was not only feature-rich but also stable. We took several steps to greatly improve our debugging and testing including the setup of our own dedicated bugtracker with jQuery UI specific version and milestone targeting. We also invested a lot of time into new unit tests that make use of the jQuery test suite Qunit. Finally, we created jquery.simulate.js, a plugin specifically designed to fire true browser events. This means, you can actually tell the plugin to pick up your draggable, move it to a certain position and release it again, just if you’d be talking to a real testing person.
The Need for Effects: Enter Enchant
One of the great things in being able to take a step back is that it offers a totally different perspective on what a full-featured UI solution should offer. While jQuery UI v1.0 was currently offering a nice suite of UI controls, users were in need of solid effects like those offered in libraries such as script.aculo.us and jQuery UI’s former inspiration, Interface. Unfortunately, Interface was no longer being updated which left a bit of a hole in terms of effects; hence a new project called “Enchant” was born. Originally planned to be released as a complementary library to jQuery and jQuery UI, we realized that it made perfect sense to merge Enchant with jQuery UI allowing users easy access to advanced effects and UI controls from one solution.
We’re proud to announce that Enchant is now a part of jQuery UI and jQuery users now have a unified solution for their effects and UI needs. The jQuery UI effects can be used standalone or together with UI and have a separate core which extends the jQuery core to introduce advanced easing, class transitions (morphing) and color animations. All effects are tightly integrated into the main API and can be used as standalone ( $(..).effect() ) or directly from within jQuery methods you already know ( hide()/show() ).
Overall, we already have more than 15 ready-to-use effects for you to use in your projects, not only those provided by script.aculo.us (blind,bounce,drop,fold,slide …), but also fresh, new effects (transfer, explode. clip, scale) that make jQuery UI a great library enhancing your applications!
As promised in one of the last blog posts, it comes with a complete documentation and a combined demo page to let you see them in action.

Roll Your Own Themes: ThemeRoller!
One of the first things that a user typically wants to do when using new UI controls is “skin” them to match their site’s color schemes. Obviously, when you have UI controls from varying sources, the ability to provide a consistent “theme” across all controls becomes much more difficult since most component authors have their own method of skinning their controls. We took a serious look at this and made it a priority to have a consistent default theme that users could use as a template for customizing jQuery UI’s set of widgets.
We reached out to Boston-based Filament Group for some help in this and they were all for it. Being very invested in jQuery, they saw this as a great opportunity to further help the project. Well, what went from an discussion outlining a single default theme quickly blossomed into jQuery UI’s killer app; ThemeRoller.
ThemeRoller offers a unique approach to theming UI components specifically built for jQuery UI. With ThemeRoller, you can create your very own theme for your project within minutes. It’s completely intuitive, comes wich rich controls to change the color and design of each state, and then previews your theme with the actual UI components as you work!
You now have literally millions of combinations to chose from. Any theme you create can be reached by copying the URL at any point in your progress; and after you’ve played with it enough, you can click the download button and a ZIP package is generated with the css file, the images and a demo page.
In addition, ThemeRoller also includes a theme gallery to browse for downloads and inspiration. Creating a theme for your application doesn’t get any easier than this; it’s simply that amazing.
We really want to extend our deepest gratitude to the amazingly talented folks at the Filament Group for creating this amazing application.
Oh and by the way, you can also reach ThemeRoller by direct URL at: ThemeRoller.com. If you want to know more about this great app and how it’s done, visit the excellent blog writeup by Filament Group!
Plugin Stabilization and Enhancements
The biggest improvements and changes were done on individual plugin code. Almost every plugin has been completely rewritten from scratch to optimize stability and performance and every plugin now comes with a bug changelog. We also focused heavily on enhancing options and increasing flexibility (e.g. connecting sortables to draggables) to allow our plugins to be used in almost every environment.
The best way to get a full feel for every enhancement to jQuery UI’s components is to review the changelog. It’s fairly extensive and gives an indication of the incredible effort put in by the UI team. In the near future, we’ll be creating postings and articles which outline the newest features of UI’s components. In the meantime, we suggest you read our blog post about jQuery UI 1.5b, which explains many of the mouse interaction changes (sortables, draggables, slider), and dig through the documentation and the changelog yourself.
Downloading
jQuery UI v1.5:
Final Release: http://ui.jquery.com/download
You can also checkout the full release of jQuery UI v1.5 from the Subversion repository.
There’s more to come!

This has truly been an amazing effort and we’re very proud to be able to offer a comprehensive UI solution to the jQuery community.
We’re already planning the next release and have a huge roadmap that contains plugins like grid, tooltips, menus, colorpickers, autocompletes and much more. Many of them are already done and commited code-wise. We’ve also planned plugins using new technologies like Webkit’s css transforms (see the recent coverflow plugin), so stay tuned.
None of this would’ve been possible if not for the amazing efforts and dedication the jQuery UI team. They’ve dedicated so much of their personal and professional time to create this amazing library and they deserve so much credit for their hard work. We also want to thank the jQuery core team, with whom we worked closely together to integrate many needed features into the jQuery core itself.
Last but certainly not least, we want to give a VERY special thanks the Liferay staff, who invested countless hours into the development of the new UI website, and with whom we worked closely together to stabilize jQuery UI for all kinds of enterprise situations.
Thank you for all of your support,
Paul Bakaus & the jQuery UI Team

June 9th, 2008 at 3:54 am
[…] […]
June 9th, 2008 at 4:06 am
Paul,
My congratulations on the release! Very hard work with a superior result!
June 9th, 2008 at 4:17 am
Congratulations.
But you need to fix the download link - there’s a dot at the end of it which gives a 404 error.
Also it’s still RC1 on the page (and download) - not a final release.
But apart from that - good work.
June 9th, 2008 at 4:38 am
Wow, great work. I can’t wait to give it a try.
June 9th, 2008 at 4:43 am
A fantastic theme builder…
June 9th, 2008 at 5:03 am
[…] jQuery UI v1.5 Released, Focus on Consistent API and Effects […]
June 9th, 2008 at 5:07 am
[…] Für das JavaScript-Framework jQuery gibt es das Plugin jQuery UI, welches sehr viele Anwendungen im Oberflächenbereich abdeckt. Das Plugin hat ein Update bekommen und in diesem Zusammenhang sollte man sich den ThemeRoller mal anschauen. Übersichtlich wird dort dargestellt, wie und was geht. Das Theme kann per Klick erstellt und erwendet werden. Die Integration wird vereinfacht, auch wenn man dann auf Grund von Datenmenge die Lösung ändert. So kann man damit recht schnell ein Ergebnis erzielen. Ebenso kommt man sehr schnell zur Dokumentation und einer ganzen Reihe von Demos. Artikel #679, 9. Juni 2008 · CSS, xHTML, JS, Webküche · 0 Kommentare Tags: Framework, jQuery Gelesen: 1 · heute: 1 · zuletzt: 9. Jun 08, 12:06 Kommentar-Feed zum Artikel · TrackBack URL · Rivva Digest […]
June 9th, 2008 at 5:07 am
It’s amazing!
June 9th, 2008 at 5:13 am
This feels rushed, jQuery UI is far from ready to be used in a production environment. Most of the demos don’t work cross browser. Safari 2 is not supported? Even though it looks good, I recommend to let things stabilize before you get too excited.
June 9th, 2008 at 5:23 am
Good stuff, I’ll wait for 2.0 because it seems the project still in flux.
June 9th, 2008 at 5:23 am
A single but huge : THANK YOU !
June 9th, 2008 at 5:25 am
It’s fantastic !
June 9th, 2008 at 5:45 am
Thanks for the amazing work guys!!!!!!
June 9th, 2008 at 6:04 am
[…] Hoy anuncian la salida de jQuery UI 1.5, el script.aculo.us de jQuery. En la que al parecer han eliminado cerca del 95% de los métodos que se usaban previamente para centralizar más las llamadas a los efectos disponibles. […]
June 9th, 2008 at 7:04 am
[…] jQuery UI 1.5 hits the net … details in the extensive announcement Spread the word! […]
June 9th, 2008 at 7:08 am
[…] Paul Bakaus et l’équipe de jQuery UI ont sorti une mise à jour importante de jQuery UI 1.5 […]
June 9th, 2008 at 7:14 am
Congratulations. I really appreciate this work. I know its a mammoth undertaking.
June 9th, 2008 at 7:17 am
i wonder when ui/jquery authors write a real ui toolkit, including tables/grids/forms. It’s useless for a real project now.
June 9th, 2008 at 7:18 am
Who cares about Safari 2
I’m running with it
great job I know what time it is;)
June 9th, 2008 at 8:05 am
Outstanding. very well done, nice article. Thank you.
JT
http://www.Ultimate-Anonymity.net
June 9th, 2008 at 8:15 am
Great release! This library continues to amaze me. Keep up the good work!
June 9th, 2008 at 8:21 am
Two words for the team: AWE-SOME.
Congratulations for the wonderful work!
June 9th, 2008 at 8:30 am
[…] jQuery UI 1.5 is out! I really need to try some of these but with most of my projects having strict 508 issues - there hasn’t been any opportunities to experiment. I like how much thought they are putting into things and it looks like more good stuff is planned for the future: We’re already planning the next release and have a huge roadmap that contains plugins like grid, tooltips, menus, colorpickers, autocompletes and much more. […]
June 9th, 2008 at 8:41 am
Wow! Truly impressive work on so many fronts! Thanks for continuing to bring innovation to the Javascript world!
June 9th, 2008 at 9:07 am
Awesome work guys!
My congratz to the outstanding UI Team!
June 9th, 2008 at 9:23 am
[…] New release of the javascript libraryread more | digg story […]
June 9th, 2008 at 9:38 am
[…] Full release notes can be found at the jQuery blog. addthis_url = ‘http%3A%2F%2Fbenjaminsterling.com%2Frelease-of-jquery-ui-v15%2F’; addthis_title = ‘Release+of+jQuery+UI+v1.5′; addthis_pub = ‘bmsterling’; Tags: jQuery […]
June 9th, 2008 at 10:02 am
[…] Au menu : API, thèmes et effets ! Je vous laisse découvrir cette interface utilisateur sur le site officiel qui vous donnera pas mal d’exemples pour commencer à l’utiliser … […]
June 9th, 2008 at 10:27 am
[…] On top of this, jQuery 1.2.6 was recently released and jQuery UI 1.5 has also just been released. […]
June 9th, 2008 at 10:53 am
[…] jQuery has just released version 1.5 of their user interface module called “jQuery UI”. Maybe not the most snazzy of names, however, the module is a major leap forward for web developers and application developers. You can see the details at http://ui.jquery.com although the high interest has crash the server, I think. I can’t wait to try it out. […]
June 9th, 2008 at 10:55 am
Mindblowing! Thanks so much! =o)
June 9th, 2008 at 11:34 am
[…] UI v1.5 Released, Focus on Consistent API and EffectsjQuery UI v1.5 Released, Focus on Consistent API and Effects - New version of jQuery: jQuery UI v1.5 - Examples and demos of jQuery1.5 […]
June 9th, 2008 at 12:55 pm
It’s absolutely amazing! I love the ThemeRoller app!
Can’t wait to see the table/grid component. It’s one of the most used components on the web.
xwisdom
http://xwisdomhtml.com
June 9th, 2008 at 1:08 pm
Going to:
http://jquery-ui.googlecode.com/files/jquery.ui-1.5.zip
Inside the .zip file there is “version.txt” which says “1.5rc1″ isn’t this incorrect?
Also I am confused about the naming convention used for the files, as I believe all the effects be in a seperate directory called “effects” as one is not dependent on the other and they are seperate packages now… Again with the theme downloads, instead of there being “jquery-ui-themeroller.css” it should be called eg. “smoothness.all.css” following the naming conventions used in the flora theme.
Ultimately though, I believe that file structure should be something like:
/jquery/jquery-1.2.6.js
/jquery/demos/
/jquery/themes/
/jquery/tests/
/jquery/plugins/
/jquery/plugins/effects/
/jquery/plugins/ui/
The use of the plugins folder is useful as other jquery plugins just go in there, which is what enchant and ui are…
Also one last one, jquery uses “jquery-1.2.6.pack.js” however, UI uses “ui.core.packed.js”.
June 9th, 2008 at 1:13 pm
[…] The good folks at jQuery just released a new version of UI library. For the uninitiated, jQuery UI is mostly a visual effects library that allows one to create AJAX-style user interfaces and interactions really quickly and easily. […]
June 9th, 2008 at 1:35 pm
Congratulations!
A hard work with a seriously great result!
June 9th, 2008 at 2:07 pm
[…] Wir müssen nicht mehr lange warten und jQuery UI 1.5 wird ist released. Neben einigen Komponenten und hübschen Effekten, bietet der Core eine – für Plugin-Autoren – interessante Widget-Factory, welche ich mal am Beispiel einer Canvas Imagemap näher unter die Lupe nehmen möchte. Als erstes sollte man sich daher die neuesten Versionen von jQuery, UI und explorercanvas (wir wollen ja, dass die Beispiele auch ein bisschen im IE funktionieren.) besorgen. Hier findet ihr eine - zugegebenermaßen - häßliche Demo des einfachen CanvasMap-Plugins (ich bin kein Grafiker und scheitere bereits bei Imagemaps
. […]
June 9th, 2008 at 2:11 pm
[…] jQuery UI v1.5 Released, Focus on Consistent API and Effects […]
June 9th, 2008 at 2:12 pm
[…] jQuery UI v1.5 Released, Focus on Consistent API and Effects […]
June 9th, 2008 at 2:23 pm
Following on what I said, it is only the version number inside “version.txt” that is incorrect, all the files are the correct version.
And I forgot to say what a wonderful job the UI and jQuery team are doing, I am using jQuery UI in my own projects, and all of this is a fantastic move in the right direction. Congratulations and thankyou.
June 9th, 2008 at 3:08 pm
Enormous !
June 9th, 2008 at 4:10 pm
very good!
About themeRoller, some little problem with IE:
1. there’s a gap between tabs and content (ie6 and ie7) http://img241.imageshack.us/img241/2061/ietabslp5.jpg
2. slider alignment (ie6 only) http://img136.imageshack.us/img136/8296/ie6sliderak8.jpg
3. ie6 and ie7 :no active color when pressing buttons in dialog and days/next/previous in calendar.
4. In ie6, also no hover color.
Maybe 3 and 4 are normal and requires some jquery magics?
June 9th, 2008 at 4:15 pm
ops….sorry for the big image.
I also noticed no over in accordion (ie6)
June 9th, 2008 at 4:30 pm
thanks you very much!
June 9th, 2008 at 4:57 pm
The version.txt file in the development bundle still shows “1.5rc1″
June 9th, 2008 at 5:57 pm
I’m sure this isn’t the place for bug reports, but…
Under the “Drag prevention for pre-defined elements” heading in the “Draggable” section, I think you need some kind of “return false” on the anchor tag, otherwise the browser shoots to the top of the page when you click the link.
I realise that it’s only a demo and anyone implementing it for themselves should take this into account, but it would make for a more usable demo experience…
Matt
June 9th, 2008 at 6:23 pm
[…] Источник:jQuery. Категория: jQueryАвтор: Spider Дата: 9 Июнь 2008 Время: 23:22 […]
June 9th, 2008 at 6:32 pm
[…] Link: jQuery | jQuery UI v1.5 Released, Focus on Consistent API and Effects Link: jQuery | ThemeRoller Link: jQuery | Demo page Link: Ajaxian | jQuery UI 1.5: Effects, API, and Themes Link: javaHispano | JQueryUI 1.5: Nueva API, efectos y temas Posts Relacionados […]
June 9th, 2008 at 6:51 pm
@Benjamin Lupton, @travi Thanks for pointing out the issue with version.txt. I uploaded a new zip (jquery.ui-1.5.0.zip instead of jquery.ui-1.5.zip) with it fixed. That’s the ONLY difference between these two files.
June 9th, 2008 at 7:31 pm
[…] jQuery: » jQuery UI v1.5 Released, Focus on Consistent API and Effects (tags: jquery ui awesome news) […]
June 9th, 2008 at 8:11 pm
Amazing work. Really.
June 9th, 2008 at 9:01 pm
Fabulous work. Congratulations to the entire team on an extremely well thought-out reworking of JQuery UI. My only quibble is that I think this work is worth a major version bump.
June 9th, 2008 at 10:35 pm
I don’t understand. Instead of looking up what methods to call, now you have to lookup what string to pass a method? How is that an improvement? It completely breaks auto-complete as well.
June 10th, 2008 at 1:54 am
[…] jQuery UI v1.5 Released, Focus on Consistent API and Effects - While not specifically .NET, the jQuery UI is interesting enough to web developers to cross platform boundaries, especially as it has a shiny new release. […]
June 10th, 2008 at 2:04 am
the download still doesn’t seem to work correctly. I selected YIU and the filename says .min.js
Or is this normal? Since when I tried it earlier it showed YUI in the file name..
June 10th, 2008 at 6:30 am
[…] jQuery UI v1.5 Released, Focus on Consistent API and Effects (tags: jquery ui) […]
June 10th, 2008 at 9:18 am
@evrim - I wouldn’t say that, the forms plugin is superb, table sorting plugins are available either via the ext.js extensions and grids IMO should be done with your own HTML+CSS (plus $.resizable) but ext.js covers that aswell. As people write and submit plugins for UI using the API that kind of functionality will become available too. It’s not at all useless for a real project now.
That said I would love to see some examples added for the dialogue boxes. The ease of customising and using jqModal and the examples that go with that plugin would be great to see on the UI website.
June 10th, 2008 at 10:10 am
[…] Команда jQuery UI team выпустила новую версию jQuery UI. […]
June 10th, 2008 at 10:18 am
One thing I don’t like about UI: datepicker ~60kb !? I was looking for a simple datepicker/calendar for JQuery and this one looks to me huge.
Maybe with new promised widgets (colorpicker / menu / etc.) we’ll see a lighter calendar.
However, congratulations for your good work.
June 10th, 2008 at 5:36 pm
[…] Se trata de una aplicación online para generar en vivo themes que integrar con jQuery UI 1.5. Acordeones, pestañas, calendarios todo personalizable y descargable. […]
June 10th, 2008 at 8:33 pm
[…] In related news, jQuery UI 1.5 has been officially released, says the jQuery enquirer. jQuery 1.5 is an extensive UI oriented extension to jQuery, and version 1.5 bring forth many improvements such as a tighter API, an effects library called enchant, a skinning mechanism and plenty of bug fixes. I’m just excited they finally updated their documentation, as I’ve been using it for a while going only by source code. […]
June 10th, 2008 at 10:19 pm
Nice work! I haven’t used it yet, but I’m looking forward to it.
June 11th, 2008 at 9:19 am
[…] jQuery: » jQuery UI v1.5 Released, Focus on Consistent API and Effects […]
June 11th, 2008 at 6:34 pm
I’m disappointed that this blog is selective in showing comments. I’ve comment on cross browser issues and the lack of Safari 2 support but that comment was quickly filtered.
I guess the jQuery/UI team is only interested in ‘Nice work!’ type of comments. Getting things out fast should be of higher priority then creating stable scripts. As is, this won’t be very usefull in a production environment.
June 11th, 2008 at 11:36 pm
[…] Recently, JQuery UI 1.5 released. […]
June 12th, 2008 at 11:06 am
[…] MooTools 1.2 12 Jun After jQuery 1.2.6 and jQuery UI 1.5, I expected that some other frameworks release a new version (script.aculo.us, moo, and so on). For now, only Moo launched the final release (1.2) of their cool library. I don’t know what to say about the library (I didn’t try it yet), but this version of site is much, much nicer. […]
June 13th, 2008 at 12:30 am
[…] jQuery: » jQuery UI v1.5 Released, Focus on Consistent API and Effects A re-write of jQuery UI - now even simpler! I predict by 2010 you will be able to jQuery a whole website in one small line of code: $().addWoWFactor() (tags: jquery ui api) […]
June 13th, 2008 at 12:23 pm
Fantastic job! I can’t help but comment at least on the demo page, the improvements are immediately noticeable. Earlier iterations of effects in JQuery, including Interface, had something lacking in terms of both stability and smoothness, especially in comparison to certain other javascript libraries. Trying out the demo page now, all I can say is wow! Congrats and a big thank you to the JQuery UI team!
June 13th, 2008 at 2:47 pm
I can’t get the theme roller to work properly in IE7, the theme gallery is non existant and has a javascript error and the theme designer interface is very slow and if you use the colour pick to fast / too slow it then breaks for all future use and won’t exit without using the esc key.
Also the demos could do with descriptions, the interface is flashy but not very user friendly, each scrolls around with no clue what it’s a demo for…
Other than that it looks good and I’m pleased to see it progressing.
June 14th, 2008 at 12:38 am
[…] Read all about it. Post a comment | Trackback URI […]
June 16th, 2008 at 11:55 am
[…] jQuery UI v1.5: jQuery’s UI project has shipped v1.5, where they’ve significantly enhanced the performance & usability! […]
June 16th, 2008 at 1:55 pm
[…] Incredibil dar adevărat: jQuery UI se laudă cu versiunea 1.5, tocmai lansată, dar sfatul meu - evident sunteţi liberi să îl ignoraţi - este: nu îl folosiţi. Nu mă aşteptam, dar nici după ultimele luni de investiţie în noua versiune "produsul" nu are maturitatea necesară pentru a fi folosit într-un proiect serios, cu atât mai puţin unul comercial, care vrei să fie perfect. Din fericire există o comunitate maaaare, care a dezvoltat pluginuri mai bune, acoperind parţial jQuery UI. […]
June 16th, 2008 at 2:20 pm
[…] http://jquery.com/blog/2008/06/09/jquery-ui…/ […]
June 18th, 2008 at 6:27 pm
is IE6 still supported by UI 1.5 ?
while trying the demos I’ve seen several problems…
June 21st, 2008 at 11:36 am
jQuery UI y su ThemeRoller
De la biblioteca jQuery para JavaScript he hablado, hablo y hablaré en esta bitácora, porque, si no exisitera h
June 22nd, 2008 at 7:04 pm
[…] jQuery UI v1.5 Released, Focus on Consistent API and Effects […]
June 24th, 2008 at 12:09 am
[…] jQuery UI 1.5 […]
June 24th, 2008 at 4:52 am
[…] jQuery UI 1.5 […]
June 24th, 2008 at 5:26 am
[…] jQuery UI 1.5 […]
June 24th, 2008 at 6:13 am
[…] jQuery UI 1.5 […]
June 24th, 2008 at 7:10 am
[…] Вчера вышла первая бета версия WordPress 2.6. Релиз обещается к середине июля. Скачать WordPress 2.6 Beta 1 можно тут. Версия 2.6 не столь важный релиз, как выход 2.5 версии, но все же есть довольно много важных нововведений. * Post Revisioning * A “Press This” bookmarklet for tumblelog style quick posting * Caching of static files with Gears for faster Admin page loads * A new and improved image editing dialog that offers lots of control over the images in your posts * Theme previewing as seen on WordPress.com * Built-in word counting in the post editor * The ability to disable remote publishing for the security conscious * XML-RPC API for changing blog options * Better SSL support for the Admin * Hierarchy-aware paging in the Manage Pages and Manage Categories admin pages. * The ability to relocate your content directory * The ability to move wp-config.php out of your web root * Drag-and-drop sortable galleries * Customizable default avatars * Bulk delete, activate, and deactivate for plugins * Check box range selection with shift-click * TinyMCE 3.1.0.1 with lots of bug fixes * jQuery 1.2.6 with some nice performance improvements * jQuery UI 1.5 * Lots of bug fixes and performance improvements These icons link to social bookmarking sites where readers can share and discover new web pages. […]
June 24th, 2008 at 8:47 am
[…] Release Info: Post Revisioning A “Press This” bookmarklet for tumblelog style quick posting Caching of static files with Gears for faster Admin page loads A new and improved image editing dialog that offers lots of control over the images in your posts Theme previewing as seen on WordPress.com Built-in word counting in the post editor The ability to disable remote publishing for the security conscious XML-RPC API for changing blog options Better SSL support for the Admin Hierarchy-aware paging in the Manage Pages and Manage Categories admin pages. The ability to relocate your content directory The ability to move wp-config.php out of your web root Drag-and-drop sortable galleries Customizable default avatars Bulk delete, activate, and deactivate for plugins Check box range selection with shift-click TinyMCE 3.1.0.1 with lots of bug fixes jQuery 1.2.6 with some nice performance improvements jQuery UI 1.5 Lots of bug fixes and performance improvements […]
June 24th, 2008 at 9:24 am
[…] jQuery UI 1.5 […]
June 24th, 2008 at 10:38 am
[…] Baru selepas beberapa bulan pihak WordPress mengeluarkan versi 2.5, kini WordPress 2.6 versi beta telah pun dilepaskan. WordPress 2.6 dijangka dikeluarkan pada pertengahan bulan Julai 2008. Bagi yang ingin mencubanya terlebih dahulu sebelum orang lain, anda boleh memuat turunnya sekarang. Antara perkara yang telah dinaik taraf ialah: Theme preview sama seperti di laman WordPress.com jQuery UI 1.5 Susunan halaman (pages) dan kategori mengikut hireraki (abjad, dan sebagainya) Galeri dengan sokongan drag dan drop Kebolehan untuk mengira perkataan (word counting) ketika menulis Avatar tetap yang boleh diubahsuai […]
June 24th, 2008 at 2:53 pm
[…] jQuery UI 1.5 […]
June 24th, 2008 at 4:15 pm
[…] jQuery UI 1.5 […]
June 24th, 2008 at 4:48 pm
[…] jQuery UI 1.5 […]
June 24th, 2008 at 6:32 pm
[…] jQuery UI 1.5 […]
June 24th, 2008 at 8:55 pm
[…] jQuery UI 1.5 […]
June 24th, 2008 at 11:43 pm
[…] (tags: jquery) Post a comment — Trackback URI RSS 2.0 feed for these comments This entry (permalink) was posted on Wednesday, June 25, 2008, at 12:43 am by Matt. Filed inLinks. […]
June 25th, 2008 at 1:19 am
[…] * Ревизия записей; * Добавлен инструмент микроблоггинга “Нажми здесь” напоминающий быстрый постинг по типу tumblelog; * Кэширование статических файлов с Google Gears для быстрой загрузки страницы админа; * Новая и улучшеная настройка редактирования изображений и различный контроль изображений в постах; * Реализован предпросмотр шаблонов как на WordPress.com; * Встроенный счетчик слов в редакторе создания записи; * Возможность дистанционного отключения удаленных публикаций в целях безопасности; * XML-RPC API для изменения настроек блога; * Улучшена поддержка SSL для админки; * Панель администратора приобрела иерархическое разбиение на Управление страницами и Управление категориями; * Возможность перемещения директории содержимого ; * Возможность из корня сайта переместить файл wp-config.php; * Сортировка галереи способом drag-and-drop; * Аватары настраиваются по умолчанию; * Массовая активация, деактивация и удаление плагинов; * Устанавливать несколько чекбоксов методом shift+клик; * Большое количество исправлений в TinyMCE 3.1.0.1 с * Улучшена производительность jQuery 1.2.6 * jQuery UI 1.5 * Исправлено множество ошибок и улучшена производительность. […]
June 25th, 2008 at 2:09 am
[…] jQuery UI 1.5 […]
June 25th, 2008 at 8:10 pm
[…] jQuery UI 1.5 […]
June 26th, 2008 at 10:42 am
[…] Con questa versione sono stati aggiornati TinyMCE 3.1.0.1 che corregg molti bug, jQuery 1.2.6 con varie migliorie sul fronte delle prestazioni e jQuery UI 1.5, come sempre con questa nuova versione sono state apportate moltissime modifiche per correggere bachi e migliare le prestazioni di parti di codice oltre ad un arricchimento della documentazione presente nel codice stesso. […]
June 29th, 2008 at 3:11 am
[…] jQuery UI 1.5 […]
June 29th, 2008 at 11:45 pm
[…] Web Design […]
July 1st, 2008 at 4:38 am
[…] jQuery UI 1.5 […]
July 2nd, 2008 at 8:50 am
[…] and many others. […]
July 2nd, 2008 at 12:35 pm
[…] After many months of stellar work, the jQuery UI team has released version 1.5 of their flagship suite of user-interface widgets, components, and effects. This release was focused on bringing you a standardized development API across all of the components, allowing for a more seamless experience when working with the jQuery UI library. […]
July 13th, 2008 at 11:37 am
[…] Update auf jQuery UI 1.5 […]
July 17th, 2008 at 11:27 am
[…] jQuery UI 1.5 […]
August 5th, 2008 at 5:18 am
[…] Update auf jQuery UI 1.5 […]
August 6th, 2008 at 2:11 am
[…] jQuery UI 1.5 […]
August 19th, 2008 at 7:55 am
Fabulous work
August 21st, 2008 at 8:11 pm
U6uwfJ Hello!,
August 31st, 2008 at 8:31 pm
Hello!,
August 31st, 2008 at 10:35 pm
Good day!,