Plugin Directory

Changeset 3216060


Ignore:
Timestamp:
01/02/2025 04:02:06 PM (14 months ago)
Author:
arstudios
Message:

Release 1.10.2.

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

Legend:

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

    r3200929 r3216060  
    44Tags: client portal, private files, private pages, private posts, customer portal, business portal, invoicing, business managemenet, client management
    55Requires at least: 6.0.0
    6 Tested up to: 6.6
    7 Stable tag: 1.10.1
     6Tested up to: 6.7
     7Stable tag: 1.10.2
    88Requires PHP: 7.4
    99License: GPLv3 or later
     
    210210
    211211== Changelog ==
     212= 1.10.2 (Pro) - 2025-1-2 =
     213* Update: Updated the automated email cron scheduling function to also fire on WP init to ensure that the cron job remains scheduled/active during site changes or extended periods of site inactivity.
     214
     215= 1.10.2 (Core) - 2025-1-2 =
     216* Update: Added new status section to the settings site info page.
     217* Update: Updated the admin h2 line height for better display on smaller screens.
     218* Update: Made the settings -> site info -> thumbnail name list responsive.
     219
    212220= 1.10.1 (Pro) - 2024-12-2 =
    213221* Update: All core updates.
  • constellation-client-portal/trunk/admin/class-ars-constellation-client-portal-settings.php

    r3101275 r3216060  
    898898        $dir_is_writable = $wp_filesystem->is_writable( $accp_file_path );
    899899        $thumbnails      = get_intermediate_image_sizes();
     900        $plugin_version  = defined( 'ACCP_PLUGIN_VERSION' ) ? ACCP_PLUGIN_VERSION : '';
     901        $plugin_name     = defined( 'ACCP_PLUGIN_NAME' ) && false !== strpos( strtolower( ACCP_PLUGIN_NAME ), 'pro' ) ? 'Constellation Client Portal Pro' : 'Constellation Client Portal Pro';
    900902
    901903        $html = '';
     904
     905        $html .= '<div class="accp-settings-section">';
     906
     907        $html .= '<h2>Status</h2>';
     908
     909        $html .= '<span>Plugin Version: ' . esc_html( $plugin_name ) . ' ' . esc_html( $plugin_version ) . '</span>';
     910
     911        $html .= '</div>';
    902912
    903913        $html .= '<div class="accp-settings-section">';
  • constellation-client-portal/trunk/admin/css/ars-constellation-client-portal-admin.css

    r3082049 r3216060  
    349349    font-weight: normal;
    350350    font-size: 22px;
     351    line-height: 30px;
    351352}
    352353
     
    978979
    979980}
     981
     982@media screen and (max-width: 646px){
     983
     984    ul.theme-thumb-list li{
     985        width: 100%;
     986    }
     987
     988    ul.theme-thumb-list li:nth-child(2n+1) {
     989        float: none;
     990    }
     991
     992    ul.theme-thumb-list li:nth-child(2n) {
     993        float: none;
     994    }
     995
     996}
  • constellation-client-portal/trunk/ars-constellation-client-portal.php

    r3200929 r3216060  
    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.1
     9 * Version:           1.10.2
    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.1'); // Change the version in the header as well.
     59    define('ACCP_PLUGIN_VERSION', '1.10.2'); // 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.