Plugin Directory

Changeset 3007290


Ignore:
Timestamp:
12/08/2023 01:30:50 PM (2 years ago)
Author:
wonderpush
Message:

v1.10.1

Location:
wonderpush-web-push-notifications
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wonderpush-web-push-notifications/tags/1.10.1/readme.txt

    r3007286 r3007290  
    55Requires at least: 5.0
    66Tested up to: 6.2.2
    7 Stable tag: 1.10.0
     7Stable tag: 1.10.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090
    9191== Changelog ==
     92= 1.10.1 =
     93- Old php compatibility
     94
    9295= 1.10.0 =
    9396- Using full version of select2
  • wonderpush-web-push-notifications/tags/1.10.1/wonderpush-admin-page.css

    r3007286 r3007290  
    4343    transform: rotate(360deg);
    4444  }
     45}
     46.metric {
     47  display: inline-block;
     48  text-align: center;
     49  padding: 0 10px;
     50}
     51.metric span {
     52  display: block;
     53}
     54.metric .legend {
     55  font-size: 0.8em;
     56}
     57.metric .number {
     58  font-size: 2em;
     59  padding: 5px;
    4560}
    4661.access-token-form input[type=text] {
     
    130145  padding: 50px 0;
    131146}
    132 .metric {
    133   display: inline-block;
    134   text-align: center;
    135   padding: 0 10px;
    136 }
    137 .metric span {
    138   display: block;
    139 }
    140 .metric .legend {
    141   font-size: 0.8em;
    142 }
    143 .metric .number {
    144   font-size: 2em;
    145   padding: 5px;
    146 }
  • wonderpush-web-push-notifications/tags/1.10.1/wonderpush-admin.php

    r3007286 r3007290  
    33
    44class WonderPushAdmin {
    5   const RESOURCES_VERSION = '1.10.0';
     5  const RESOURCES_VERSION = '1.10.1';
    66  const MENU_SLUG = 'wonderpush';
    77  const META_BOX_ID = 'wonderpush_meta_box';
  • wonderpush-web-push-notifications/tags/1.10.1/wonderpush-utils.php

    r3007286 r3007290  
    8686      // Access token not associated with any app
    8787      delete_transient($cache_key);
    88       return [];
     88      return array();
    8989    } catch (Exception $e) {
    9090      delete_transient($cache_key);
     
    9292        && ($e->getResponse()->getStatusCode() == 403 || $e->getCode() === 11003)) {
    9393        // Invalid access token
    94         return [];
     94        return array();
    9595      }
    9696      throw $e;
  • wonderpush-web-push-notifications/tags/1.10.1/wonderpush.php

    r3007286 r3007290  
    88Author: WonderPush
    99Author URI: https://www.wonderpush.com/
    10 Version: 1.10.0
     10Version: 1.10.1
    1111License: GPLv2 or later
    1212*/
  • wonderpush-web-push-notifications/trunk/readme.txt

    r3007286 r3007290  
    55Requires at least: 5.0
    66Tested up to: 6.2.2
    7 Stable tag: 1.10.0
     7Stable tag: 1.10.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090
    9191== Changelog ==
     92= 1.10.1 =
     93- Old php compatibility
     94
    9295= 1.10.0 =
    9396- Using full version of select2
  • wonderpush-web-push-notifications/trunk/wonderpush-admin-page.css

    r3007286 r3007290  
    4343    transform: rotate(360deg);
    4444  }
     45}
     46.metric {
     47  display: inline-block;
     48  text-align: center;
     49  padding: 0 10px;
     50}
     51.metric span {
     52  display: block;
     53}
     54.metric .legend {
     55  font-size: 0.8em;
     56}
     57.metric .number {
     58  font-size: 2em;
     59  padding: 5px;
    4560}
    4661.access-token-form input[type=text] {
     
    130145  padding: 50px 0;
    131146}
    132 .metric {
    133   display: inline-block;
    134   text-align: center;
    135   padding: 0 10px;
    136 }
    137 .metric span {
    138   display: block;
    139 }
    140 .metric .legend {
    141   font-size: 0.8em;
    142 }
    143 .metric .number {
    144   font-size: 2em;
    145   padding: 5px;
    146 }
  • wonderpush-web-push-notifications/trunk/wonderpush-admin.php

    r3007286 r3007290  
    33
    44class WonderPushAdmin {
    5   const RESOURCES_VERSION = '1.10.0';
     5  const RESOURCES_VERSION = '1.10.1';
    66  const MENU_SLUG = 'wonderpush';
    77  const META_BOX_ID = 'wonderpush_meta_box';
  • wonderpush-web-push-notifications/trunk/wonderpush-utils.php

    r3007286 r3007290  
    8686      // Access token not associated with any app
    8787      delete_transient($cache_key);
    88       return [];
     88      return array();
    8989    } catch (Exception $e) {
    9090      delete_transient($cache_key);
     
    9292        && ($e->getResponse()->getStatusCode() == 403 || $e->getCode() === 11003)) {
    9393        // Invalid access token
    94         return [];
     94        return array();
    9595      }
    9696      throw $e;
  • wonderpush-web-push-notifications/trunk/wonderpush.php

    r3007286 r3007290  
    88Author: WonderPush
    99Author URI: https://www.wonderpush.com/
    10 Version: 1.10.0
     10Version: 1.10.1
    1111License: GPLv2 or later
    1212*/
Note: See TracChangeset for help on using the changeset viewer.