Changeset 2923836
- Timestamp:
- 06/09/2023 08:55:15 AM (3 years ago)
- Location:
- better-website-performance
- Files:
-
- 1 added
- 28 edited
- 1 copied
-
assets/.gitkeep (added)
-
tags/1.1.0 (copied) (copied from better-website-performance/trunk)
-
tags/1.1.0/better-website-performance.php (modified) (1 diff)
-
tags/1.1.0/inc/class-better-website-performance.php (modified) (2 diffs)
-
tags/1.1.0/inc/emoji/class-emoji.php (modified) (1 diff)
-
tags/1.1.0/inc/image-srcset/class-image-srcset.php (modified) (1 diff)
-
tags/1.1.0/inc/javascript/class-async.php (modified) (1 diff)
-
tags/1.1.0/inc/jquery/class-jquery.php (modified) (1 diff)
-
tags/1.1.0/inc/preload/class-preload.php (modified) (1 diff)
-
tags/1.1.0/inc/resource-hints/class-resource-hints.php (modified) (1 diff)
-
tags/1.1.0/inc/style/class-concat.php (modified) (1 diff)
-
tags/1.1.0/inc/wp-custom-css/class-wp-custom-css.php (modified) (1 diff)
-
tags/1.1.0/inc/wp-head/class-wp-head.php (modified) (1 diff)
-
tags/1.1.0/languages/better-website-performance-ja.po (modified) (1 diff)
-
tags/1.1.0/languages/better-website-performance.pot (modified) (1 diff)
-
tags/1.1.0/readme.txt (modified) (2 diffs)
-
trunk/better-website-performance.php (modified) (1 diff)
-
trunk/inc/class-better-website-performance.php (modified) (2 diffs)
-
trunk/inc/emoji/class-emoji.php (modified) (1 diff)
-
trunk/inc/image-srcset/class-image-srcset.php (modified) (1 diff)
-
trunk/inc/javascript/class-async.php (modified) (1 diff)
-
trunk/inc/jquery/class-jquery.php (modified) (1 diff)
-
trunk/inc/preload/class-preload.php (modified) (1 diff)
-
trunk/inc/resource-hints/class-resource-hints.php (modified) (1 diff)
-
trunk/inc/style/class-concat.php (modified) (1 diff)
-
trunk/inc/wp-custom-css/class-wp-custom-css.php (modified) (1 diff)
-
trunk/inc/wp-head/class-wp-head.php (modified) (1 diff)
-
trunk/languages/better-website-performance-ja.po (modified) (1 diff)
-
trunk/languages/better-website-performance.pot (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
better-website-performance/tags/1.1.0/better-website-performance.php
r2920487 r2923836 4 4 * Plugin URI: https://github.com/thingsym/better-website-performance 5 5 * Description: The Better Website Performance plugin adds advanced features to improve website performance. 6 * Version: 1. 0.16 * Version: 1.1.0 7 7 * Author: thingsym 8 8 * Author URI: https://www.thingslabo.com/ -
better-website-performance/tags/1.1.0/inc/class-better-website-performance.php
r2920487 r2923836 29 29 add_action( 'plugins_loaded', [ $this, 'init' ] ); 30 30 add_action( 'plugins_loaded', [ $this, 'load_class_functions' ] ); 31 32 register_uninstall_hook( BETTER_WEBSITE_PERFORMANCE, array( __CLASS__, 'uninstall' ) ); 31 33 } 32 34 … … 88 90 89 91 /** 92 * Uninstall callback static class method for register_uninstall_hook 93 * 94 * @access static 95 * 96 * @return void 97 * 98 * @since 1.1.0 99 */ 100 public static function uninstall() { 101 \Better_Website_Performance\Emoji\Emoji::uninstall(); 102 \Better_Website_Performance\Image_Srcset\Image_Srcset::uninstall(); 103 \Better_Website_Performance\JavaScript\Async::uninstall(); 104 \Better_Website_Performance\Jquery\Jquery::uninstall(); 105 \Better_Website_Performance\Preload\Preload::uninstall(); 106 \Better_Website_Performance\Resource_Hints\Resource_Hints::uninstall(); 107 \Better_Website_Performance\Style\Concat::uninstall(); 108 \Better_Website_Performance\Wp_Custom_Css\Wp_Custom_Css::uninstall(); 109 \Better_Website_Performance\Wp_Head\Wp_Head::uninstall(); 110 } 111 112 /** 90 113 * Set links below a plugin on the Plugins page. 91 114 * -
better-website-performance/tags/1.1.0/inc/emoji/class-emoji.php
r2920487 r2923836 192 192 ); 193 193 } 194 195 /** 196 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 197 * 198 * @access static 199 * 200 * @return void 201 * 202 * @since 1.1.0 203 */ 204 public static function uninstall() { 205 delete_option( 'better_website_performance_emoji_options' ); 206 } 207 194 208 } -
better-website-performance/tags/1.1.0/inc/image-srcset/class-image-srcset.php
r2920487 r2923836 185 185 ); 186 186 } 187 188 /** 189 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 190 * 191 * @access static 192 * 193 * @return void 194 * 195 * @since 1.1.0 196 */ 197 public static function uninstall() { 198 delete_option( 'better_website_performance_image_srcset_options' ); 199 } 200 187 201 } -
better-website-performance/tags/1.1.0/inc/javascript/class-async.php
r2920487 r2923836 247 247 ] 248 248 ); 249 250 } 249 } 250 251 /** 252 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 253 * 254 * @access static 255 * 256 * @return void 257 * 258 * @since 1.1.0 259 */ 260 public static function uninstall() { 261 delete_option( 'better_website_performance_async_javascript_options' ); 262 } 263 251 264 } -
better-website-performance/tags/1.1.0/inc/jquery/class-jquery.php
r2920487 r2923836 289 289 ); 290 290 } 291 292 /** 293 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 294 * 295 * @access static 296 * 297 * @return void 298 * 299 * @since 1.1.0 300 */ 301 public static function uninstall() { 302 delete_option( 'better_website_performance_jquery_options' ); 303 } 304 291 305 } -
better-website-performance/tags/1.1.0/inc/preload/class-preload.php
r2920487 r2923836 225 225 226 226 } 227 228 /** 229 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 230 * 231 * @access static 232 * 233 * @return void 234 * 235 * @since 1.1.0 236 */ 237 public static function uninstall() { 238 delete_option( 'better_website_performance_preload_options' ); 239 } 240 227 241 } -
better-website-performance/tags/1.1.0/inc/resource-hints/class-resource-hints.php
r2920487 r2923836 319 319 ); 320 320 } 321 322 /** 323 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 324 * 325 * @access static 326 * 327 * @return void 328 * 329 * @since 1.1.0 330 */ 331 public static function uninstall() { 332 delete_option( 'better_website_performance_resource_hints_options' ); 333 } 334 321 335 } -
better-website-performance/tags/1.1.0/inc/style/class-concat.php
r2920487 r2923836 335 335 336 336 } 337 338 /** 339 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 340 * 341 * @access static 342 * 343 * @return void 344 * 345 * @since 1.1.0 346 */ 347 public static function uninstall() { 348 delete_option( 'better_website_performance_concat_style_options' ); 349 } 350 337 351 } -
better-website-performance/tags/1.1.0/inc/wp-custom-css/class-wp-custom-css.php
r2920487 r2923836 184 184 ); 185 185 } 186 187 /** 188 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 189 * 190 * @access static 191 * 192 * @return void 193 * 194 * @since 1.1.0 195 */ 196 public static function uninstall() { 197 delete_option( 'better_website_performance_wp_custom_css_options' ); 198 } 199 186 200 } -
better-website-performance/tags/1.1.0/inc/wp-head/class-wp-head.php
r2920487 r2923836 371 371 372 372 } 373 374 /** 375 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 376 * 377 * @access static 378 * 379 * @return void 380 * 381 * @since 1.1.0 382 */ 383 public static function uninstall() { 384 delete_option( 'better_website_performance_wp_head_options' ); 385 } 386 373 387 } -
better-website-performance/tags/1.1.0/languages/better-website-performance-ja.po
r2920487 r2923836 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Better Website Performance 1. 0.1\n"5 "Project-Id-Version: Better Website Performance 1.1.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/better-website-" 7 7 "performance\n" -
better-website-performance/tags/1.1.0/languages/better-website-performance.pot
r2920487 r2923836 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Better Website Performance 1. 0.1\n"5 "Project-Id-Version: Better Website Performance 1.1.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/better-website-performance\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
better-website-performance/tags/1.1.0/readme.txt
r2920487 r2923836 5 5 Donate link: https://github.com/sponsors/thingsym 6 6 Tags: performance 7 Stable tag: 1. 0.17 Stable tag: 1.1.0 8 8 Tested up to: 6.2.0 9 9 Requires at least: 6.0 … … 113 113 == Changelog == 114 114 115 = 1.1.0 = 116 * add test case 117 * add uninstall process 118 * add public class property 119 * fix test case 120 * ci support php version 8.0 later 121 * add github actions for deploy to wordpress.org 122 115 123 = 1.0.1 for review = 116 124 * imporve code with phpcs -
better-website-performance/trunk/better-website-performance.php
r2920487 r2923836 4 4 * Plugin URI: https://github.com/thingsym/better-website-performance 5 5 * Description: The Better Website Performance plugin adds advanced features to improve website performance. 6 * Version: 1. 0.16 * Version: 1.1.0 7 7 * Author: thingsym 8 8 * Author URI: https://www.thingslabo.com/ -
better-website-performance/trunk/inc/class-better-website-performance.php
r2920487 r2923836 29 29 add_action( 'plugins_loaded', [ $this, 'init' ] ); 30 30 add_action( 'plugins_loaded', [ $this, 'load_class_functions' ] ); 31 32 register_uninstall_hook( BETTER_WEBSITE_PERFORMANCE, array( __CLASS__, 'uninstall' ) ); 31 33 } 32 34 … … 88 90 89 91 /** 92 * Uninstall callback static class method for register_uninstall_hook 93 * 94 * @access static 95 * 96 * @return void 97 * 98 * @since 1.1.0 99 */ 100 public static function uninstall() { 101 \Better_Website_Performance\Emoji\Emoji::uninstall(); 102 \Better_Website_Performance\Image_Srcset\Image_Srcset::uninstall(); 103 \Better_Website_Performance\JavaScript\Async::uninstall(); 104 \Better_Website_Performance\Jquery\Jquery::uninstall(); 105 \Better_Website_Performance\Preload\Preload::uninstall(); 106 \Better_Website_Performance\Resource_Hints\Resource_Hints::uninstall(); 107 \Better_Website_Performance\Style\Concat::uninstall(); 108 \Better_Website_Performance\Wp_Custom_Css\Wp_Custom_Css::uninstall(); 109 \Better_Website_Performance\Wp_Head\Wp_Head::uninstall(); 110 } 111 112 /** 90 113 * Set links below a plugin on the Plugins page. 91 114 * -
better-website-performance/trunk/inc/emoji/class-emoji.php
r2920487 r2923836 192 192 ); 193 193 } 194 195 /** 196 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 197 * 198 * @access static 199 * 200 * @return void 201 * 202 * @since 1.1.0 203 */ 204 public static function uninstall() { 205 delete_option( 'better_website_performance_emoji_options' ); 206 } 207 194 208 } -
better-website-performance/trunk/inc/image-srcset/class-image-srcset.php
r2920487 r2923836 185 185 ); 186 186 } 187 188 /** 189 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 190 * 191 * @access static 192 * 193 * @return void 194 * 195 * @since 1.1.0 196 */ 197 public static function uninstall() { 198 delete_option( 'better_website_performance_image_srcset_options' ); 199 } 200 187 201 } -
better-website-performance/trunk/inc/javascript/class-async.php
r2920487 r2923836 247 247 ] 248 248 ); 249 250 } 249 } 250 251 /** 252 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 253 * 254 * @access static 255 * 256 * @return void 257 * 258 * @since 1.1.0 259 */ 260 public static function uninstall() { 261 delete_option( 'better_website_performance_async_javascript_options' ); 262 } 263 251 264 } -
better-website-performance/trunk/inc/jquery/class-jquery.php
r2920487 r2923836 289 289 ); 290 290 } 291 292 /** 293 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 294 * 295 * @access static 296 * 297 * @return void 298 * 299 * @since 1.1.0 300 */ 301 public static function uninstall() { 302 delete_option( 'better_website_performance_jquery_options' ); 303 } 304 291 305 } -
better-website-performance/trunk/inc/preload/class-preload.php
r2920487 r2923836 225 225 226 226 } 227 228 /** 229 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 230 * 231 * @access static 232 * 233 * @return void 234 * 235 * @since 1.1.0 236 */ 237 public static function uninstall() { 238 delete_option( 'better_website_performance_preload_options' ); 239 } 240 227 241 } -
better-website-performance/trunk/inc/resource-hints/class-resource-hints.php
r2920487 r2923836 319 319 ); 320 320 } 321 322 /** 323 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 324 * 325 * @access static 326 * 327 * @return void 328 * 329 * @since 1.1.0 330 */ 331 public static function uninstall() { 332 delete_option( 'better_website_performance_resource_hints_options' ); 333 } 334 321 335 } -
better-website-performance/trunk/inc/style/class-concat.php
r2920487 r2923836 335 335 336 336 } 337 338 /** 339 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 340 * 341 * @access static 342 * 343 * @return void 344 * 345 * @since 1.1.0 346 */ 347 public static function uninstall() { 348 delete_option( 'better_website_performance_concat_style_options' ); 349 } 350 337 351 } -
better-website-performance/trunk/inc/wp-custom-css/class-wp-custom-css.php
r2920487 r2923836 184 184 ); 185 185 } 186 187 /** 188 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 189 * 190 * @access static 191 * 192 * @return void 193 * 194 * @since 1.1.0 195 */ 196 public static function uninstall() { 197 delete_option( 'better_website_performance_wp_custom_css_options' ); 198 } 199 186 200 } -
better-website-performance/trunk/inc/wp-head/class-wp-head.php
r2920487 r2923836 371 371 372 372 } 373 374 /** 375 * Uninstall callback for static class method \Better_Website_Performance\Better_Website_Performance::uninstall() 376 * 377 * @access static 378 * 379 * @return void 380 * 381 * @since 1.1.0 382 */ 383 public static function uninstall() { 384 delete_option( 'better_website_performance_wp_head_options' ); 385 } 386 373 387 } -
better-website-performance/trunk/languages/better-website-performance-ja.po
r2920487 r2923836 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Better Website Performance 1. 0.1\n"5 "Project-Id-Version: Better Website Performance 1.1.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/better-website-" 7 7 "performance\n" -
better-website-performance/trunk/languages/better-website-performance.pot
r2920487 r2923836 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Better Website Performance 1. 0.1\n"5 "Project-Id-Version: Better Website Performance 1.1.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/better-website-performance\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
better-website-performance/trunk/readme.txt
r2920487 r2923836 5 5 Donate link: https://github.com/sponsors/thingsym 6 6 Tags: performance 7 Stable tag: 1. 0.17 Stable tag: 1.1.0 8 8 Tested up to: 6.2.0 9 9 Requires at least: 6.0 … … 113 113 == Changelog == 114 114 115 = 1.1.0 = 116 * add test case 117 * add uninstall process 118 * add public class property 119 * fix test case 120 * ci support php version 8.0 later 121 * add github actions for deploy to wordpress.org 122 115 123 = 1.0.1 for review = 116 124 * imporve code with phpcs
Note: See TracChangeset
for help on using the changeset viewer.