diff -c mandigo-1.2/README.txt mandigo-1.3/README.txt *** mandigo-1.2/README.txt 2006-12-30 12:38:22.000000000 -0500 --- mandigo-1.3/README.txt 2007-01-05 11:49:57.000000000 -0500 *************** *** 45,60 **** === ABOUT MANDIGO ====================================================================== The theme is available in three different color schemes, which you can select from the ! Presentation, Scheme Options subpanel in the Administration interface. Images in posts are surrounded by a border by default. To override this behaviour, ! simply add the 'noborder' class to your tags. If you enjoy this theme, please let me know and send an email to t0m@gawd.net. === CHANGELOG ====================================================================== 1.2 + added a 'Home' link to the pages (in the wordpress sense) * empty categories are now displayed as well --- 45,64 ---- === ABOUT MANDIGO ====================================================================== The theme is available in three different color schemes, which you can select from the ! Presentation, Theme Options subpanel in the Administration interface. 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 let me know and send an email to t0m@gawd.net. === CHANGELOG ====================================================================== + 1.3 + + added the Version Checker on the Theme Options subpanel + * fixed empty li tags in sidebar issue + 1.2 + added a 'Home' link to the pages (in the wordpress sense) * empty categories are now displayed as well diff -c mandigo-1.2/functions.php mandigo-1.3/functions.php *** mandigo-1.2/functions.php 2006-12-27 15:54:29.000000000 -0500 --- mandigo-1.3/functions.php 2007-01-05 11:43:26.000000000 -0500 *************** *** 62,75 **** // ADMIN ! add_action('admin_menu', 'add_mandigo_schemes_page'); add_action('admin_menu', 'add_mandigo_readme_page'); ! function add_mandigo_schemes_page() { add_theme_page('Color Schemes', 'Color Schemes', 'edit_themes', basename(__FILE__), 'mandigo_schemes_page'); } function add_mandigo_readme_page() { add_theme_page('README', 'README', 'switch_themes', '', 'mandigo_readme_page'); } function mandigo_set_scheme($scheme) { update_option('mandigo_scheme', $scheme); } ! function mandigo_schemes_page() { if ( $_GET['page'] == basename(__FILE__) ) { $array_schemes_strings = array('blue','red','green'); if (isset($_POST['changedscheme'])) mandigo_set_scheme($_POST['scheme']); --- 62,76 ---- // ADMIN ! add_action('admin_menu', 'add_mandigo_options_page'); add_action('admin_menu', 'add_mandigo_readme_page'); ! function add_mandigo_options_page() { add_theme_page('Theme Options', 'Theme Options', 'edit_themes', basename(__FILE__), 'mandigo_options_page'); } function add_mandigo_readme_page() { add_theme_page('README', 'README', 'switch_themes', '', 'mandigo_readme_page'); } function mandigo_set_scheme($scheme) { update_option('mandigo_scheme', $scheme); } ! function mandigo_options_page() { if ( $_GET['page'] == basename(__FILE__) ) { + $ct = current_theme_info(); $array_schemes_strings = array('blue','red','green'); if (isset($_POST['changedscheme'])) mandigo_set_scheme($_POST['scheme']); *************** *** 79,89 ****

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

!
! Schemes

blue   red   --- 80,90 ----

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

!
! Color Schemes

blue   red   *************** *** 92,105 ****

'; echo '

Preview (updated when options are saved)

! !
'; } --- 93,109 ----

+ +

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

+ +
'; echo '

Preview (updated when options are saved)

!
'; } Common subdirectories: mandigo-1.2/images and mandigo-1.3/images diff -c mandigo-1.2/sidebar.php mandigo-1.3/sidebar.php *** mandigo-1.2/sidebar.php 2006-12-30 12:37:23.000000000 -0500 --- mandigo-1.3/sidebar.php 2007-01-05 10:31:31.000000000 -0500 *************** *** 4,35 **** -
  • !

    You are currently browsing the archives for the '' category.

    !

    You are currently browsing the weblog archives ! for the day .

    !

    You are currently browsing the weblog archives ! for .

    !

    You are currently browsing the weblog archives ! for the year .

    !

    You have searched the weblog archives ! for ''. If you are unable to find anything in these search results, you can try one of these links.

    !

    You are currently browsing the weblog archives.

    -
  • Pages' ); ?> --- 4,35 ---- !
  • You are currently browsing the archives for the '' category.

  • !
  • You are currently browsing the weblog archives ! for the day .

  • !
  • You are currently browsing the weblog archives ! for .

  • !
  • You are currently browsing the weblog archives ! for the year .

  • !
  • You have searched the weblog archives ! for ''. If you are unable to find anything in these search results, you can ! try one of these links.

  • !
  • You are currently browsing the weblog ! archives.

  • Pages' ); ?> diff -c mandigo-1.2/style.css mandigo-1.3/style.css *** mandigo-1.2/style.css 2007-01-02 09:57:01.000000000 -0500 --- mandigo-1.3/style.css 2007-01-05 11:50:26.000000000 -0500 *************** *** 2,8 **** Theme Name: Mandigo Theme URI: http://www.onehertz.com/portfolio/wordpress/ Description: Mandigo, available in three color schemes! ! Version: 1.2 Author: t0mmmmmmm Author URI: http://www.onehertz.com/portfolio/ */ --- 2,8 ---- Theme Name: Mandigo Theme URI: http://www.onehertz.com/portfolio/wordpress/ Description: Mandigo, available in three color schemes! ! Version: 1.3 Author: t0mmmmmmm Author URI: http://www.onehertz.com/portfolio/ */