diff -c mandigo-1.6/README.txt mandigo-1.7/README.txt *** mandigo-1.6/README.txt 2007-01-16 21:29:18.000000000 -0500 --- mandigo-1.7/README.txt 2007-01-21 13:37:36.000000000 -0500 *************** *** 43,49 **** === ABOUT MANDIGO ====================================================================== ! The theme is available in six different color schemes, which you can select from the Presentation, Theme Options subpanel in the Administration interface. If none of the headers satisfy your needs, I have included a blank one in the extras/ --- 43,49 ---- === ABOUT MANDIGO ====================================================================== ! The theme is available in seven different color schemes, which you can select from the Presentation, Theme Options subpanel in the Administration interface. If none of the headers satisfy your needs, I have included a blank one in the extras/ *************** *** 51,58 **** new header as 'head.jpg' in the images/ subfolder that corresponds to your current color scheme, i.e. the one you have set on the Theme Options page. ! Images in posts are surrounded by a border by default. To override this behaviour, ! simply add the 'noborder' class to your img tags. If you enjoy this theme, please consider doing one of the following things: - let me know and send an email to tom@onehertz.com --- 51,61 ---- new header as 'head.jpg' in the images/ subfolder that corresponds to your current color scheme, i.e. the one you have set on the Theme Options page. ! Images classes: ! - Images in posts are surrounded by a border by default. To override this behaviour, ! simply add the 'noborder' class to your img tags. ! - Images are also left-floated by default. To override this, add the 'nofloat' class to ! your img tags. If you enjoy this theme, please consider doing one of the following things: - let me know and send an email to tom@onehertz.com *************** *** 72,81 **** --- 75,91 ---- Pink Scheme: "Spinning Fan" by Janet Goulden: http://www.sxc.hu/profile/cooljinny Purple Scheme: "Light Play 8" by Sarah Lee: http://www.sxc.hu/profile/clashed Orange Scheme: "ADN" by Frederico Oddone: http://www.sxc.hu/profile/FedexsnaP + Teal Scheme: "Green Globe" by Jenny W.: http://www.sxc.hu/profile/emsago === CHANGELOG ========================================================================== + 1.7 + + added the teal color scheme + + added a .nofloat class to use with images + + added an option to exclude some pages from header navigation + + added an option to display all links in bold + 1.6 + added the orange color scheme + added an option to make the translucent stripe span multiple lines Common subdirectories: mandigo-1.6/extras and mandigo-1.7/extras diff -c mandigo-1.6/functions.php mandigo-1.7/functions.php *** mandigo-1.6/functions.php 2007-01-15 23:08:55.000000000 -0500 --- mandigo-1.7/functions.php 2007-01-21 13:09:10.000000000 -0500 *************** *** 78,83 **** --- 78,85 ---- function mandigo_set_overlay($headoverlay) { update_option('mandigo_headoverlay', $headoverlay); } function mandigo_set_dates($dates) { update_option('mandigo_dates', $dates); } function mandigo_set_overlay_oversize($headoverlay_oversize) { update_option('mandigo_headoverlay_oversize', $headoverlay_oversize); } + function mandigo_set_exclude_pages($exclude_pages) { update_option('mandigo_exclude_pages', $exclude_pages); } + function mandigo_set_bold_links($bold_links) { update_option('mandigo_bold_links', $bold_links); } function mandigo_options_page() { if ( $_GET['page'] == basename(__FILE__) ) { *************** *** 88,100 **** mandigo_set_overlay($_POST['headoverlay']); mandigo_set_dates($_POST['dates']); mandigo_set_overlay_oversize($_POST['headoverlay_oversize']); } $current = get_option('mandigo_scheme'); $headoverlay = get_option('mandigo_headoverlay'); $dates = get_option('mandigo_dates'); $headoverlay_oversize = get_option('mandigo_headoverlay_oversize'); ! echo '

'.__('Mandigo Options','mandigo').'

