Changeset 3431465
- Timestamp:
- 01/03/2026 06:32:36 AM (7 weeks ago)
- Location:
- wp-swiper/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
includes/admin/class-wp-swiper-admin.php (modified) (3 diffs)
-
wp-swiper.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-swiper/trunk/README.txt
r3428984 r3431465 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.9 7 Stable tag: 1.13.1 17 Stable tag: 1.13.12 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wp-swiper/trunk/includes/admin/class-wp-swiper-admin.php
r3428984 r3431465 137 137 138 138 // 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 ); 140 140 if ( $dismissed ) { 141 141 return; … … 151 151 printf( 152 152 /* 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>' 155 165 ); 156 166 ?> … … 181 191 public function dismiss_beta_notice() { 182 192 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 186 196 wp_send_json_success(); 187 197 } -
wp-swiper/trunk/wp-swiper.php
r3428984 r3431465 17 17 * Plugin URI: https://digitalapps.com/wp-swiper/ 18 18 * Description: Swiper JS as a Gutenberg Block. 19 * Version: 1.3.1 119 * Version: 1.3.12 20 20 * Author: Digital Apps 21 21 * Author URI: https://digitalapps.com/ … … 32 32 } 33 33 34 define( 'DAWPS_PLUGIN_VERSION', '1.3.1 1' );34 define( 'DAWPS_PLUGIN_VERSION', '1.3.12' ); 35 35 define( 'DAWPS_BUNDLE_VERSION', '12.0.2' ); 36 36 define( 'DAWPS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.