Changeset 3180529
- Timestamp:
- 11/02/2024 10:48:34 PM (15 months ago)
- Location:
- hyper-pwa/trunk
- Files:
-
- 1 added
- 4 edited
-
admin/admin.php (modified) (3 diffs)
-
cfg/cfg.php (modified) (1 diff)
-
hyper-pwa.php (modified) (1 diff)
-
languages (added)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hyper-pwa/trunk/admin/admin.php
r3172446 r3180529 565 565 if ( ! empty( $value ) ) 566 566 { 567 $options_markup .= sprintf( '<input id="%1$s_%6$s" name="%1$s[]" type="%2$s" value="%3$s" %4$s /><label for="%1$s_%6$s"> %5$s</label><br>', esc_attr( $args['uid'] ), esc_attr( $args['type'] ), esc_attr( $key ), checked( $value[ array_search( $key, $value, TRUE ) ], $key, FALSE ), esc_html( $label ), esc_attr( $iterator ) );567 $options_markup .= sprintf( '<input id="%1$s_%6$s" name="%1$s[]" type="%2$s" value="%3$s" %4$s /><label for="%1$s_%6$s"> %5$s</label><br>', esc_attr( $args['uid'] ), esc_attr( $args['type'] ), esc_attr( $key ), checked( $value[ array_search( $key, $value, TRUE ) ], $key, FALSE ), wp_kses_post( $label ), esc_attr( $iterator ) ); 568 568 } 569 569 else 570 570 { 571 $options_markup .= sprintf( '<input id="%1$s_%5$s" name="%1$s[]" type="%2$s" value="%3$s" /><label for="%1$s_%5$s"> %4$s</label><br>', esc_attr( $args['uid'] ), esc_attr( $args['type'] ), esc_attr( $key ), esc_html( $label ), esc_attr( $iterator ) );571 $options_markup .= sprintf( '<input id="%1$s_%5$s" name="%1$s[]" type="%2$s" value="%3$s" /><label for="%1$s_%5$s"> %4$s</label><br>', esc_attr( $args['uid'] ), esc_attr( $args['type'] ), esc_attr( $key ), wp_kses_post( $label ), esc_attr( $iterator ) ); 572 572 } 573 573 } 574 574 575 printf( '<fieldset>%s</fieldset>', wp_kses_post( $options_markup ));575 printf( '<fieldset>%s</fieldset>', $options_markup ); 576 576 } 577 577 break; … … 589 589 { 590 590 $helper = $args['helper']; 591 printf( '<span class="helper">%s</span>', esc_html( $helper ) );591 printf( '<span class="helper">%s</span>', wp_kses_post( $helper ) ); 592 592 } 593 593 … … 595 595 { 596 596 $supplimental = $args['supplimental']; 597 printf( '<p class="description">%s</p>', esc_html( $supplimental ) );597 printf( '<p class="description">%s</p>', wp_kses_post( $supplimental ) ); 598 598 } 599 599 } -
hyper-pwa/trunk/cfg/cfg.php
r3172446 r3180529 5 5 } 6 6 7 define( 'HYPER_PWA_VERSION', '4. 1.0' );7 define( 'HYPER_PWA_VERSION', '4.2.0' ); 8 8 9 9 define( 'HYPER_PWA_TRANSIENT_SCHEDULE_RECURRENCE', HOUR_IN_SECONDS ); -
hyper-pwa/trunk/hyper-pwa.php
r3172446 r3180529 4 4 Plugin URI: https://wordpress.org/plugins/hyper-pwa/ 5 5 Description: Provide Manifest and Service Worker, convert WordPress into Progressive Web Apps (PWA). 6 Version: 4. 1.06 Version: 4.2.0 7 7 Author: Rickey Gu 8 8 Author URI: https://flexplat.com -
hyper-pwa/trunk/readme.txt
r3172446 r3180529 6 6 Tested up to: 6.6.2 7 7 Requires PHP: 7.2 8 Stable tag: 4. 1.08 Stable tag: 4.2.0 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 25 25 26 26 == Highlight == 27 This plugin is relying on a 3rd party Software as a Service -- FlexPlat: https://flexplat.com to generate Manifest and Service Workers related files. The Terms and Conditions is located at: https:// flexplat.com/terms-and-conditions/27 This plugin is relying on a 3rd party Software as a Service -- FlexPlat: https://flexplat.com to generate Manifest and Service Workers related files. The Terms and Conditions is located at: https://www.termsfeed.com/live/f1e8d2bc-1615-4aa9-bddb-24dcde10b50b 28 28 29 29 In detail, to make PWA working, end users will ask your website to provide Manifest and Service Workers related files: … … 63 63 == Changelog == 64 64 65 = 4.2.0 66 (Sat., Nov. 02, 2024) 67 * Bug Fix: Admin Service Worker tab can not show Dynamic Site & Staic Site 68 65 69 = 4.1.0 66 70 (Sun., Oct. 20, 2024)
Note: See TracChangeset
for help on using the changeset viewer.