--- 90,116 ---- mandigo_set_overlay($_POST['headoverlay']); mandigo_set_dates($_POST['dates']); mandigo_set_overlay_oversize($_POST['headoverlay_oversize']); + $exclude[] = ''; + foreach ( $_POST as $field => $value ) { + if ( preg_match("/exclude_(\d+)/",$field,$id) ) { $exclude[] = $id[1]; } + } + mandigo_set_exclude_pages(implode(",",$exclude)); + mandigo_set_bold_links($_POST['boldlinks']); } $current = get_option('mandigo_scheme'); $headoverlay = get_option('mandigo_headoverlay'); $dates = get_option('mandigo_dates'); $headoverlay_oversize = get_option('mandigo_headoverlay_oversize'); ! $exclude = split(",",get_option('mandigo_exclude_pages')); ! $boldlinks = get_option('mandigo_bold_links'); ! ! $pages = & get_pages('sort_column=menu_order'); ! foreach ( $pages as $page ) { ! if (!$page->post_parent) { $pages_select .= 'ID, $exclude) ? ' checked' : '') .' /> '. $page->post_title . '
'; } ! } ! echo ' +

Are you using the latest version?

'.__('Mandigo Options','mandigo').'

*************** *** 108,117 **** green   pink   purple   ! orange

If you prefer to use your own header image with one of the color schemes, there is a blank header file named head.png in the mandigo/extras/ subfolder. Consult the README page for more information. !
Miscellaneous Options
--- 124,134 ---- green   pink   purple   ! orange   ! teal

If you prefer to use your own header image with one of the color schemes, there is a blank header file named head.png in the mandigo/extras/ subfolder. Consult the README page for more information.
!
Miscellaneous Options
*************** *** 125,139 ****

!

dd/mm/yyyy   month/dd/yyyy
!

!

'.__('Version Checker','mandigo').'

--- 142,162 ----

!
! '. $pages_select .'
! !
! Display all links in bold for better readability

! !
dd/mm/yyyy   month/dd/yyyy !

!

'.__('Version Checker','mandigo').'

diff -c mandigo-1.6/header.php mandigo-1.7/header.php *** mandigo-1.6/header.php 2007-01-15 23:29:26.000000000 -0500 --- mandigo-1.7/header.php 2007-01-21 13:04:22.000000000 -0500 *************** *** 11,19 **** - -
--- 11,29 ---- + + \n$lastminutecss\n"; + } + ?>
*************** *** 28,34 ****
--- 38,44 ---- Common subdirectories: mandigo-1.6/images and mandigo-1.7/images Only in mandigo-1.7: scheme-teal.jpg diff -c mandigo-1.6/style.css mandigo-1.7/style.css *** mandigo-1.6/style.css 2007-01-16 11:53:19.000000000 -0500 --- mandigo-1.7/style.css 2007-01-21 13:31:27.000000000 -0500 *************** *** 1,8 **** /* Theme Name: Mandigo Theme URI: http://www.onehertz.com/portfolio/wordpress/ ! Description: Mandigo is an elegant widget-ready two-column Wordpress theme, available in SIX color schemes! ! Version: 1.6 Author: t0mmmmmmm Author URI: http://www.onehertz.com/portfolio/ */ --- 1,8 ---- /* Theme Name: Mandigo Theme URI: http://www.onehertz.com/portfolio/wordpress/ ! Description: Mandigo is an elegant widget-ready two-column Wordpress theme, available in SEVEN color schemes! ! Version: 1.7 Author: t0mmmmmmm Author URI: http://www.onehertz.com/portfolio/ */ *************** *** 323,329 **** padding: 3px; } ! .entry img.wp-smiley { float: none; margin: 0; background: inherit; --- 323,329 ---- padding: 3px; } ! .entry img.wp-smiley, .nofloat { float: none; margin: 0; background: inherit; Only in mandigo-1.7: teal.css