Plugin Directory

Changeset 3155779


Ignore:
Timestamp:
09/21/2024 06:34:14 PM (18 months ago)
Author:
blobfolio
Message:

bump: 0.5.4

Location:
jeepers-peepers/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • jeepers-peepers/trunk/index.php

    r2063902 r3155779  
    44 *
    55 * @package jeepers-peepers
    6  * @version 0.5.3
     6 * @version 0.5.4
    77 *
    88 * @wordpress-plugin
     
    1212 * Author: Blobfolio, LLC
    1313 * Author URI: https://blobfolio.com/
    14  * Version: 0.5.3
     14 * Version: 0.5.4
    1515 * Text Domain: jeepers-peepers
    1616 * Domain Path: /languages/
     
    141141}
    142142
     143// Use UTC times for logging.
     144if (! defined('BLOBAUDIT_LOG_UTC')) {
     145    define(
     146        'BLOBAUDIT_LOG_UTC',
     147        true
     148    );
     149}
     150
    143151// The visitor IP.
    144152if (
  • jeepers-peepers/trunk/lib/blobfolio/wp/audit/events.php

    r2063902 r3155779  
    55 * This registers event hooks and watches for action.
    66 *
    7  * @package blob-audit
     7 * @package jeepers-peepers
    88 * @author  Blobfolio, LLC <hello@blobfolio.com>
    99 */
  • jeepers-peepers/trunk/lib/blobfolio/wp/audit/log.php

    r2063902 r3155779  
    55 * This records log messages.
    66 *
    7  * @package blob-audit
     7 * @package jeepers-peepers
    88 * @author  Blobfolio, LLC <hello@blobfolio.com>
    99 */
     
    3737     */
    3838    public static function save($severity=0, $message='', $internal=false) {
    39 
    4039        if (! \defined('BLOBAUDIT_LOG_PATH')) {
    4140            return false;
     
    9796                \sprintf(
    9897                    \__('WordPressAudit', 'jeepers-peepers') . " %s [%s] %s %s \"%s\" \"%s\"\n",
    99                     \date('Y-m-d H:i:s'),
     98                    \BLOBAUDIT_LOG_UTC ? \date('Y-m-d H:i:s') : \current_time('Y-m-d H:i:s'),
    10099                    $severity_name,
    101100                    \BLOBAUDIT_SITE_URL,
  • jeepers-peepers/trunk/readme.txt

    r3119486 r3155779  
    22Contributors: blobfolio
    33Donate link: https://blobfolio.com/donate.html
    4 Tags: system log, syslog, event log, audit trail, security, forensics, monitor
     4Tags: system log, syslog, event log, audit trail, security
    55Requires at least: 4.7
    66Tested up to: 6.6
     
    8585 * (*string*) **BLOBAUDIT_SITE_URL** Your site's domain, for logging purposes. By default, this will be your site's domain name, lowercased, and without a leading `www.` subdomain.
    8686 * (*string*) **BLOBAUDIT_LOG_PATH** The absolute path to the log file. Default: `/var/log/wordpress/{YOUR_SITE_DOMAIN}.log`
     87 * (*bool*) **BLOBAUDIT_LOG_UTC** Record datetimes in UTC rather than the site's timezone. Default: `true`
    8788
    8889When using a custom log location, please choose one that is outside the web root. You don't want just anybody looking at it. :)
     
    127128== Changelog ==
    128129
     130= 0.5.4 =
     131* [New] `BLOBAUDIT_LOG_UTC` constant for toggling between UTC/site-time for event dates.
     132
    129133= 0.5.3 =
    130134* [New] Log network requests.
     
    139143== Upgrade Notice ==
    140144
     145= 0.5.4 =
     146This release adds a new `BLOBAUDIT_LOG_UTC` configuration constant allowing sites to record events in the site's local timezone rather than UTC.
     147
    141148= 0.5.3 =
    142149This release adds network request logging and minor code optimizations.
Note: See TracChangeset for help on using the changeset viewer.