Plugin Directory

Changeset 2812727


Ignore:
Timestamp:
11/05/2022 07:06:02 PM (3 years ago)
Author:
lruizcode
Message:

Update to version 1.0.2 from GitHub

Location:
bubuku-post-view-count
Files:
17 edited
1 copied

Legend:

Unmodified
Added
Removed
  • bubuku-post-view-count/assets/banner-1544x500.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • bubuku-post-view-count/assets/banner-772x250.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • bubuku-post-view-count/assets/icon-158x158.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • bubuku-post-view-count/assets/icon-256x256.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • bubuku-post-view-count/assets/icon.svg

    • Property svn:mime-type set to image/svg+xml
  • bubuku-post-view-count/tags/1.0.2/bubuku-post-view-count.php

    r2733719 r2812727  
    55 * Requires at least: 5.2
    66 * Requires PHP:      7.2
    7  * Version:     1.0.1
     7 * Version:     1.0.2
    88 * Author:      Bubuku
    99 * Author URI:  https://www.bubuku.com/
    10  * Text Domain: bbkpostview
     10 * Text Domain: bubuku-post-view-count
    1111 * Domain Path: /languages
    1212 * License:     EUPL v1.2
  • bubuku-post-view-count/tags/1.0.2/readme.txt

    r2733719 r2812727  
    33Tags: page view count, post views, post count, posts, post view count
    44Requires at least: 5.2
    5 Tested up to: 6.0
     5Tested up to: 6.1
    66Requires PHP: 7.2
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    2525== Changelog ==
    2626
     27= 1.0.2 =
     28* Updated for WordPress 6.1
     29* Fix: Internationalization Issues
     30
    2731= 1.0.1 =
    2832* Fix: It counted in categories.
  • bubuku-post-view-count/tags/1.0.2/src/PCV_assets.php

    r2733719 r2812727  
    66 * @author     Luis Ruiz <lruiz@bubuku.com>
    77 * @copyright  2022 Bubuku
    8  * @version    1.0.1
     8 * @version    1.0.2
    99 */
    1010
  • bubuku-post-view-count/tags/1.0.2/src/PCV_db.php

    r2733719 r2812727  
    66 * @author     Luis Ruiz <lruiz@bubuku.com>
    77 * @copyright  2022 Bubuku
    8  * @version    1.0.1
     8 * @version    1.0.2
    99 */
    1010
  • bubuku-post-view-count/tags/1.0.2/src/PCV_plugin.php

    r2733719 r2812727  
    66 * @author     Luis Ruiz <lruiz@bubuku.com>
    77 * @copyright  2022 Bubuku
    8  * @version    1.0.1
     8 * @version    1.0.2
    99 */
    1010
     
    3232        define( 'BBK_PLUGIN_ASSETS_URL', BBK_PLUGIN_URL . '/assets' );
    3333        define( 'BBK_PLUGIN_ENDPOINTS_URL', 'bbk_postview/v1' );
    34         define( 'BBK_PLUGIN_VERSION', '1.0.1' );
     34        define( 'BBK_PLUGIN_VERSION', '1.0.2' );
    3535        define( 'BBK_PLUGIN_NONCE', wp_create_nonce('post-view'. BBK_PLUGIN_VERSION) );
    3636
    37         load_plugin_textdomain( 'bbkpostview', false, BBK_PLUGIN_BASE . '/languages' );
     37        load_plugin_textdomain( 'bubuku-post-view-count', false, BBK_PLUGIN_BASE . '/languages/' );
    3838
    3939        new PCV_assets();
  • bubuku-post-view-count/tags/1.0.2/src/PCV_restapi.php

    r2733719 r2812727  
    66 * @author     Luis Ruiz <lruiz@bubuku.com>
    77 * @copyright  2022 Bubuku
    8  * @version    1.0.1
     8 * @version    1.0.2
    99 */
    1010
     
    5656
    5757            if ( BBK_PLUGIN_NONCE !== $nonce && empty($post_id)) {
    58                 wp_send_json_error( __('empty Post ID', 'bbkpostview') );
     58                wp_send_json_error( __('empty Post ID', 'bubuku-post-view-count') );
    5959                die();
    6060            }
  • bubuku-post-view-count/trunk/bubuku-post-view-count.php

    r2733719 r2812727  
    55 * Requires at least: 5.2
    66 * Requires PHP:      7.2
    7  * Version:     1.0.1
     7 * Version:     1.0.2
    88 * Author:      Bubuku
    99 * Author URI:  https://www.bubuku.com/
    10  * Text Domain: bbkpostview
     10 * Text Domain: bubuku-post-view-count
    1111 * Domain Path: /languages
    1212 * License:     EUPL v1.2
  • bubuku-post-view-count/trunk/readme.txt

    r2733719 r2812727  
    33Tags: page view count, post views, post count, posts, post view count
    44Requires at least: 5.2
    5 Tested up to: 6.0
     5Tested up to: 6.1
    66Requires PHP: 7.2
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    2525== Changelog ==
    2626
     27= 1.0.2 =
     28* Updated for WordPress 6.1
     29* Fix: Internationalization Issues
     30
    2731= 1.0.1 =
    2832* Fix: It counted in categories.
  • bubuku-post-view-count/trunk/src/PCV_assets.php

    r2733719 r2812727  
    66 * @author     Luis Ruiz <lruiz@bubuku.com>
    77 * @copyright  2022 Bubuku
    8  * @version    1.0.1
     8 * @version    1.0.2
    99 */
    1010
  • bubuku-post-view-count/trunk/src/PCV_db.php

    r2733719 r2812727  
    66 * @author     Luis Ruiz <lruiz@bubuku.com>
    77 * @copyright  2022 Bubuku
    8  * @version    1.0.1
     8 * @version    1.0.2
    99 */
    1010
  • bubuku-post-view-count/trunk/src/PCV_plugin.php

    r2733719 r2812727  
    66 * @author     Luis Ruiz <lruiz@bubuku.com>
    77 * @copyright  2022 Bubuku
    8  * @version    1.0.1
     8 * @version    1.0.2
    99 */
    1010
     
    3232        define( 'BBK_PLUGIN_ASSETS_URL', BBK_PLUGIN_URL . '/assets' );
    3333        define( 'BBK_PLUGIN_ENDPOINTS_URL', 'bbk_postview/v1' );
    34         define( 'BBK_PLUGIN_VERSION', '1.0.1' );
     34        define( 'BBK_PLUGIN_VERSION', '1.0.2' );
    3535        define( 'BBK_PLUGIN_NONCE', wp_create_nonce('post-view'. BBK_PLUGIN_VERSION) );
    3636
    37         load_plugin_textdomain( 'bbkpostview', false, BBK_PLUGIN_BASE . '/languages' );
     37        load_plugin_textdomain( 'bubuku-post-view-count', false, BBK_PLUGIN_BASE . '/languages/' );
    3838
    3939        new PCV_assets();
  • bubuku-post-view-count/trunk/src/PCV_restapi.php

    r2733719 r2812727  
    66 * @author     Luis Ruiz <lruiz@bubuku.com>
    77 * @copyright  2022 Bubuku
    8  * @version    1.0.1
     8 * @version    1.0.2
    99 */
    1010
     
    5656
    5757            if ( BBK_PLUGIN_NONCE !== $nonce && empty($post_id)) {
    58                 wp_send_json_error( __('empty Post ID', 'bbkpostview') );
     58                wp_send_json_error( __('empty Post ID', 'bubuku-post-view-count') );
    5959                die();
    6060            }
Note: See TracChangeset for help on using the changeset viewer.