Plugin Directory

Changeset 3431465


Ignore:
Timestamp:
01/03/2026 06:32:36 AM (7 weeks ago)
Author:
digitalapps
Message:

beta message update

Location:
wp-swiper/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-swiper/trunk/README.txt

    r3428984 r3431465  
    55Requires at least: 3.0.1
    66Tested up to: 6.9
    7 Stable tag: 1.13.11
     7Stable tag: 1.13.12
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • wp-swiper/trunk/includes/admin/class-wp-swiper-admin.php

    r3428984 r3431465  
    137137
    138138        // Check if notice has been dismissed
    139         $dismissed = get_user_meta( get_current_user_id(), 'wpswiper_beta_140_dismissed', true );
     139        $dismissed = get_user_meta( get_current_user_id(), 'wpswiper_beta_140_dismissed_v2', true );
    140140        if ( $dismissed ) {
    141141            return;
     
    151151                printf(
    152152                    /* translators: %s: URL to plugin page */
    153                     esc_html__( 'Check out the new features including drag and drop photos. %s.', 'wpswiper' ),
    154                     '<a href="https://downloads.wordpress.org/plugin/wp-swiper.1.4.0-beta.1.zip" target="_blank">' . esc_html__( 'Download now', 'wpswiper' ) . '</a>'
     153                    esc_html__( 'New version is coming soon! Check out the new features including drag and drop photos, customizable svg colors, and more. More details on the %s.', 'wpswiper' ),
     154                    '<a href="https://wordpress.org/plugins/wp-swiper/" target="_blank">' . esc_html__( 'plugin page', 'wpswiper' ) . '</a>'
     155                );
     156                ?>
     157            </p>
     158            <p>
     159                <?php
     160                printf(
     161                    /* translators: 1: Download link, 2: GitHub issues link */
     162                    esc_html__( '%1$s | %2$s', 'wpswiper' ),
     163                    '<a href="https://github.com/andreyc0d3r/wp-swiper/releases" target="_blank"><strong>' . esc_html__( 'Download Beta', 'wpswiper' ) . '</strong></a>',
     164                    '<a href="https://github.com/andreyc0d3r/wp-swiper/issues" target="_blank">' . esc_html__( 'Report Issues & Feedback', 'wpswiper' ) . '</a>'
    155165                );
    156166                ?>
     
    181191    public function dismiss_beta_notice() {
    182192        check_ajax_referer( 'wpswiper_dismiss_beta_notice', 'nonce' );
    183        
    184         update_user_meta( get_current_user_id(), 'wpswiper_beta_140_dismissed', true );
    185        
     193
     194        update_user_meta( get_current_user_id(), 'wpswiper_beta_140_dismissed_v2', true );
     195
    186196        wp_send_json_success();
    187197    }
  • wp-swiper/trunk/wp-swiper.php

    r3428984 r3431465  
    1717 * Plugin URI:        https://digitalapps.com/wp-swiper/
    1818 * Description:       Swiper JS as a Gutenberg Block.
    19  * Version:           1.3.11
     19 * Version:           1.3.12
    2020 * Author:            Digital Apps
    2121 * Author URI:        https://digitalapps.com/
     
    3232}
    3333
    34 define( 'DAWPS_PLUGIN_VERSION', '1.3.11' );
     34define( 'DAWPS_PLUGIN_VERSION', '1.3.12' );
    3535define( 'DAWPS_BUNDLE_VERSION', '12.0.2' );
    3636define( 'DAWPS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.