Changeset 2941277
- Timestamp:
- 07/21/2023 12:00:56 PM (3 years ago)
- Location:
- wonderpush-web-push-notifications
- Files:
-
- 10 edited
- 1 copied
-
tags/1.9.26 (copied) (copied from wonderpush-web-push-notifications/trunk)
-
tags/1.9.26/readme.txt (modified) (1 diff)
-
tags/1.9.26/wonderpush-admin-page.css (modified) (2 diffs)
-
tags/1.9.26/wonderpush-admin.php (modified) (1 diff)
-
tags/1.9.26/wonderpush-woocommerce.php (modified) (2 diffs)
-
tags/1.9.26/wonderpush.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wonderpush-admin-page.css (modified) (2 diffs)
-
trunk/wonderpush-admin.php (modified) (1 diff)
-
trunk/wonderpush-woocommerce.php (modified) (2 diffs)
-
trunk/wonderpush.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wonderpush-web-push-notifications/tags/1.9.26/readme.txt
r2936572 r2941277 5 5 Requires at least: 5.0 6 6 Tested up to: 6.2.2 7 Stable tag: 1.9.2 57 Stable tag: 1.9.26 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wonderpush-web-push-notifications/tags/1.9.26/wonderpush-admin-page.css
r2936572 r2941277 43 43 transform: rotate(360deg); 44 44 } 45 } 46 .access-token-form input[type=text] { 47 height: 28px; 48 margin-right: 5px; 45 49 } 46 50 .wonderpush-admin-page > header { … … 89 93 vertical-align: super; 90 94 margin-left: 5px; 91 }92 .access-token-form input[type=text] {93 height: 28px;94 margin-right: 5px;95 95 } 96 96 .metric { -
wonderpush-web-push-notifications/tags/1.9.26/wonderpush-admin.php
r2936572 r2941277 3 3 4 4 class WonderPushAdmin { 5 const RESOURCES_VERSION = '1.9.2 5';5 const RESOURCES_VERSION = '1.9.26'; 6 6 const MENU_SLUG = 'wonderpush'; 7 7 const META_BOX_ID = 'wonderpush_meta_box'; -
wonderpush-web-push-notifications/tags/1.9.26/wonderpush-woocommerce.php
r2775368 r2941277 455 455 $availability = null; 456 456 if (is_array($product->get_availability())) { 457 switch ( ($product->get_availability())['class'] ) { 457 $availabilityArray = $product->get_availability(); 458 switch ( $availabilityArray['class'] ) { 458 459 case 'out-of-stock': 459 460 $availability = 'OutOfStock'; … … 467 468 } 468 469 } 470 469 471 $currency = null; 470 472 if (function_exists('get_woocommerce_currency')) { -
wonderpush-web-push-notifications/tags/1.9.26/wonderpush.php
r2936572 r2941277 8 8 Author: WonderPush 9 9 Author URI: https://www.wonderpush.com/ 10 Version: 1.9.2 510 Version: 1.9.26 11 11 License: GPLv2 or later 12 12 */ -
wonderpush-web-push-notifications/trunk/readme.txt
r2936572 r2941277 5 5 Requires at least: 5.0 6 6 Tested up to: 6.2.2 7 Stable tag: 1.9.2 57 Stable tag: 1.9.26 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wonderpush-web-push-notifications/trunk/wonderpush-admin-page.css
r2936572 r2941277 43 43 transform: rotate(360deg); 44 44 } 45 } 46 .access-token-form input[type=text] { 47 height: 28px; 48 margin-right: 5px; 45 49 } 46 50 .wonderpush-admin-page > header { … … 89 93 vertical-align: super; 90 94 margin-left: 5px; 91 }92 .access-token-form input[type=text] {93 height: 28px;94 margin-right: 5px;95 95 } 96 96 .metric { -
wonderpush-web-push-notifications/trunk/wonderpush-admin.php
r2936572 r2941277 3 3 4 4 class WonderPushAdmin { 5 const RESOURCES_VERSION = '1.9.2 5';5 const RESOURCES_VERSION = '1.9.26'; 6 6 const MENU_SLUG = 'wonderpush'; 7 7 const META_BOX_ID = 'wonderpush_meta_box'; -
wonderpush-web-push-notifications/trunk/wonderpush-woocommerce.php
r2775368 r2941277 455 455 $availability = null; 456 456 if (is_array($product->get_availability())) { 457 switch ( ($product->get_availability())['class'] ) { 457 $availabilityArray = $product->get_availability(); 458 switch ( $availabilityArray['class'] ) { 458 459 case 'out-of-stock': 459 460 $availability = 'OutOfStock'; … … 467 468 } 468 469 } 470 469 471 $currency = null; 470 472 if (function_exists('get_woocommerce_currency')) { -
wonderpush-web-push-notifications/trunk/wonderpush.php
r2936572 r2941277 8 8 Author: WonderPush 9 9 Author URI: https://www.wonderpush.com/ 10 Version: 1.9.2 510 Version: 1.9.26 11 11 License: GPLv2 or later 12 12 */
Note: See TracChangeset
for help on using the changeset viewer.