Version Description
Download this release
Release Info
| Developer | eskapism |
| Plugin | |
| Version | 3.3.1 |
| Comparing to | |
| See all releases | |
Code changes from version 3.3.0 to 3.3.1
- docker-compose.yml +0 -88
- dropins/SimpleHistoryFilterDropin.php +1 -1
- index.php +2 -2
- readme.txt +2 -2
docker-compose.yml
DELETED
|
@@ -1,88 +0,0 @@
|
|
| 1 |
-
version: "3.9"
|
| 2 |
-
|
| 3 |
-
services:
|
| 4 |
-
wordpress:
|
| 5 |
-
image: wordpress:${WORDPRESS_VERSION:-5.8}-php${PHP_VERSION:-7.4}
|
| 6 |
-
container_name: simple-history-wordpress
|
| 7 |
-
restart: "${DOCKER_RESTART_POLICY:-unless-stopped}"
|
| 8 |
-
user: "33:33"
|
| 9 |
-
ports:
|
| 10 |
-
- "${DOCKER_WEB_PORT_FORWARD:-9191}:80"
|
| 11 |
-
environment:
|
| 12 |
-
WORDPRESS_DB_HOST: db
|
| 13 |
-
WORDPRESS_DB_NAME: wp_test_site
|
| 14 |
-
WORDPRESS_DB_USER: dbuser
|
| 15 |
-
WORDPRESS_DB_PASSWORD: examplepass
|
| 16 |
-
WORDPRESS_CONFIG_EXTRA: |
|
| 17 |
-
define( 'WP_AUTO_UPDATE_CORE', false );
|
| 18 |
-
define( 'AUTOMATIC_UPDATER_DISABLED', true );
|
| 19 |
-
define( 'WP_ENVIRONMENT_TYPE', 'local' );
|
| 20 |
-
volumes:
|
| 21 |
-
- wordpress:/var/www/html
|
| 22 |
-
- ./:/var/www/html/wp-content/plugins/simple-history
|
| 23 |
-
- ./tests/mu-plugin.php:/var/www/html/wp-content/mu-plugins/mu-plugin.php
|
| 24 |
-
- "${WP_UPLOADS_DIR:-./data/wp-uploads}:/var/www/html/wp-content/uploads"
|
| 25 |
-
|
| 26 |
-
db:
|
| 27 |
-
image: "mariadb:${MARIADB_VERSION:-10.5}"
|
| 28 |
-
container_name: simple-history-database
|
| 29 |
-
restart: "${DOCKER_RESTART_POLICY:-unless-stopped}"
|
| 30 |
-
environment:
|
| 31 |
-
MYSQL_DATABASE: wp_test_site
|
| 32 |
-
MYSQL_USER: dbuser
|
| 33 |
-
MYSQL_PASSWORD: examplepass
|
| 34 |
-
MYSQL_ROOT_PASSWORD: rootpass
|
| 35 |
-
ports:
|
| 36 |
-
- "${DB_EXPOSE_PORT:-127.0.0.1:}:3306"
|
| 37 |
-
volumes:
|
| 38 |
-
- "${MARIADB_DATA_DIR:-./data/mysql}:/var/lib/mysql"
|
| 39 |
-
|
| 40 |
-
chrome:
|
| 41 |
-
image: seleniarm/standalone-chromium
|
| 42 |
-
# shm_size: "2gb"
|
| 43 |
-
container_name: simple-history-chrome
|
| 44 |
-
restart: "${DOCKER_RESTART_POLICY:-unless-stopped}"
|
| 45 |
-
# ports:
|
| 46 |
-
# - 14444:4444
|
| 47 |
-
extra_hosts:
|
| 48 |
-
- host.docker.internal:host-gateway
|
| 49 |
-
|
| 50 |
-
php-cli:
|
| 51 |
-
image: dockette/ci:php${PHP_CLI_VERSION-74}
|
| 52 |
-
container_name: simple-history-php-cli
|
| 53 |
-
environment:
|
| 54 |
-
WORDPRESS_DB_HOST: db
|
| 55 |
-
WORDPRESS_DB_NAME: wp_test_site
|
| 56 |
-
WORDPRESS_DB_USER: dbuser
|
| 57 |
-
WORDPRESS_DB_PASSWORD: examplepass
|
| 58 |
-
profiles:
|
| 59 |
-
- noautostart
|
| 60 |
-
working_dir: /srv
|
| 61 |
-
volumes:
|
| 62 |
-
- ./:/srv
|
| 63 |
-
- wordpress:/wordpress
|
| 64 |
-
- ./:/wordpress/wp-content/plugins/simple-history
|
| 65 |
-
|
| 66 |
-
wp-cli:
|
| 67 |
-
image: wordpress:cli-php${PHP_VERSION-7.4}
|
| 68 |
-
container_name: simple-history-wpcli
|
| 69 |
-
environment:
|
| 70 |
-
WORDPRESS_DB_HOST: db
|
| 71 |
-
WORDPRESS_DB_NAME: wp_test_site
|
| 72 |
-
WORDPRESS_DB_USER: dbuser
|
| 73 |
-
WORDPRESS_DB_PASSWORD: examplepass
|
| 74 |
-
user: "33:33"
|
| 75 |
-
depends_on:
|
| 76 |
-
- db
|
| 77 |
-
- wordpress
|
| 78 |
-
init: true
|
| 79 |
-
volumes:
|
| 80 |
-
- wordpress:/var/www/html:rw
|
| 81 |
-
# Make tests folder available so we can export/import db.
|
| 82 |
-
- ./tests/_data/:/var/www/html/tests/_data:rw
|
| 83 |
-
- ./:/var/www/html/wp-content/plugins/simple-history
|
| 84 |
-
profiles:
|
| 85 |
-
- noautostart
|
| 86 |
-
|
| 87 |
-
volumes:
|
| 88 |
-
wordpress: null
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dropins/SimpleHistoryFilterDropin.php
CHANGED
|
@@ -631,9 +631,9 @@ class SimpleHistoryFilterDropin {
|
|
| 631 |
),
|
| 632 |
);
|
| 633 |
|
| 634 |
-
/* translators: 1: month, 2: day, 3: year */
|
| 635 |
echo wp_kses(
|
| 636 |
sprintf(
|
|
|
|
| 637 |
__( '%1$s %2$s, %3$s', 'simple-history' ),
|
| 638 |
$month,
|
| 639 |
$day,
|
| 631 |
),
|
| 632 |
);
|
| 633 |
|
|
|
|
| 634 |
echo wp_kses(
|
| 635 |
sprintf(
|
| 636 |
+
/* translators: 1: month, 2: day, 3: year */
|
| 637 |
__( '%1$s %2$s, %3$s', 'simple-history' ),
|
| 638 |
$month,
|
| 639 |
$day,
|
index.php
CHANGED
|
@@ -6,7 +6,7 @@
|
|
| 6 |
* Text Domain: simple-history
|
| 7 |
* Domain Path: /languages
|
| 8 |
* Description: Plugin that logs various things that occur in WordPress and then presents those events in a very nice GUI.
|
| 9 |
-
* Version: 3.3.
|
| 10 |
* Author: Pär Thernström
|
| 11 |
* Author URI: http://simple-history.com/
|
| 12 |
* License: GPL2
|
|
@@ -45,7 +45,7 @@ if ( $ok_php_version && $ok_wp_version ) {
|
|
| 45 |
* @TODO: make activation multi site aware, as in https://github.com/scribu/wp-proper-network-activation
|
| 46 |
* register_activation_hook( trailingslashit(WP_PLUGIN_DIR) . trailingslashit( plugin_basename(__DIR__) ) . "index.php" , array("SimpleHistory", "on_plugin_activate" ) );
|
| 47 |
*/
|
| 48 |
-
define( 'SIMPLE_HISTORY_VERSION', '3.3.
|
| 49 |
define( 'SIMPLE_HISTORY_PATH', plugin_dir_path( __FILE__ ) );
|
| 50 |
define( 'SIMPLE_HISTORY_BASENAME', plugin_basename( __FILE__ ) );
|
| 51 |
define( 'SIMPLE_HISTORY_DIR_URL', plugin_dir_url( __FILE__ ) );
|
| 6 |
* Text Domain: simple-history
|
| 7 |
* Domain Path: /languages
|
| 8 |
* Description: Plugin that logs various things that occur in WordPress and then presents those events in a very nice GUI.
|
| 9 |
+
* Version: 3.3.1
|
| 10 |
* Author: Pär Thernström
|
| 11 |
* Author URI: http://simple-history.com/
|
| 12 |
* License: GPL2
|
| 45 |
* @TODO: make activation multi site aware, as in https://github.com/scribu/wp-proper-network-activation
|
| 46 |
* register_activation_hook( trailingslashit(WP_PLUGIN_DIR) . trailingslashit( plugin_basename(__DIR__) ) . "index.php" , array("SimpleHistory", "on_plugin_activate" ) );
|
| 47 |
*/
|
| 48 |
+
define( 'SIMPLE_HISTORY_VERSION', '3.3.1' );
|
| 49 |
define( 'SIMPLE_HISTORY_PATH', plugin_dir_path( __FILE__ ) );
|
| 50 |
define( 'SIMPLE_HISTORY_BASENAME', plugin_basename( __FILE__ ) );
|
| 51 |
define( 'SIMPLE_HISTORY_DIR_URL', plugin_dir_url( __FILE__ ) );
|
readme.txt
CHANGED
|
@@ -3,9 +3,9 @@ Contributors: eskapism
|
|
| 3 |
Donate link: https://www.paypal.me/eskapism
|
| 4 |
Tags: history, log, changes, changelog, audit, audit log, event log, user tracking, trail, pages, attachments, users, dashboard, admin, syslog, feed, activity, stream, audit trail, brute-force
|
| 5 |
Requires at least: 5.2
|
| 6 |
-
Tested up to:
|
| 7 |
Requires PHP: 5.6
|
| 8 |
-
Stable tag: 3.3.
|
| 9 |
|
| 10 |
View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
|
| 11 |
|
| 3 |
Donate link: https://www.paypal.me/eskapism
|
| 4 |
Tags: history, log, changes, changelog, audit, audit log, event log, user tracking, trail, pages, attachments, users, dashboard, admin, syslog, feed, activity, stream, audit trail, brute-force
|
| 5 |
Requires at least: 5.2
|
| 6 |
+
Tested up to: 6.1
|
| 7 |
Requires PHP: 5.6
|
| 8 |
+
Stable tag: 3.3.1
|
| 9 |
|
| 10 |
View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
|
| 11 |
|
