Skip to content

Commit

Permalink
modified: README.txt
Browse files Browse the repository at this point in the history
	modified:   changelog.txt
	modified:   fallback.css
	modified:   functions.php
	modified:   languages/ja.mo
	modified:   languages/ja.po
	modified:   lib/csscolor.css.php
	modified:   raindrops.js
	modified:   searchform.php
	modified:   style.css
  • Loading branch information
tenman committed Sep 26, 2017
1 parent b9acb02 commit 4fe585b
Show file tree
Hide file tree
Showing 10 changed files with 428 additions and 404 deletions.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributors: nobita
Requires at least: WordPress 4.5
Tested up to: WordPress 4.8.1
Stable tag: 1.487
Version: 1.488
Version: 1.489
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-colors, custom-header, custom-background, custom-menu, editor-style, theme-options, threaded-comments, sticky-post, translation-ready, post-formats, featured-images, full-width-template, rtl-language-support, microformats, grid-layout, flexible-header, custom-logo, featured-image-header, footer-widgets
Expand Down
16 changes: 15 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
Changelog -----------------------------------
version:1.489

Overview of Changes

Modified Change input type attribute from text to search for search form.
Fixed wp_video tooltip change position. show title bottom.

Files Modified


Description of Code Changes
please see https://themes.trac.wordpress.org/changeset?old_path=raindrops/1.488&new_path=raindrops/1.489
-----------------------------------------------Changelog -----------------------------------
Changelog -----------------------------------
version:1.488

Overview of Changes
Expand All @@ -13,7 +27,7 @@ Overview of Changes
If you not need this functionality.
Please add the following variables to the first line of functions.php.

$raindrops_ssl_link_helper = true;
$raindrops_ssl_link_helper = false;

Files Modified
modified: fonts.css
Expand Down
2 changes: 2 additions & 0 deletions fallback.css
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,9 @@ aside > ul,
/*
* oembed
* -----------------------------*/
embed[src^="https://www.youtube.com/"],
embed[src^="http://www.youtube.com/"],
embed[src^="https://videopress.com/"],
embed[src^="http://v.wordpress.com/"],
embed[src^="//v.wordpress.com/"],
a[href^="https://www.flickr.com/"] img,
Expand Down
12 changes: 9 additions & 3 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -1568,7 +1568,7 @@ function raindrops_settings_page_contextual_help() {
/* AuthorURI */
$content .= sprintf( $html, esc_html__( 'Author', 'raindrops' ), sprintf( $link, $raindrops_current_data->get( 'AuthorURI' ), $raindrops_current_data->get( 'Author' ), 'target="_self"' ) );
/* Support */
$content .= sprintf( $html, esc_html__( 'Support', 'raindrops' ), sprintf( $link, 'http://wordpress.org/support/theme/raindrops', esc_html__( 'http://wordpress.org/support/theme/raindrops', 'raindrops' ), 'target="_blank"' ) . '<br />' . sprintf( $link, 'http://ja.forums.wordpress.org/', esc_html__( 'http://ja.forums.wordpress.org/ lang:Japanese', 'raindrops' ), 'target="_blank"' ) );
$content .= sprintf( $html, esc_html__( 'Support', 'raindrops' ), sprintf( $link, 'https://wordpress.org/support/theme/raindrops', esc_html__( 'https://wordpress.org/support/theme/raindrops', 'raindrops' ), 'target="_blank"' ) . '<br />' . sprintf( $link, 'https://ja.wordpress.org/', esc_html__( 'https://ja.wordpress.org/ lang:Japanese', 'raindrops' ), 'target="_blank"' ) );
/* Version */
$content .= sprintf( $html, esc_html__( 'Version', 'raindrops' ), $raindrops_current_data->get( 'Version' ) );
/* Changelog.txt */
Expand All @@ -1590,7 +1590,7 @@ function raindrops_editor_page_contextual_help() {
$html = '<dt>%1$s</dt><dd>%2$s</dd>';
$link = '<a href="%1$s" %3$s>%2$s</a>';
$content = '';
$content .= sprintf( $html, esc_html__( 'Support', 'raindrops' ), sprintf( $link, 'http://wordpress.org/support/theme/raindrops', esc_html__( 'English', 'raindrops' ), 'target="_blank"' ) . '<br />' . sprintf( $link, 'http://ja.forums.wordpress.org/', esc_html__( 'Japanese', 'raindrops' ), 'target="_blank"' ) );
$content .= sprintf( $html, esc_html__( 'Support', 'raindrops' ), sprintf( $link, 'https://wordpress.org/support/theme/raindrops', esc_html__( 'English', 'raindrops' ), 'target="_blank"' ) . '<br />' . sprintf( $link, 'https://ja.forums.wordpress.org/', esc_html__( 'Japanese', 'raindrops' ), 'target="_blank"' ) );

$help = '<h2>' . esc_html__( 'How to remove Site Title Block', 'raindrops' ) . '</h2><pre><code>#hd{display:none;}</code></pre>';
$help .= '<h2>' . esc_html__( 'How to remove Post Author Name', 'raindrops' ) . '</h2><pre><code>.posted-by-string,.author{display:none;}</code></pre>';
Expand Down Expand Up @@ -1999,6 +1999,10 @@ function raindrops_add_tooltip_script() {
jQuery( document ).tooltip({position: {
my: 'center', at: 'top-30', collision: 'none'
}});
jQuery('.widget_media_video, .wp-video').tooltip({position:{
my: 'center', at: 'bottom+30', collision: 'none'
}});
jQuery('.widget_media_video, .wp-video').tooltip('option', 'tooltipClass','bottom-tooltip' );
});";
$wp_scripts->add_data( 'jquery-ui-tooltip', 'data', $js );
}
Expand Down Expand Up @@ -6051,6 +6055,7 @@ function raindrops_html_excerpt_with_elements( $content, $length = 200, $more =
$truncate .= '</' . $tag . '>';
}
}

return apply_filters( 'raindrops_html_excerpt_with_elements', $truncate, __FUNCTION__ );
}

Expand Down Expand Up @@ -10682,7 +10687,8 @@ function raindrops_parse_webfonts( $data ) {
}
if ( true == $flag_early_access ) {

$font_url = 'http://fonts.googleapis.com/earlyaccess/';
//$font_url = 'http://fonts.googleapis.com/earlyaccess/';
$font_url = 'https://fonts.google.com/earlyaccess';
$font_url .= str_replace( ' ', '', strtolower( $font_name . '.css' ) );

$font_url = str_replace( $separator . $weight_and_italic_values, '', $font_url );
Expand Down
Binary file modified languages/ja.mo
Binary file not shown.
Loading

0 comments on commit 4fe585b

Please sign in to comment.