diff -c royale-1.0.1/README.txt royale-1.1/README.txt *** royale-1.0.1/README.txt 2007-04-27 13:09:20.000000000 -0400 --- royale-1.1/README.txt 2007-05-10 09:22:14.000000000 -0400 *************** *** 100,108 **** Portuguese: Oscar Nogueira Neto Russian: Michael Dolgov Serbian: Aleksandar Duric ! Slovak: Marek Spanish: Juan Luis Perez Perez ! Swedish: Ulf Wrede Turkish: Mert Yabul Do not see your language listed here? If you are interested in helping with translation, --- 100,108 ---- Portuguese: Oscar Nogueira Neto Russian: Michael Dolgov Serbian: Aleksandar Duric ! Slovak: Marek, Marian Trnka Spanish: Juan Luis Perez Perez ! Swedish: Ulf Wrede, Johan Turkish: Mert Yabul Do not see your language listed here? If you are interested in helping with translation, *************** *** 112,124 **** === IMAGE CREDITS ====================================================================== Icons by famfamfam: http://www.famfamfam.com/lab/icons/silk/ ! Background pattern by enspia: http://enspia.deviantart.com/ === CHANGELOG ========================================================================== 1.0.1 ! * savin HTML Inserts would return an error 1.0 * first public release --- 112,136 ---- === IMAGE CREDITS ====================================================================== Icons by famfamfam: http://www.famfamfam.com/lab/icons/silk/ ! Background patters: ! - default: enspia, http://enspia.deviantart.com/ ! - asphalt: oonerspism, http://oonerspism.deviantart.com/ ! - bricks, kafeleczki: PoProstuBono, http://poprostubono.deviantart.com/ === CHANGELOG ========================================================================== + 1.1 + + three new background patterns + + added an option to select the background pattern + + added an option to display EM tags as italics + * grammar fixes: Swedish (sv_SE) + * faster stylesheet serving: style.css.php now directly connects to the database instead + of relying on WP + * prevent caching of browser-dependent content (png transparency and some js) + 1.0.1 ! * saving HTML Inserts would return an error 1.0 * first public release diff -c royale-1.0.1/archive.php royale-1.1/archive.php *** royale-1.0.1/archive.php 2007-04-26 20:17:14.000000000 -0400 --- royale-1.1/archive.php 2007-04-28 18:36:14.000000000 -0400 *************** *** 47,60 ****

! '. __('Edit','royale'), ' - ', ''); ?>
!

Comments

--- 47,60 ----

!
!

diff -c royale-1.0.1/footer.php royale-1.1/footer.php *** royale-1.0.1/footer.php 2007-04-26 20:57:18.000000000 -0400 --- royale-1.1/footer.php 2007-04-28 18:28:30.000000000 -0400 *************** *** 17,24 ****

WordPress','royale'); ?>, Royale theme by tom. !
! .
queries. seconds. --- 17,24 ----

WordPress','royale'); ?>, Royale theme by tom. !
! .
queries. seconds. diff -c royale-1.0.1/functions.php royale-1.1/functions.php *** royale-1.0.1/functions.php 2007-04-27 12:55:02.000000000 -0400 --- royale-1.1/functions.php 2007-05-10 09:05:54.000000000 -0400 *************** *** 22,27 **** --- 22,30 ---- if (get_option('royale_overlay_opacity')) { $overlay_opacity = get_option('royale_overlay_opacity'); } else { $overlay_opacity = 25; update_option('royale_overlay_opacity', $overlay_opacity); } + if (get_option('royale_bgpattern')) { $bgpattern = get_option('royale_bgpattern'); } + else { $bgpattern = "default.png"; update_option('royale_bgpattern', $bgpattern); } + // some global vars *************** *** 31,39 **** // ! function mkpngsrc($src,$w,$h) { ! global $ie; ! return get_bloginfo('stylesheet_directory') .'/images/'. ($ie ? '1x1.gif" style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''. get_bloginfo('stylesheet_directory') .'/images/'. $src .'\', sizingMethod=\'scale\'); width: '. $w .'px; height: '. $h .'px;' : $src); } --- 34,41 ---- // ! function mkicon($class,$alt) { ! return ''. $alt .''; } *************** *** 73,79 ****