Plugin Directory

Changeset 3085306


Ignore:
Timestamp:
05/12/2024 05:06:38 PM (23 months ago)
Author:
slick2
Message:

Update to version 1.4.0 from GitHub

Location:
traffic-jammer
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • traffic-jammer/tags/1.4.0/readme.txt

    r3067918 r3085306  
    44Tags: pantheon, security, block ip, bots, login
    55Requires at least: 5.2
    6 Tested up to: 6.5
    7 Stable tag: 1.3.3
     6Tested up to: 6.5.3
     7Stable tag: 1.4.0
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    5454
    5555== Changelog ==
     56= 1.4.0
     57* added threshold 50 and 60 options
     58* tested working with 6.5.3
     59
    5660= 1.3.3 =
    5761* revised readme.txt
  • traffic-jammer/tags/1.4.0/traffic-jammer.php

    r3067918 r3085306  
    99 * Plugin URI:          https://wordpress.org/plugins/traffic-jammer/
    1010 * Description:         WordPress plugin to block IP and bots that causes malicious traffic.
    11  * Version:             1.3.3
     11 * Version:             1.4.0
    1212 * Requires at least:   5.2
    1313 * Requires PHP:        7.4
     
    647647    }
    648648    echo '<select name="wp_traffic_jammer_abuseipdb[abuseipdb_threshold]">';
    649     for ( $i = 70; $i <= 100; $i = $i + 10 ) {
     649    for ( $i = 50; $i <= 100; $i = $i + 10 ) {
    650650        echo '<option value="' . esc_html( $i ) . '"';
    651651        if ( $threshold === $i ) {
  • traffic-jammer/trunk/readme.txt

    r3067918 r3085306  
    44Tags: pantheon, security, block ip, bots, login
    55Requires at least: 5.2
    6 Tested up to: 6.5
    7 Stable tag: 1.3.3
     6Tested up to: 6.5.3
     7Stable tag: 1.4.0
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    5454
    5555== Changelog ==
     56= 1.4.0
     57* added threshold 50 and 60 options
     58* tested working with 6.5.3
     59
    5660= 1.3.3 =
    5761* revised readme.txt
  • traffic-jammer/trunk/traffic-jammer.php

    r3067918 r3085306  
    99 * Plugin URI:          https://wordpress.org/plugins/traffic-jammer/
    1010 * Description:         WordPress plugin to block IP and bots that causes malicious traffic.
    11  * Version:             1.3.3
     11 * Version:             1.4.0
    1212 * Requires at least:   5.2
    1313 * Requires PHP:        7.4
     
    647647    }
    648648    echo '<select name="wp_traffic_jammer_abuseipdb[abuseipdb_threshold]">';
    649     for ( $i = 70; $i <= 100; $i = $i + 10 ) {
     649    for ( $i = 50; $i <= 100; $i = $i + 10 ) {
    650650        echo '<option value="' . esc_html( $i ) . '"';
    651651        if ( $threshold === $i ) {
Note: See TracChangeset for help on using the changeset viewer.