Plugin Directory

Changeset 2165786


Ignore:
Timestamp:
09/30/2019 01:12:59 PM (6 years ago)
Author:
bibblio
Message:

Updated to v1.3.7

Location:
bibblio-related-posts/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • bibblio-related-posts/trunk/README.txt

    r2145693 r2165786  
    44Tags: related posts, related links, easy related posts, audience development, content recommendation, posts relacionados, entradas relacionadas, Ähnliche Beiträge, articles similaires, articoli correlati, gerelateerde posts
    55Requires at least: 4.0
    6 Tested up to: 5.0
     6Tested up to: 5.2
    77Requires PHP: 5.6
    88Stable tag: trunk
     
    152152
    153153== Changelog ==
     154= 1.3.7 =
     155* Updated the RCM version
     156* Improvements to the module builder interface
     157
    154158= 1.3.6 =
    155159* Updated module builder to include new RCM v4.5 features
  • bibblio-related-posts/trunk/admin/class-bibblio-related-posts-admin.php

    r2145693 r2165786  
    8181        wp_enqueue_style( $this->plugin_name . '-bootstrap', '//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css', array(), '4.6.3s', 'all' );
    8282        wp_enqueue_style( $this->plugin_name . '-mudule-setting-customize', plugin_dir_url( __FILE__ ) . 'css/bibblio_module_setting_layer_customize.css', array(), '4.6.3s', 'all' );
    83         wp_enqueue_style( 'bibblio-rcm-css', '//cdn.bibblio.org/rcm/4.5/bib-related-content.min.css', array(), false, 'all' );
     83        wp_enqueue_style( 'bibblio-rcm-css', '//cdn.bibblio.org/rcm/4.6/bib-related-content.min.css', array(), false, 'all' );
    8484    }
    8585
     
    8888     */
    8989    public function enqueue_scripts() {
    90         wp_enqueue_script( 'bibblio-rcm-js', '//cdn.bibblio.org/rcm/4.5/bib-related-content.min.js', array(), false, true );
     90        wp_enqueue_script( 'bibblio-rcm-js', '//cdn.bibblio.org/rcm/4.6/bib-related-content.min.js', array(), false, true );
    9191        wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/bibblio_related_posts-admin.js', array( 'jquery', 'bibblio-rcm-js' ), $this->version, false );
    9292    }
  • bibblio-related-posts/trunk/admin/css/bibblio_module_setting_layer_customize.css

    r2145693 r2165786  
    744744}
    745745.module-showcase-selects.selects-horiz select {
    746     margin: 6px 0 0 8px;
     746    margin: 3px 0 0 8px;
    747747}
    748748
     
    900900.module-showcase-selects select {
    901901    font-size: 13px;
    902     margin: 0 0 6px 8px;
    903     height: 20px;
     902    margin: 0 0 4px 8px;
    904903    float: left;
     904}
     905
     906.module-showcase-text label {
     907    display: block;
     908    padding: 0 0 0 8px;
    905909}
    906910
  • bibblio-related-posts/trunk/admin/partials/templates/parts/module-setting-layer.php

    r2145693 r2165786  
    198198                    <div class="module-showcase-checkboxes">
    199199                        <div class="module-showcase-control-column">
    200                             <div class="module-showcase-button module-showcase-arrangement-about" id="bib--about" title="Invert the tile text to white"><span class="module-showcase-button-icon"><span></span></span><span class="module-showcase-button-label">Explanatory link beneath module</span></div>
     200                            <div class="module-showcase-button module-showcase-arrangement-about" id="bib--about" title="Reassure your audience of the authenticity of these recommendations"><span class="module-showcase-button-icon"><span></span></span><span class="module-showcase-button-label">Explanatory link beneath module</span></div>
    201201                        </div>
    202202                    </div>
  • bibblio-related-posts/trunk/bibblio-related-posts.php

    r2145701 r2165786  
    1111 * Plugin URI:        https://www.bibblio.org/
    1212 * Description:       Quickly add content recommendations to your WordPress posts.
    13  * Version:           1.3.6
     13 * Version:           1.3.7
    1414 * Author:            Bibblio
    1515 * Author URI:        https://www.bibblio.org
  • bibblio-related-posts/trunk/includes/class-bibblio-related-posts.php

    r2145701 r2165786  
    6868
    6969        $this->plugin_name  = 'bibblio_related_posts';
    70         $this->version      = '1.3.6';
     70        $this->version      = '1.3.7';
    7171        static::$admin_path = admin_url( 'admin.php?page=' . $this->plugin_name );
    7272
  • bibblio-related-posts/trunk/public/class-bibblio-related-posts-public.php

    r2145693 r2165786  
    6161
    6262        wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/bibblio_related_posts-public.css', array(), $this->version, 'all' );
    63         wp_enqueue_style( 'bibblio-rcm-css', '//cdn.bibblio.org/rcm/4.5/bib-related-content.css', array(), false, 'all' );
     63        wp_enqueue_style( 'bibblio-rcm-css', '//cdn.bibblio.org/rcm/4.6/bib-related-content.css', array(), false, 'all' );
    6464    }
    6565
     
    8181
    8282        wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/bibblio_related_posts-public.js', array( 'jquery' ), $this->version, false );
    83         wp_enqueue_script( 'bibblio-rcm-js', '//cdn.bibblio.org/rcm/4.5/bib-related-content.js', array(), false, true );
     83        wp_enqueue_script( 'bibblio-rcm-js', '//cdn.bibblio.org/rcm/4.6/bib-related-content.js', array(), false, true );
    8484    }
    8585
Note: See TracChangeset for help on using the changeset viewer.