Plugin Directory

Changeset 3217130


Ignore:
Timestamp:
01/05/2025 09:06:34 AM (15 months ago)
Author:
andrasweb
Message:

Version 1.7.2

Location:
pixmagix
Files:
115 added
4 edited

Legend:

Unmodified
Added
Removed
  • pixmagix/trunk/includes/rest-api/rest-callback-get-elements.php

    r3040560 r3217130  
    3636    $page = !empty($page) ? absint($page) : 1;
    3737    $args = compact('search', 'orientation', 'category', 'page');
    38     $api_url = 'https://api.pixmagix.net/' . $collection . '/';
     38    $api_url = 'https://api.pixmagixplugin.com/' . $collection . '/';
    3939    $api_url = add_query_arg($args, $api_url);
    4040    $remote_response = wp_remote_get($api_url);
  • pixmagix/trunk/includes/rest-api/rest-callback-get-templates.php

    r3040560 r3217130  
    2424    $page = !empty($page) ? absint($page) : 1;
    2525    $args = compact('search', 'orientation', 'category', 'page');
    26     $api_url = 'https://api.pixmagix.net/templates/';
     26    $api_url = 'https://api.pixmagixplugin.com/templates/';
    2727    $api_url = add_query_arg($args, $api_url);
    2828    $remote_response = wp_remote_get($api_url);
  • pixmagix/trunk/pixmagix.php

    r3130826 r3217130  
    55 * Plugin URI: https://pixmagixplugin.com/
    66 * Description: Advanced image editor plugin for media images. Add filters, adjust brightness and contrast, crop and resize images, add text, and much more. Overall, PixMagix is a powerful tool for anyone looking to take their website's visual content to the next level.
    7  * Version: 1.7.1
     7 * Version: 1.7.2
    88 * Requires at least: 6.0.0
    99 * Requires PHP: 7.0.0
     
    2626define('PIXMAGIX_DIR', plugin_dir_path(__FILE__));
    2727define('PIXMAGIX_URL', plugin_dir_url(__FILE__));
    28 define('PIXMAGIX_VERSION', '1.7.1');
     28define('PIXMAGIX_VERSION', '1.7.2');
    2929define('PIXMAGIX_REQUIRED_PHP_VERSION', '7.0.0');
    3030define('PIXMAGIX_REQUIRED_WP_VERSION', '6.0.0');
     
    4949        require_once PIXMAGIX_DIR . 'includes/init.php';
    5050        Plugin::run();
     51        do_action('pixmagix_loaded');
    5152    }
    5253}
  • pixmagix/trunk/readme.txt

    r3130826 r3217130  
    44Tags: image editor, photo editor, ai image generator, media editor, edit featured image
    55Requires at least: 6.0.0
    6 Tested up to: 6.6.1
    7 Stable tag: 1.7.1
     6Tested up to: 6.7.1
     7Stable tag: 1.7.2
    88Requires PHP: 7.0.0
    99License: GPLv2 or later
     
    7878== Changelog ==
    7979
     80= 1.7.2 =
     81
     82* PixMagix api endpoint has changed
     83* Tested with WordPress version 6.7.1
     84
    8085= 1.7.1 =
    8186
Note: See TracChangeset for help on using the changeset viewer.