Plugin Directory

Changeset 3200929


Ignore:
Timestamp:
12/02/2024 01:22:04 PM (15 months ago)
Author:
arstudios
Message:

Release 1.10.1.

Location:
constellation-client-portal
Files:
131 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • constellation-client-portal/trunk/README.txt

    r3179950 r3200929  
    55Requires at least: 6.0.0
    66Tested up to: 6.6
    7 Stable tag: 1.10.0
     7Stable tag: 1.10.1
    88Requires PHP: 7.4
    99License: GPLv3 or later
     
    210210
    211211== Changelog ==
     212= 1.10.1 (Pro) - 2024-12-2 =
     213* Update: All core updates.
     214
     215= 1.10.1 (Core) - 2024-12-2 =
     216* Update: Minor code formatting updates.
     217* Update: Fixed typo in company reassignment error message text.
     218
    212219= 1.10.0 (Pro) - 2024-11-1 =
    213220* Fix: Fixed nonce issue preventing new post notifications from being sent when posts are created via the Quick Create UI.
  • constellation-client-portal/trunk/admin/class-ars-constellation-client-portal-admin.php

    r3179950 r3200929  
    112112         */
    113113        wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/ars-constellation-client-portal-admin.css', array(), $this->version, 'all' );
     114
    114115        wp_enqueue_style( $this->plugin_name . '-jquery-ui', plugin_dir_url( __FILE__ ) . 'css/jquery-ui/1.11.1/themes/cupertino/jquery-ui.css', array(), $this->version, 'all' );
    115116
     
    14711472        if ( (int) $current_company_id === $selected_company ) {
    14721473
    1473             echo 'The old an new companies are the same.  The post was not reassigned.';
     1474            echo 'The old and new companies are the same.  The post was not reassigned.';
    14741475
    14751476            wp_die();
  • constellation-client-portal/trunk/ars-constellation-client-portal.php

    r3179950 r3200929  
    77 * Plugin URI:        https://adrianrodriguezstudios.com/constellation-client-portal/
    88 * Description:       Create private pages for each of your clients, post private files, and protect your client files from unauthorized users and search engines.  <strong>Important:</strong> All Site-level File Protection features will cease to function if the plugin is disabled or uninstalled.
    9  * Version:           1.10.0
     9 * Version:           1.10.1
    1010 * Author:            ARS
    1111 * Author URI:        https://adrianrodriguezstudios.com
     
    5757     */
    5858    define('ACCP_PLUGIN_NAME', 'ARS_CONSTELLATION_CLIENT_PORTAL');
    59     define('ACCP_PLUGIN_VERSION', '1.10.0'); // Change the version in the header as well.
     59    define('ACCP_PLUGIN_VERSION', '1.10.1'); // Change the version in the header as well.
    6060    define( ACCP_PLUGIN_NAME, ACCP_PLUGIN_VERSION );
    6161    define( 'ACCP_PLUGIN_FILE_NAME', __FILE__ );
Note: See TracChangeset for help on using the changeset viewer.