Changeset 2588412
- Timestamp:
- 08/25/2021 10:35:17 AM (5 years ago)
- Location:
- social-rocket/trunk
- Files:
-
- 38 added
- 2 deleted
- 5 edited
-
admin/css/admin.css (modified) (2 diffs)
-
admin/includes/class-social-rocket-admin.php (modified) (1 diff)
-
assets (added)
-
assets/css (added)
-
assets/css/all.css (added)
-
assets/css/all.min.css (added)
-
assets/css/brands.css (added)
-
assets/css/brands.min.css (added)
-
assets/css/fontawesome.css (added)
-
assets/css/fontawesome.min.css (added)
-
assets/css/index.php (added)
-
assets/css/regular.css (added)
-
assets/css/regular.min.css (added)
-
assets/css/solid.css (added)
-
assets/css/solid.min.css (added)
-
assets/css/style.css (added)
-
assets/css/svg-with-js.css (added)
-
assets/css/svg-with-js.min.css (added)
-
assets/css/v4-shims.css (added)
-
assets/css/v4-shims.min.css (added)
-
assets/js (added)
-
assets/js/blocks.js (added)
-
assets/js/index.php (added)
-
assets/js/script.js (added)
-
assets/webfonts (added)
-
assets/webfonts/fa-brands-400.eot (added)
-
assets/webfonts/fa-brands-400.svg (added)
-
assets/webfonts/fa-brands-400.ttf (added)
-
assets/webfonts/fa-brands-400.woff (added)
-
assets/webfonts/fa-brands-400.woff2 (added)
-
assets/webfonts/fa-regular-400.eot (added)
-
assets/webfonts/fa-regular-400.svg (added)
-
assets/webfonts/fa-regular-400.ttf (added)
-
assets/webfonts/fa-regular-400.woff (added)
-
assets/webfonts/fa-regular-400.woff2 (added)
-
assets/webfonts/fa-solid-900.eot (added)
-
assets/webfonts/fa-solid-900.svg (added)
-
assets/webfonts/fa-solid-900.ttf (added)
-
assets/webfonts/fa-solid-900.woff (added)
-
assets/webfonts/fa-solid-900.woff2 (added)
-
css (deleted)
-
includes/class-social-rocket.php (modified) (3 diffs)
-
js (deleted)
-
readme.txt (modified) (2 diffs)
-
social-rocket.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-rocket/trunk/admin/css/admin.css
r2172087 r2588412 891 891 .social-rocket-buttons .social-rocket-button-anchor:hover { 892 892 display: block; 893 line-height: 30px;893 line-height: 28px; 894 894 padding: 0 8px 0 8px; 895 895 text-decoration: none; … … 899 899 color: #fff; 900 900 font-size: 16px; 901 font-style: normal; 901 902 line-height: 100%; 902 903 margin: 0 5px; -
social-rocket/trunk/admin/includes/class-social-rocket-admin.php
r2423270 r2588412 4564 4564 4565 4565 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 ); 4569 4573 } 4570 4574 -
social-rocket/trunk/includes/class-social-rocket.php
r2423270 r2588412 119 119 120 120 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 ); 122 128 123 129 wp_localize_script( … … 140 146 public function enqueue_styles() { 141 147 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 ); 143 155 144 156 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 ); 149 164 } 150 165 … … 3780 3795 wp_register_script( 3781 3796 'social-rocket-blocks', 3782 plugin_dir_url( dirname( __FILE__ ) ) . ' js/blocks.js',3797 plugin_dir_url( dirname( __FILE__ ) ) . 'assets/js/blocks.js', 3783 3798 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' ) 3785 3800 ); 3786 3801 -
social-rocket/trunk/readme.txt
r2423270 r2588412 4 4 Tags: 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 5 5 Requires at least: 4.4 6 Tested up to: 5. 66 Tested up to: 5.8 7 7 Requires PHP: 5.5 8 Stable tag: 1.3. 08 Stable tag: 1.3.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 83 83 84 84 == Changelog == 85 = 1.3.1 = 86 * FIX: minor CSS fixes. 87 * UPDATE: update FontAwesome to latest version. 88 85 89 = 1.3.0 = 86 90 * NEW: add "clear background queue" button, in tools tab. -
social-rocket/trunk/social-rocket.php
r2423270 r2588412 3 3 * Plugin Name: Social Rocket 4 4 * Description: Social Sharing... to the Moon! 5 * Version: 1.3. 05 * Version: 1.3.1 6 6 * Author: Social Rocket 7 7 * Author URI: http://wpsocialrocket.com/ … … 10 10 * Domain Path: /languages 11 11 * 12 * Copyright: © 2018-202 0Social Rocket. All rights reserved.12 * Copyright: © 2018-2021 Social Rocket. All rights reserved. 13 13 */ 14 14 … … 21 21 } 22 22 23 define( 'SOCIAL_ROCKET_VERSION', '1.3. 0' );23 define( 'SOCIAL_ROCKET_VERSION', '1.3.1' ); 24 24 define( 'SOCIAL_ROCKET_DBVERSION', '5' ); 25 25 define( 'SOCIAL_ROCKET_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.