Plugin Directory

Changeset 2508624


Ignore:
Timestamp:
04/03/2021 12:15:43 PM (5 years ago)
Author:
wp-making
Message:

Tagging version 4.13.0

Location:
rest-routes/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • rest-routes/trunk/readme.txt

    r2500503 r2508624  
    8484== Changelog ==
    8585
     86= 4.13.0 =
     87
     88- FREE/PRO: Fixed problem with malformed strings in endpoint
     89- FREE/PRO: Fixed problem with fixed filter values
     90- FREE/PRO: Fixed problem with the URL of fresh custom endpoints when saving
     91- FREE/PRO: Fixed bug in the enqueuing of Rest Routes scripts
     92- FREE/PRO: Fixed bug in the Save button on RTL
     93- PRO: Added filter for changing the custom table database
     94- PRO: Added parent fields as output options
     95
    8696= 4.12.0 =
    8797
  • rest-routes/trunk/rest-routes.php

    r2500503 r2508624  
    22
    33/*
    4 Plugin Name: Rest Routes
     4Plugin Name: Rest Routes – Custom Endpoints for WP REST API
    55Plugin URI: https://www.restroutes.com
    66Description: Extend the WP REST API by creating unlimited advanced custom routes for your site.
    7 Author: Rest Routes – Custom Endpoints for WP REST API
     7Author: Rest Routes
    88Author URI: https://www.restroutes.com
    9 Version: 4.12.0
     9Version: 4.13.0
    1010*/
    1111if ( !defined( 'ABSPATH' ) ) {
     
    1616    rrp_fs()->set_basename( false, __FILE__ );
    1717} else {
    18    
     18
    1919    if ( !function_exists( 'rrp_fs' ) ) {
    2020        // Create a helper function for easy SDK access.
     
    2222        {
    2323            global  $rrp_fs ;
    24            
     24
    2525            if ( !isset( $rrp_fs ) ) {
    2626                // Include Freemius SDK.
     
    4343                ) );
    4444            }
    45            
     45
    4646            return $rrp_fs;
    4747        }
    48        
     48
    4949        // Init Freemius.
    5050        rrp_fs();
     
    5252        do_action( 'rrp_fs_loaded' );
    5353    }
    54    
     54
    5555    $rest_routes_url = untrailingslashit( plugin_dir_url( __FILE__ ) );
    5656    define( 'REST_ROUTES_PLUGIN_PATH', __DIR__ );
Note: See TracChangeset for help on using the changeset viewer.