Plugin Directory

Changeset 3305015


Ignore:
Timestamp:
06/02/2025 12:39:43 PM (9 months ago)
Author:
arstudios
Message:

Constellation Client Portal release 2.1.0.

Location:
constellation-client-portal
Files:
132 added
1 deleted
5 edited

Legend:

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

    r3288605 r3305015  
    55Requires at least: 6.0.0
    66Tested up to: 6.8
    7 Stable tag: 2.0.0
     7Stable tag: 2.1.0
    88Requires PHP: 7.4
    99License: GPLv3 or later
     
    210210
    211211== Changelog ==
     212= 2.1.0 (Pro) - 2025-6-2 =
     213* Update: Added warning to data management settings that delete file or data when enabled.
     214* Update: Updated new post audience select element to pull from a new defined audiences function to allow for easily extending note audience options in the future.
     215* Update: Updated the saved note UI within posts to include visibility meta, along with an "Edit Note" link to allow note content to be easily edited.
     216* Update: Added new metabox section in the note post type to display data about the post that the note is assigned to, and other related data.
     217* Update: Added new columns to the post note WP list table to present more/better information when viewing the post list.
     218
     219= 2.1.0 (Core) - 2025-6-2 =
     220* Update: Made minor code formatting update to the i18n class.
     221
    212222= 2.0.0 (Pro) - 2025-5-6 =
    213223* Feature: Created new functionality that allows users to better control what data is deleted when file, invoice, and global file posts are deleted.
  • constellation-client-portal/trunk/admin/class-ars-constellation-client-portal-admin.php

    r3288605 r3305015  
    29062906            'accp_client_pages',
    29072907            'accp_clientcompany',
     2908            'accp_post_note',
    29082909        );
    29092910
  • constellation-client-portal/trunk/admin/css/ars-constellation-client-portal-admin.css

    r3216060 r3305015  
    962962}
    963963
     964.accp-sidebar-post-details{
     965    display: block;
     966    margin-top: 15px;
     967    margin-bottom: 15px;
     968    font-weight: 600;
     969}
     970
     971.accp-sidebar-post-details-label {
     972    font-weight: normal;
     973}
     974
     975.accp-deletion-warning-message {
     976    display: block;
     977    color: #b32d2e;
     978    margin-top: 7px;
     979}
     980
    964981@media screen and (min-width: 980px){
    965982
  • constellation-client-portal/trunk/ars-constellation-client-portal.php

    r3288605 r3305015  
    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:           2.0.0
     9 * Version:           2.1.0
    1010 * Author:            ARS
    1111 * Author URI:        https://adrianrodriguezstudios.com
     
    5757     */
    5858    define('ACCP_PLUGIN_NAME', 'ARS_CONSTELLATION_CLIENT_PORTAL');
    59     define('ACCP_PLUGIN_VERSION', '2.0.0'); // Change the version in the header as well.
     59    define('ACCP_PLUGIN_VERSION', '2.1.0'); // Change the version in the header as well.
    6060    define( ACCP_PLUGIN_NAME, ACCP_PLUGIN_VERSION );
    6161    define( 'ACCP_PLUGIN_FILE_NAME', __FILE__ );
  • constellation-client-portal/trunk/includes/class-ars-constellation-client-portal-i18n.php

    r3079876 r3305015  
    1919 * Define the internationalization functionality.
    2020 */
    21 class ARS_Constellation_Client_Portal_i18n {
     21class ARS_Constellation_Client_Portal_i18n { // phpcs:ignore -- Ignore PEAR.NamingConventions.ValidClassName
    2222
    2323    /**
Note: See TracChangeset for help on using the changeset viewer.