Plugin Directory

Changeset 3490568


Ignore:
Timestamp:
03/25/2026 06:39:35 AM (4 days ago)
Author:
Wpcalc
Message:

Update Counter Box to version 2.0.13

Location:
counter-box
Files:
149 added
5 edited

Legend:

Unmodified
Added
Removed
  • counter-box/trunk/classes/Admin/ListTable.php

    r3206935 r3490568  
    268268    public function get_bulk_actions(): array {
    269269        $actions = [
    270             'delete'     => __( 'Delate', 'counter-box' ),
     270            'delete'     => __( 'Delete', 'counter-box' ),
    271271            'activate'   => __( 'Activate', 'counter-box' ),
    272272            'deactivate' => __( 'Deactivate', 'counter-box' ),
  • counter-box/trunk/classes/Admin/Settings.php

    r3300437 r3490568  
    171171
    172172    public static function option( $name, $option ) {
    173         return $options[ $name ] ?? '';
     173        return $option[ $name ] ?? '';
    174174    }
    175175
  • counter-box/trunk/counter-box.php

    r3388103 r3490568  
    44 *  Plugin URI:        https://wordpress.org/plugins/counter-box/
    55 *  Description:       The most powerful creator of counters, timers and countdowns
    6  *  Version:           2.0.12
     6 *  Version:           2.0.13
    77 *  Author:            Wow-Company
    88 *  Author URI:        https://wow-estore.com/
  • counter-box/trunk/public/assets/js/counterBox.js

    r3088112 r3490568  
    386386        }
    387387
    388         console.log(currentDayTarget)
    389 
    390388        let diffInSeconds = Math.floor((date - currentDayTarget) / 1000);
    391389        let base = parseFloat(options.number);
  • counter-box/trunk/readme.txt

    r3408132 r3490568  
    66Tested up to: 6.9
    77Requires PHP: 7.4
    8 Stable tag: 2.0.12
     8Stable tag: 2.0.13
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3434  - Personal Timer (user-specific countdowns)
    3535  - Resumable Timer (persists across visits)
    36   - Base Counter (static up/down value)
     36  - Base Counter (dynamic increment/decrement)
    3737- **Live Preview Editor** – Customize in real-time
    3838- **Timezone Controls** – Show correct countdowns for all visitors
     
    132132
    133133== Changelog ==
     134= 2.0.13 =
     135* Fixed: issue with method Settings::option().
     136* Fixed: grammar issue in ListTable.php
     137
    134138= 2.0.12 =
    135139* Update: purify.js to version 3.3.0.
Note: See TracChangeset for help on using the changeset viewer.