Plugin Directory

Changeset 2588412


Ignore:
Timestamp:
08/25/2021 10:35:17 AM (5 years ago)
Author:
socialrocket
Message:

Version 1.3.1 update

Location:
social-rocket/trunk
Files:
38 added
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • social-rocket/trunk/admin/css/admin.css

    r2172087 r2588412  
    891891.social-rocket-buttons .social-rocket-button-anchor:hover {
    892892    display: block;
    893     line-height: 30px;
     893    line-height: 28px;
    894894    padding: 0 8px 0 8px;
    895895    text-decoration: none;
     
    899899    color: #fff;
    900900    font-size: 16px;
     901    font-style: normal;
    901902    line-height: 100%;
    902903    margin: 0 5px;
  • social-rocket/trunk/admin/includes/class-social-rocket-admin.php

    r2423270 r2588412  
    45644564       
    45654565        if ( ! $SR->settings['disable_fontawesome'] ) {
    4566             wp_enqueue_style( 'fontawesome_core', plugin_dir_url( dirname( dirname( __FILE__ ) ) ) . 'css/fontawesome.min.css', array(), SOCIAL_ROCKET_VERSION, 'all' );
    4567             wp_enqueue_style( 'fontawesome_brands', plugin_dir_url( dirname( dirname( __FILE__ ) ) ) . 'css/fa-brands.min.css', array( 'fontawesome_core' ), SOCIAL_ROCKET_VERSION, 'all' );
    4568             wp_enqueue_style( 'fontawesome_solid', plugin_dir_url( dirname( dirname( __FILE__ ) ) ) . 'css/fa-solid.min.css', array( 'fontawesome_core' ), SOCIAL_ROCKET_VERSION, 'all' );
     4566            wp_enqueue_style(
     4567                'fontawesome_all',
     4568                plugin_dir_url( dirname( dirname( __FILE__ ) ) ) . 'assets/css/all.min.css',
     4569                array(),
     4570                SOCIAL_ROCKET_VERSION,
     4571                'all'
     4572            );
    45694573        }
    45704574       
  • social-rocket/trunk/includes/class-social-rocket.php

    r2423270 r2588412  
    119119       
    120120        wp_enqueue_script( 'jquery' );
    121         wp_enqueue_script( 'social-rocket', plugin_dir_url( dirname( __FILE__ ) ) .'js/script.js', array( 'jquery' ), SOCIAL_ROCKET_VERSION, true );
     121        wp_enqueue_script(
     122            'social-rocket',
     123            plugin_dir_url( dirname( __FILE__ ) ) . 'assets/js/script.js',
     124            array( 'jquery' ),
     125            SOCIAL_ROCKET_VERSION,
     126            true
     127        );
    122128       
    123129        wp_localize_script(
     
    140146    public function enqueue_styles() {
    141147       
    142         wp_enqueue_style( 'social_rocket', plugin_dir_url( dirname( __FILE__ ) ) . 'css/style.css', array(), SOCIAL_ROCKET_VERSION, 'all' );
     148        wp_enqueue_style(
     149            'social_rocket',
     150            plugin_dir_url( dirname( __FILE__ ) ) . 'assets/css/style.css',
     151            array(),
     152            SOCIAL_ROCKET_VERSION,
     153            'all'
     154        );
    143155       
    144156        if ( ! $this->settings['disable_fontawesome'] ) {
    145             wp_enqueue_style( 'fontawesome_core', plugin_dir_url( dirname( __FILE__ ) ) . 'css/fontawesome.min.css', array(), SOCIAL_ROCKET_VERSION, 'all' );
    146             wp_enqueue_style( 'fontawesome_brands', plugin_dir_url( dirname( __FILE__ ) ) . 'css/fa-brands.min.css', array( 'fontawesome_core' ), SOCIAL_ROCKET_VERSION, 'all' );
    147             wp_enqueue_style( 'fontawesome_regular', plugin_dir_url( dirname( __FILE__ ) ) . 'css/fa-regular.min.css', array( 'fontawesome_core' ), SOCIAL_ROCKET_VERSION, 'all' );
    148             wp_enqueue_style( 'fontawesome_solid', plugin_dir_url( dirname( __FILE__ ) ) . 'css/fa-solid.min.css', array( 'fontawesome_core' ), SOCIAL_ROCKET_VERSION, 'all' );
     157            wp_enqueue_style(
     158                'fontawesome_all',
     159                plugin_dir_url( dirname( __FILE__ ) ) . 'assets/css/all.min.css',
     160                array(),
     161                SOCIAL_ROCKET_VERSION,
     162                'all'
     163            );
    149164        }
    150165       
     
    37803795        wp_register_script(
    37813796            'social-rocket-blocks',
    3782             plugin_dir_url( dirname( __FILE__ ) ) . 'js/blocks.js',
     3797            plugin_dir_url( dirname( __FILE__ ) ) . 'assets/js/blocks.js',
    37833798            array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ),
    3784             filemtime( SOCIAL_ROCKET_PATH . 'js/blocks.js' )
     3799            filemtime( SOCIAL_ROCKET_PATH . 'assets/js/blocks.js' )
    37853800        );
    37863801
  • social-rocket/trunk/readme.txt

    r2423270 r2588412  
    44Tags: social share, social buttons, social share buttons, social media, share counts, social sharing, click to tweet, social rocket, facebook share, social media share, pinterest description, social media sharing
    55Requires at least: 4.4
    6 Tested up to: 5.6
     6Tested up to: 5.8
    77Requires PHP: 5.5
    8 Stable tag: 1.3.0
     8Stable tag: 1.3.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8383
    8484== Changelog ==
     85= 1.3.1 =
     86* FIX: minor CSS fixes.
     87* UPDATE: update FontAwesome to latest version.
     88
    8589= 1.3.0 =
    8690* NEW: add "clear background queue" button, in tools tab.
  • social-rocket/trunk/social-rocket.php

    r2423270 r2588412  
    33 * Plugin Name: Social Rocket
    44 * Description: Social Sharing... to the Moon!
    5  * Version: 1.3.0
     5 * Version: 1.3.1
    66 * Author: Social Rocket
    77 * Author URI: http://wpsocialrocket.com/
     
    1010 * Domain Path: /languages
    1111 *
    12  * Copyright: © 2018-2020 Social Rocket. All rights reserved.
     12 * Copyright: © 2018-2021 Social Rocket. All rights reserved.
    1313*/
    1414
     
    2121}
    2222
    23 define( 'SOCIAL_ROCKET_VERSION', '1.3.0' );
     23define( 'SOCIAL_ROCKET_VERSION', '1.3.1' );
    2424define( 'SOCIAL_ROCKET_DBVERSION', '5' );
    2525define( 'SOCIAL_ROCKET_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.