Plugin Directory

Changeset 3212491


Ignore:
Timestamp:
12/24/2024 08:59:42 AM (15 months ago)
Author:
inspireui
Message:

version 4.16.7

Location:
mstore-api
Files:
491 added
3 edited

Legend:

Unmodified
Added
Removed
  • mstore-api/trunk/controllers/helpers/firebase-message-helper.php

    r3076227 r3212491  
    8585    }
    8686
    87     public static function push_notification($title, $message, $deviceToken)
     87    public static function push_notification($title, $message, $deviceToken, $data = array())
    8888    {
    8989        if(!FirebaseMessageHelper::is_file_existed()){
     
    104104                        "body" => $message
    105105                    ],
    106                     "data" => [
     106                    "data" => array_merge([
    107107                        "title" => $title,
    108108                        "body" => $message
    109                     ],
     109                    ], $data),
    110110                    "android" => [
    111111                        "notification" => [
  • mstore-api/trunk/mstore-api.php

    r3211961 r3212491  
    44 * Plugin URI: https://github.com/inspireui/mstore-api
    55 * Description: The MStore API Plugin which is used for the FluxBuilder and FluxStore Mobile App
    6  * Version: 4.16.6
     6 * Version: 4.16.7
    77 * Author: FluxBuilder
    88 * Author URI: https://fluxbuilder.com
     
    6161class MstoreCheckOut
    6262{
    63     public $version = '4.16.6';
     63    public $version = '4.16.7';
    6464
    6565    public function __construct()
  • mstore-api/trunk/readme.txt

    r3211961 r3212491  
    44Requires at least: 4.4
    55Tested up to:      6.5.3
    6 Stable tag:        4.16.6
     6Stable tag:        4.16.7
    77License:           GPL-2.0
    88License URI:       https://www.gnu.org/licenses/gpl-2.0.html
     
    4949
    5050== Changelog ==
     51= 4.16.7 =
     52  * Support push notification for points offline store
     53
    5154= 4.16.6 =
    5255  * Support points offline store api
Note: See TracChangeset for help on using the changeset viewer.