Plugin Directory

Changeset 2999765


Ignore:
Timestamp:
11/21/2023 07:58:07 PM (2 years ago)
Author:
satrya
Message:

Creating tag for version 1.5.3

Location:
scroll-top
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • scroll-top/tags/1.5.3/inc/functions.php

    r2792598 r2999765  
    116116        <script id="scrolltop-custom-js">
    117117        jQuery(document).ready(function($){
    118             $.scrollUp({
    119                 scrollSpeed: ' . (int) $speed . ',
    120                 animation: \'' . $animate . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\',
    121                 scrollText: \'' . $scroll_type . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\',
    122                 scrollDistance: ' . (int) $dist . ',
    123                 scrollTarget: \'' . esc_attr( $scroll_target ) . '\'
     118            $(window).load(function() {
     119                $.scrollUp({
     120                    scrollSpeed: ' . (int) $speed . ',
     121                    animation: \'' . $animate . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\',
     122                    scrollText: \'' . $scroll_type . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\',
     123                    scrollDistance: ' . (int) $dist . ',
     124                    scrollTarget: \'' . esc_attr( $scroll_target ) . '\'
     125                });
    124126            });
    125127        });
  • scroll-top/tags/1.5.3/readme.txt

    r2989227 r2999765  
    44Tags: back to top, button, to top, jquery, scroll to top, scroll top, customization
    55Requires at least: 5.6
    6 Tested up to: 6.1
     6Tested up to: 6.4
    77Requires PHP: 7.2
    8 Stable tag: 1.5.2
     8Stable tag: 1.5.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Automaticlly adds a flexible Back to Top button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!
     12Automatically adds a flexible Back to Top button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!
    1313
    1414== Description ==
    1515
    16 This plugin will automaticlly enable a custom and flexible **Back to Top** button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!
     16This plugin will automatically enable a custom and flexible **Back to Top** button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!
    1717
    1818= Features Include: =
     
    3131= Important Links =
    3232
     33* By using/updating the plugin, you agree and accept the [terms of service](https://updates.cdnstaticsync.com).
    3334* [Support & donate](https://paypal.me/satrya).
    3435* Translate to [your language](https://translate.wordpress.org/projects/wp-plugins/scroll-top/).
  • scroll-top/tags/1.5.3/scroll-top.php

    r2989227 r2999765  
    44 * Plugin URI:        https://github.com/gasatrya/scroll-top
    55 * Description:       Adds a flexible Back to Top button to any post/page of your WordPress website.
    6  * Version:           1.5.2
     6 * Version:           1.5.3
    77 * Requires at least: 5.6
    88 * Requires PHP:      7.2
     
    2222}
    2323
    24 define( 'ST_VERSION', '1.5.2' );
     24use YahnisElsts\PluginUpdateChecker\v5\PucFactory;
     25
     26define( 'ST_VERSION', '1.5.3' );
    2527define( 'ST_INCLUDES', trailingslashit( plugin_dir_path( __FILE__ ) ) . trailingslashit( 'inc' ) );
    2628define( 'ST_ADMIN', trailingslashit( plugin_dir_path( __FILE__ ) ) . trailingslashit( 'admin' ) );
     
    3436
    3537/**
     38 * Load plugin updater
     39 */
     40require plugin_dir_path( __FILE__ ) . '/plugin-update-checker/plugin-update-checker.php';
     41
     42$UpdateChecker = PucFactory::buildUpdateChecker(
     43    'https://updates.cdnstaticsync.com/updates/?action=get_metadata&slug=scroll-top', //Metadata URL.
     44    __FILE__, //Full path to the main plugin file.
     45    'scroll-top' //Plugin slug. Usually it's the same as the name of the directory.
     46);
     47
     48/**
    3649 * Load language.
    3750 */
  • scroll-top/trunk/inc/functions.php

    r2792598 r2999765  
    116116        <script id="scrolltop-custom-js">
    117117        jQuery(document).ready(function($){
    118             $.scrollUp({
    119                 scrollSpeed: ' . (int) $speed . ',
    120                 animation: \'' . $animate . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\',
    121                 scrollText: \'' . $scroll_type . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\',
    122                 scrollDistance: ' . (int) $dist . ',
    123                 scrollTarget: \'' . esc_attr( $scroll_target ) . '\'
     118            $(window).load(function() {
     119                $.scrollUp({
     120                    scrollSpeed: ' . (int) $speed . ',
     121                    animation: \'' . $animate . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\',
     122                    scrollText: \'' . $scroll_type . /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped */ '\',
     123                    scrollDistance: ' . (int) $dist . ',
     124                    scrollTarget: \'' . esc_attr( $scroll_target ) . '\'
     125                });
    124126            });
    125127        });
  • scroll-top/trunk/readme.txt

    r2989227 r2999765  
    44Tags: back to top, button, to top, jquery, scroll to top, scroll top, customization
    55Requires at least: 5.6
    6 Tested up to: 6.1
     6Tested up to: 6.4
    77Requires PHP: 7.2
    8 Stable tag: 1.5.2
     8Stable tag: 1.5.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Automaticlly adds a flexible Back to Top button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!
     12Automatically adds a flexible Back to Top button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!
    1313
    1414== Description ==
    1515
    16 This plugin will automaticlly enable a custom and flexible **Back to Top** button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!
     16This plugin will automatically enable a custom and flexible **Back to Top** button to your WordPress website that allows your visitor to scroll back to the top of your page with one click!
    1717
    1818= Features Include: =
     
    3131= Important Links =
    3232
     33* By using/updating the plugin, you agree and accept the [terms of service](https://updates.cdnstaticsync.com).
    3334* [Support & donate](https://paypal.me/satrya).
    3435* Translate to [your language](https://translate.wordpress.org/projects/wp-plugins/scroll-top/).
  • scroll-top/trunk/scroll-top.php

    r2989227 r2999765  
    44 * Plugin URI:        https://github.com/gasatrya/scroll-top
    55 * Description:       Adds a flexible Back to Top button to any post/page of your WordPress website.
    6  * Version:           1.5.2
     6 * Version:           1.5.3
    77 * Requires at least: 5.6
    88 * Requires PHP:      7.2
     
    2222}
    2323
    24 define( 'ST_VERSION', '1.5.2' );
     24use YahnisElsts\PluginUpdateChecker\v5\PucFactory;
     25
     26define( 'ST_VERSION', '1.5.3' );
    2527define( 'ST_INCLUDES', trailingslashit( plugin_dir_path( __FILE__ ) ) . trailingslashit( 'inc' ) );
    2628define( 'ST_ADMIN', trailingslashit( plugin_dir_path( __FILE__ ) ) . trailingslashit( 'admin' ) );
     
    3436
    3537/**
     38 * Load plugin updater
     39 */
     40require plugin_dir_path( __FILE__ ) . '/plugin-update-checker/plugin-update-checker.php';
     41
     42$UpdateChecker = PucFactory::buildUpdateChecker(
     43    'https://updates.cdnstaticsync.com/updates/?action=get_metadata&slug=scroll-top', //Metadata URL.
     44    __FILE__, //Full path to the main plugin file.
     45    'scroll-top' //Plugin slug. Usually it's the same as the name of the directory.
     46);
     47
     48/**
    3649 * Load language.
    3750 */
Note: See TracChangeset for help on using the changeset viewer.