diff -c mandigo-1.29/README.txt mandigo-1.30/README.txt
*** mandigo-1.29/README.txt 2007-12-04 14:12:08.000000000 -0500
--- mandigo-1.30/README.txt 2008-01-05 12:03:56.000000000 -0500
***************
*** 277,282 ****
--- 277,283 ----
Polish: Mateusz Baran
Portuguese (PT): Rodrigo Neves
Portuguese (BR): Oscar Nogueira Neto
+ Romanian: Victor Butiu
Russian: Michael Dolgov
Serbian: Aleksandar Duric
Slovak: Marek, Marian Trnka
***************
*** 302,307 ****
--- 303,324 ----
=== CHANGELOG ==========================================================================
+ 1.30
+ + language: Romanian (ro)
+ + added a color picker to the Options page
+ + added support for categories description
+ + defined font-size for regular header tags (h1-h6)
+ + added options to try and fix issues with columns showing up wider than they should
+ + added options to display trackbacks above/below/along with comments or not at all
+ * grammar fixes: German (de_DE)
+ * grammar fixes: Polish (pl_PL)
+ * fixed the image resizing function for IE
+ * fixed widget titles not showing up as bold when wrapped in divs
+ * fixed a backward compatiblity issue with "edit comment" links
+ * only show the link to edit a comment to users who can actually edit comments
+ * the .noborder class is now inheritable from parent elements
+ * PNG transparency in IE is now handled by a custom version of jquery.ifixpng
+
1.29
+ language: Croatian (hr)
+ language: Japanese UTF-8 (ja)
diff -c mandigo-1.29/archive.php mandigo-1.30/archive.php
*** mandigo-1.29/archive.php 2007-10-25 16:57:36.000000000 -0400
--- mandigo-1.30/archive.php 2008-01-02 08:18:32.000000000 -0500
***************
*** 13,18 ****
--- 13,19 ----
< class="pagetitle">>
+
< class="pagetitle">>
diff -c mandigo-1.29/comments.php mandigo-1.30/comments.php
*** mandigo-1.29/comments.php 2007-11-03 10:54:56.000000000 -0400
--- mandigo-1.30/comments.php 2008-01-02 12:05:12.000000000 -0500
***************
*** 27,53 ****
%s
%s
!
%s
',
$oddcomment,
($authorcomments && get_comment_author() == $the_author ? ' authorcomment' : ''),
! get_comment_ID(),
sprintf(__('%s says:','mandigo'),get_comment_author_link()),
($comment->comment_approved == '0' ? ''. __('Your comment is awaiting moderation.','mandigo') .'' : ''),
! get_comment_ID(),
sprintf(__('%s at %s','mandigo'),get_comment_date(__('F jS, Y','mandigo')),get_comment_time()),
! ' - '. apply_filters('edit_comment_link', ''. __('Edit','mandigo') .'', $comment->comment_ID),
apply_filters('comment_text', get_comment_text())
);
! if (get_option('mandigo_trackbacks_after') && $comment->comment_type == 'trackback'):
$trackback_list .= $comment_list_item;
else:
$comment_list .= $comment_list_item;
endif;
--- 27,64 ----
%s
%s
!
%s
',
$oddcomment,
($authorcomments && get_comment_author() == $the_author ? ' authorcomment' : ''),
! $id,
sprintf(__('%s says:','mandigo'),get_comment_author_link()),
($comment->comment_approved == '0' ? ''. __('Your comment is awaiting moderation.','mandigo') .'' : ''),
! $id,
sprintf(__('%s at %s','mandigo'),get_comment_date(__('F jS, Y','mandigo')),get_comment_time()),
! function_exists('get_edit_comment_link') && current_user_can( 'edit_post', $post->ID ) ? ' - '. apply_filters('edit_comment_link', ''. __('Edit','mandigo') .'', $comment->comment_ID) : '',
apply_filters('comment_text', get_comment_text())
);
! /*
! if ((get_option('mandigo_trackbacks') == 'above' || get_option('mandigo_trackbacks') == 'below') && $comment->comment_type == 'trackback'):
$trackback_list .= $comment_list_item;
+ elseif (get_option('mandigo_trackbacks') == 'along' && $comment->comment_type == 'trackback'):
+ $comment_list .= $comment_list_item;
+ endif;
+ */
+ if ($comment->comment_type == 'trackback'):
+ if (get_option('mandigo_trackbacks') == 'above' || get_option('mandigo_trackbacks') == 'below'):
+ $trackback_list .= $comment_list_item;
+ elseif (get_option('mandigo_trackbacks') == 'along'):
+ $comment_list .= $comment_list_item;
+ endif;
else:
$comment_list .= $comment_list_item;
endif;
***************
*** 56,70 ****
else $oddcomment = 'alt';
endforeach;
?>
!