Plugin Directory

Changeset 3125376


Ignore:
Timestamp:
07/25/2024 03:20:54 PM (21 months ago)
Author:
Zengy
Message:

Adding v 1.1.0

Location:
sitecare-score
Files:
55 added
2 edited

Legend:

Unmodified
Added
Removed
  • sitecare-score/trunk/readme.txt

    r3104702 r3125376  
    33* Tags: site health, security, technical debt, SSL, PHP
    44* Requires at least: 6.0
    5 * Tested up to: 6.5.3
    6 * Stable tag: 1.0.4
     5* Tested up to: 6.6.1
     6* Stable tag: 1.1.0
    77* License: GPLv2 or later
    88* License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4545## Changelog
    4646
     47= 1.1.0 =
     48* Admin menu bar widget to help stay aware of any unexpected changes to your SiteCare score
     49* Dashboard widget to display your SiteCare Score and top issues that need to be addressed
     50* Automated daily scans for daily site health checks - no need to initiate scans manually unless testing after a change to the website
     51* Improved Score History page to display a graph of significant changes to the SiteCare Score. This helps with easier discovery of issues that are negatively impacting scores
     52* Improved matching and identification of abandoned themes and plugins
     53* Improved design for emailed reports
     54* Updated scoring ranges to better differentiate between Fail, Fair, and Good
     55* Moved all styles and scripts to the plugin directory to better accommodate firewalls and Content Security Policies
     56
     57= 1.0.4 =
     58* Add conditional for disk_total_space and disk_free_space.
     59
     60= 1.0.3 =
     61* Add sanitization
     62* Add enqueue scripts
     63
     64= 1.0.2 =
     65* Add GPL license
     66* Sanitization updates
     67* Internationalization fixes
     68
     69= 1.0.1 =
     70* Plugin Checks Passed
     71
    4772= 1.0 =
    4873* Initial release of the SiteCare Score plugin
  • sitecare-score/trunk/sitecare-score.php

    r3104702 r3125376  
    11<?php
    22
    3 namespace Sitecare;
     3namespace SiteCare;
    44
    55/**
     
    99 * Author: SiteCare
    1010 * Author URI: https://sitecare.com
    11  * Version: 1.0.4
     11 * Version: 1.1.0
    1212 * Text Domain: sitecare-score
    1313 * License: GPL2
     
    1515 */
    1616
    17 define( 'SITECARE_REMOTE_URL', 'https://sitecarescore.zengy.com' );
    18 define( 'SITECARE_PLUGIN_URL', plugin_dir_url(__FILE__) );
    19 define( 'SITECARE_PLUGIN_DIR', dirname(__FILE__) );
    20 define( 'SITECARE_PLUGIN_FILE', __FILE__ );
     17$version = '1.1.0';
    2118
    22 include 'src/init.php';
    23 include 'src/data/ajax.php';
    24 include 'src/data/data.php';
    25 include 'src/data/wpcli.php';
    26 include 'src/dashboard/global/banner.php';
    27 include 'src/dashboard/global/header.php';
    28 include 'src/dashboard/global/footer.php';
    29 include 'src/dashboard/dashboard.php';
    30 include 'src/dashboard/start.php';
    31 include 'src/dashboard/scan.php';
    32 include 'src/dashboard/report.php';
    33 include 'src/dashboard/history.php';
     19if (!defined('ABSPATH')) {
     20    exit;
     21}
     22
     23if (!defined('SITECARE_REMOTE_URL')) {
     24    define('SITECARE_REMOTE_URL', 'https://sitecarescore.zengy.com');
     25}
     26
     27if (!defined('SITECARE_PLUGIN_URL')) {
     28    define('SITECARE_PLUGIN_URL', plugin_dir_url(__FILE__));
     29}
     30
     31if (!defined('SITECARE_PLUGIN_DIR')) {
     32    define('SITECARE_PLUGIN_DIR', dirname(__FILE__));
     33}
     34
     35if (!defined('SITECARE_PLUGIN_FILE')) {
     36    define('SITECARE_PLUGIN_FILE', __FILE__);
     37}
     38
     39if (!defined('SITECARE_PLUGIN_VERSION')) {
     40    define('SITECARE_PLUGIN_VERSION', $version);
     41}
     42
     43require_once plugin_dir_path(__FILE__) . 'includes/autoloader.php';
     44
     45new Score();
Note: See TracChangeset for help on using the changeset viewer.